/* ===========================
   Navbar Global Styles
=========================== */
.navbar {
  font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #fdfbf6;
    /* max-width: 1800px; */
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    background-color: #eacb74;
    color: white;
    font-weight: bold;
    font-size: 20px;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-icon img {
    width: 60px;   /* adjust size */
    height: auto;
    border-radius: 50%; /* make circular if needed */
    margin-right: 10px;
}
.logo-text h1 {
    font-size: 20px;
    margin: 0;
    color: #8b6c4a;
    font-family: 'Playfair Display', serif;
}

.logo-text span {
    font-size: 12px;
    color: #b29b85;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #8b6c4a;
    font-weight: 500;
    position: relative;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

.nav-links a.active {
    color: #eacb74;
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: #eacb74;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #8b6c4a;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

.contact-info i {
    margin-right: 5px;
}

.book-btn {
    background-color: #eacb74;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
}

.book-btn:hover {
    background-color: #d4b85f;
}

.social-icons a:hover {
  text-decoration: none;
}
/* Desktop par toggle button hide rakho */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #8b6c4a;
}

.mobile-contact-info {
    display: none;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        position: relative;
        flex-direction: row !important; /* Logo ane Button baju baju ma rahe */
        justify-content: space-between;
    }

    .menu-toggle {
        display: block; /* Mobile ma button dekhase */
    }

    .nav-links {
        display: none; /* Pehla menu hide rahese */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fdfbf6;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        text-align: center;
    }

    .nav-links.active {
        display: flex; /* Toggle click karta menu dekhase */
    }

    .desktop-only {
        display: none; /* Mobile ma extra info hide karo */
    }

    .mobile-contact-info {
        display: block;
        margin-top: 15px;
    }
    
    .nav-links a {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        width: 100%;
    }
}

/* ===========================
   Responsive Design
=========================== */

/* Tablets */
@media (max-width: 992px) {
  .navbar {
    padding: 12px 25px;
    flex-wrap: wrap;
  }
  .nav-links {
    gap: 15px;
  }
  .contact-info {
    gap: 12px;
    font-size: 13px;
  }
  .logo-icon {
    width: 30px;
    height: 30px;
    font-size: 18px;
    margin-left: 10px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }
  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
  }
  .contact-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .navbar {
    padding: 12px;
  }
  .logo-text h1 {
    font-size: 18px;
  }
  .logo-text span {
    font-size: 11px;
  }
  .nav-links a {
    font-size: 14px;
  }
}