@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
}


#navbar{
  width: 100%;
  position: fixed;
    background-color: black;
    height: 40px;
    z-index: 9999; /* Ensure navbar stays on top */
}

#topnav{
    display: flex;
}

.phone-number{
    padding: 0 50px;
    width: 14%;
    height: 40px;
    background-color: #ab8646;
    display: flex;
    align-items: center;
    justify-content: center;
}
#navbar .phone-number a{
    text-decoration: none;
    font-size: 13px;
    font-family: 'poppins';
    color: white;
}

#navbar .phone-number a:hover{
    text-decoration: underline;
}

.gmail{
    padding: 0 50px;
    width: 29%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#navbar .gmail a{
    text-decoration: none;
    font-size: 13px;
    font-family: 'poppins';
    color: white;
}

#navbar .gmail a:hover{
    text-decoration: underline;
}

.line{
    height: 37px;
    border: 1px solid gray;
}

.icons {
    padding-left: 40px;
    padding-right: 40px;
    height: 40px;
    display: flex;
    justify-content: center; 
    align-items: center;
}

.icons a{
    color: white;
    text-decoration: none;
}
.icons ul{
    display: flex;
    list-style-type: none;
    gap: 30px;
    align-items: center;
    justify-content: center;
}


.icons a:hover{
    color: #ab8646;
}

#google_translate_element_wrapper {
    padding-left: 40px;
    display: flex;
    justify-content: center;
    align-items: center; 
    height: 40px;
  }
  
  #google_translate_element {
    margin: 20px;
    font-size: 14px;
  }
  
.goog-te-banner-frame {
  display: none !important;
}
  
  .goog-te-gadget-simple {
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
    font-family: Arial, sans-serif;
    cursor: pointer;
  }
  
  .goog-te-gadget-simple:hover {
    background-color: #eaeaea;
  }

/* Middle Navbar */
.middle-navbar {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 999;
}

.middle-navbar-container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

/* Logo and H1 Size for Desktop */
.logo img {
  height: 50px; /* Default size for desktop */
}

.logo {
  display: flex;
  align-items: center;
}

.logo h1 {
  font-size: 24px; /* Default size for desktop */
  color: rgba(0, 0, 0, 0.868);
  text-decoration: none;
  padding-top: 4px;
  padding-left: 15px;
  font-family: 'poppins';
  font-weight: 700;
}

.logo a {
  text-decoration: none;
}

.logo a h1:hover {
  color: #ab8646;
}

/* Navigation Links */
.middle-nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.middle-nav-links li a {
  font-family: 'lexend';
  text-decoration: none;
  color: black;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s;
}

.middle-nav-links li a:hover {
  color: #ab8646;
}

/* Appointment Button */
.appointment-btn a {
  font-family: "lexend";
  text-decoration: none;
  color: white;
  background-color: #ab8646;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}

.appointment-btn a:hover{
  background-color: #333;
}

nav ul li a::after {
  content: '';
  display: block;
  height: 2px;
  border-radius: 10px;
  width: 0;
  position: absolute;
  bottom: -5px;
  background-color: #ab8646;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease, width 0.3s ease;
}

nav ul li a:hover::after {
  transform: translateX(-50%) scaleX(1);
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -30px;
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 10px 0 10px 15px;
  min-width: 150px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 5px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu li a {
  font-family: 'lexend';
  padding: 8px 20px;
  font-size: 16px;
  color: #333;
  display: block;
  transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
  color: #ab8646;
  background-color: #f8f8f8;
}

/* Adjust the main navigation link positioning */
.middle-nav-links li a {
  display: inline-block;
  padding: 5px 0;
  position: relative;
}

/* Mobile Navigation Styles */
.hamburger-menu {
  display: none; /* Hide by default */
  cursor: pointer;
  position: fixed;
  top: 6px;
  right: 20px;
  z-index: 1001; /* Ensure it's above other elements */
  background: #ab8646;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hamburger-menu .bar {
  width: 25px;
  height: 2px;
  background-color: white;
  margin: 5px 0;
  transition: 0.3s;
}

/* Animate hamburger icon */
.hamburger-menu.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transition: 0.3s;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-content {
  padding: 20px;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin-top: 60px;
}

.mobile-nav-links li {
  margin-bottom: 15px;
}

.mobile-nav-links a {
  font-family: 'lexend';
  color: #333;
  text-decoration: none;
  font-size: 16px;
  display: block;
  padding: 10px;
  border-radius: 4px;
  transition: 0.3s;
}

.mobile-nav-links a:hover {
  background-color: #f5f5f5;
  color: #ab8646;
}

.mobile-dropdown-menu {
  display: none;
  list-style: none;
  padding-left: 20px;
  margin-top: 5px;
}

.mobile-dropdown-menu li {
  margin-bottom: 8px;
}

.mobile-dropdown-menu a {
  font-size: 14px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  display: block;
}

.mobile-dropdown .fa-chevron-down {
  float: right;
  transition: 0.3s;
}

.mobile-dropdown.active .fa-chevron-down {
  transform: rotate(180deg);
}

.mobile-appointment-btn {
  margin-top: 20px;
  text-align: center;
}

.mobile-appointment-btn a {
  display: block;
  background-color: #ab8646;
  color: white;
  padding: 12px;
  border-radius: 5px;
  text-decoration: none;
  font-family: 'lexend';
}

/* Overlay for mobile menu */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: none;
}

/* Media Queries */
@media (max-width: 768px) {
  .middle-nav-links,
  .appointment-btn {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }

  .logo img {
    height: 40px;
  }

  .logo h1 {
    font-size: 20px;
    padding-left: 10px;
  }

  /* Animate hamburger icon */
  .hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}


/* Media Query for Mobile View */
@media (max-width: 768px){#topnav {
  display: none;
}}

:root {
    --primary: #ab8646; /* Gold accent */
    --dark: #1a1a1a; /* Dark background */
    --medium: #2c2315; /* Secondary dark */
    --light: white; /* Light text */
    --text: #333; /* Dark text */
  }


  .appointment-hero {
    background: linear-gradient(
        105deg,
        rgba(171, 134, 70, 0.45) 30%,
        rgba(51, 51, 51, 0.9)
      ),
      url("/IMG/pexels-ekaterina-bolovtsova-6077326.jpg") center/cover fixed;
    color: white;
    padding: 120px 20px;
    text-align: center;
    animation: fadeIn 1s ease-out;
  }

  .appointment-hero h1 {
    font-family: "Merriweather", serif;
    font-size: 3.2rem;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    color: var(--light);
  }

  .appointment-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    color: var(--light);
  }

  .appointment-container {
    max-width: 1200px;
    margin: -80px auto 50px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .appointment-info {
    background: var(--light);
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
  }

  .appointment-info:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
  }

  .info-item {
    margin-bottom: 35px;
    padding-left: 50px;
    position: relative;
    transition: transform 0.3s ease;
  }

  .info-item:hover {
    transform: translateX(10px);
  }

  .info-item i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary);
    font-size: 1.8rem;
    background: rgba(171, 134, 70, 0.1);
    padding: 10px;
    border-radius: 8px;
  }

  .info-item h3 {
    font-family: "lexend", serif;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 1.3rem;
    padding-left: 20px;
  }

  .info-item p {
    color: var(--text);
    line-height: 1.8;
    padding-left: 20px;
  }

  .info-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
  }

  .info-item a:hover {
    color: var(--primary);
  }

  .appointment-form {
    background: var(--light);
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  }

  .form-group {
    margin-bottom: 25px;
    font-family: 'lexend';
  }

  .form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-weight: 500;
  }

  .appointment-form input,
  .appointment-form textarea,
  .appointment-form select,
  .appointment-form input[type="date"],
  .appointment-form input[type="time"] {
    width: 100%;
    padding: 14px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 16px;
  }

  .appointment-form input:focus,
  .appointment-form textarea:focus,
  .appointment-form select:focus,
  .appointment-form input[type="date"]:focus,
  .appointment-form input[type="time"]:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 3px 15px rgba(171, 134, 70, 0.15);
  }

  .form-btn {
    background: var(--primary);
    color: var(--light);
    padding: 16px 45px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .form-btn:hover {
    background: var(--dark);
    transform: translateY(-2px);
  }

  .confidential-note {
    font-size: 0.9rem;
    color: var(--text);
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .confidential-note i {
    color: var(--primary);
    font-size: 1.2rem;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 992px) {
    .appointment-container {
      grid-template-columns: 1fr;
      margin-top: -40px;
    }

    .appointment-hero {
      padding: 100px 20px;
    }

    .appointment-hero h1 {
      font-size: 2.4rem;
    }
  }

  @media (max-width: 576px) {
    .appointment-info,
    .appointment-form {
      padding: 30px 25px;
    }

    .info-item {
      padding-left: 40px;
    }
  }

  /* Footer Styles */
#main-footer {
    background: linear-gradient(135deg, #1a1a1a, #2c2315);
    color: #fff;
    padding: 50px 20px;
    font-family: 'Lexend', sans-serif;
  }
  
  #main-footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .footer-section {
    padding: 10px;
  }
  
  .footer-section h3,
  .footer-section h4 {
    font-size: 1.6rem;
    color: #ab8646;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .footer-section p {
    font-size: 1rem;
    color: #bbb;
    line-height: 1.6;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    font-size: 0.95rem;
    color: #ccc;
    margin: 10px 0;
  }
  
  .footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s, transform 0.2s;
  }
  
  .footer-section ul li a:hover {
    color: #ab8646;
    transform: translateX(5px);
  }
  
  /* Social Icons */
  .social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #ccc;
    font-size: 1.2rem;
    transition: color 0.3s;
    padding-top: 25px;
  }
  
  .social-icons a:hover {
    color: #ab8646;
  }
  
  /* Opening Hours */
  .footer-section .hours li {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    color: #bbb;
    margin-bottom: 8px;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #bbb;
    border-top: 1px solid #333;
    margin-top: 30px;
  }
  
  .footer-bottom a {
    color: #ab8646;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-bottom a:hover {
    color: #fff;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    #main-footer {
      padding: 30px 15px;
    }
  
    .footer-section h3,
    .footer-section h4 {
      font-size: 1.4rem;
    }
  
    .footer-section ul li {
      font-size: 0.9rem;
    }
  
    .social-icons {
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    .footer-section p {
      font-size: 0.9rem;
    }
  
    .social-icons a {
      width: 35px;
      height: 35px;
      font-size: 1rem;
    }
  
    .footer-bottom {
      font-size: 0.85rem;
    }
  }
  