/* about.css - Custom styles for About Us page */

/* --- MODERN ABOUT PAGE STYLES (from user) --- */
:root {
  --primary-color: #d4af37;
  --primary-light: #f4e4a6;
  --primary-dark: #b8941f;
  --secondary-color: #2c2c2c;
  --secondary-light: #4a4a4a;
  --accent-color: #f8f5f0;
  --accent-dark: #e8e0d5;
  --text-primary: #2c2c2c;
  --text-secondary: #666666;
  --text-light: #999999;
  --text-white: #ffffff;
  --white: #ffffff;
  --black: #000000;
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --info: #17a2b8;
  --gradient-primary: linear-gradient(135deg, #d4af37 0%, #f4e4a6 100%);
  --gradient-secondary: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
  --gradient-accent: linear-gradient(135deg, #f8f5f0 0%, #e8e0d5 100%);
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-secondary: 'Playfair Display', Georgia, serif;
  --font-script: 'Dancing Script', cursive;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
  --tracking-tight: -0.025em;
  --tracking-normal: 0;
  --tracking-wide: 0.025em;
  --tracking-wider: 0.05em;
  --tracking-widest: 0.1em;
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* --- HEADER & FOOTER STYLES FROM index.css --- */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700&family=Satisfy:wght@400&family=Phudu:wght@300;400;500&display=swap');

:root {
  --primary-color: #dfba9f;
  --secondary-color: #2c2c2c;
  --accent-color: #f5f5f5;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #faf8f5;
  --font-main: 'Work Sans', sans-serif;
  --font-script: 'Satisfy', cursive;
  --font-display: 'Phudu', cursive;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--bg-light);
}

.navbar {
  background-color: var(--secondary-color) !important;
  padding: 1rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
  transition: all 0.3s ease;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.btn-booking {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: #fff;
  padding: 8px 20px;
  font-weight: 500;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-booking:hover {
  background-color: transparent;
  color: var(--primary-color);
}

/* Mobile layout (below 768px) */
@media screen and (max-width: 768px) {
  .navbar-collapse {
    flex-direction: column;
    align-items: stretch; /* Ensures items stretch to full width */
    padding: 0;
    width: 100%;
  }
  .navbar-nav {
    width: 100%;
  }
  .nav-item {
    width: 100%;
    text-align: left;
    margin-bottom: 5px; /* Space between menu items */
  }
  .nav-link {
    padding: 10px;
    display: block; /* Ensure full width */
    color: #fff; /* Match the image's text color */
    border-bottom: 1px solid #d4a373; /* Match the underline style from the image */
  }
  .nav-link.active {
    border-bottom-color: #d4a373; /* Highlight active item */
  }
  .btn-booking {
    margin-top: 10px;
    width: 22%;
    text-align: left;
    display: block;
    padding: 10px;
    box-sizing: border-box; /* Include padding in width calculation */
  }
}

/* Smaller Mobile (below 480px) */
@media screen and (max-width: 480px) {
  .btn-booking {
    padding: 6px 15px;
    font-size: 14px;
  }
  .nav-link {
    font-size: 14px;
  }
}

/* Footer Styles */
.footer-wrapper {
  background-color: var(--secondary-color);
  color: #fff;
  position: relative;
}

.subscribe-wrapper {
  background: rgba(0, 0, 0, 0.5);
  padding: 50px 0;
  text-align: center;
}

.subscribe-form h4 {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.social-icon-items {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-icon-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon-item:hover {
  background: #fff;
  color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-content {
  padding: 80px 0 40px;
}

.footer-widget-area {
  margin-bottom: 40px;
}

.footer-widget-area .logo img {
  max-height: 80px;
  margin-bottom: 20px;
}

.widget-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 30px;
}

.widget-title h4 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  margin-bottom: 15px;
}

.contact-info a {
  color: #ccc;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--primary-color);
}

.contact-info i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 2px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.foh-wrap {
  display: table;
  width: 100%;
}

.foh-row {
  display: table-row;
}

.foh-date,
.foh-time {
  display: table-cell;
  padding: 8px 0;
  color: #ccc;
}

.foh-date {
  font-weight: 600;
  width: 40%;
}

.footer-copyright {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright a {
  color: var(--primary-color);
  text-decoration: none;
}

/* ================== FLOATING BUTTONS ================== */
/* Floating Action Buttons */
.freeze-footer {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.freeze-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn_call_now,
.btn_make_appointment {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  background: gray;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn_call_now {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.btn_make_appointment {
  background: linear-gradient(135deg, #d9a679, #c9a480);
}

/* Icon styling with animation */
.btn_call_now img,
.btn_make_appointment img {
  width: 28px;
  height: 28px;
  animation: bounce 2s infinite ease-in-out;
}

/* Hover effect */
.btn_call_now:hover,
.btn_make_appointment:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn_call_now:hover img,
.btn_make_appointment:hover img {
  animation: pulse 0.6s ease;
}

/* Responsive */
@media (max-width: 480px) {
  .freeze-footer {
    bottom: 20px;
    right: 20px;
  }

  .btn_call_now,
  .btn_make_appointment {
    width: 70px;
    height: 70px;
  }

  .btn_call_now img,
  .btn_make_appointment img {
    width: 25px;
    height: 25px;
  }
}

/* Bounce animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Pulse animation for hover */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}


/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary-color);
  color: #fff;
  transform: translateY(-3px);
}

/* --- END HEADER & FOOTER STYLES --- */

/* Additional Styles */
@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 100px !important;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 100px !important;
  }
  .hero-image img,
  .story-image .image-container img {
    height: 300px !important;
    aspect-ratio: 1/1 !important;
    object-fit: cover !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    display: block;
  }
}

.cta-section1.cta-tight {
  padding-top: 0.5rem;
  padding-bottom: 0;
  margin-top: -0.5rem;
}

.story-features .cta-section1.cta-tight {
  margin-bottom: 0;
}

.hero-image {
  position: relative;
  animation: fadeInRight 1s ease-out 0.3s both;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  transition: transform 0.5s cubic-bezier(.4,2,.6,1), box-shadow 0.5s;
}

.hero-image:hover img {
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 12px 40px rgba(124,58,237,0.18);
}