/* ====================================================================
   HEADER STYLES
   ==================================================================== */
html {
    scroll-padding-top: 100px;
}
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header .logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #059669; /* primary-green */
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

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

.nav-links a {
    color: #1f2937; /* gray-800 */
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:not(.btn-primary):not(.btn):hover {
    color: #059669;
}

.header-actions {
    display: flex;
    align-items: center;
}

.btn-book-header {
    background-color: #059669;
    color: white !important;
    padding: 10px 24px;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(5,150,105,0.3);
}

.btn-book-header:hover {
    background-color: #064e3b; /* dark-green */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(5,150,105,0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1f2937;
    cursor: pointer;
}

/* ====================================================================
   FOOTER STYLES
   ==================================================================== */
.main-footer {
    background-color: #111827; /* gray-900 */
    color: #f3f4f6; /* gray-100 */
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-col a {
    color: #9ca3af;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #059669;
}

.footer-col i {
    color: #059669;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #9ca3af;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links, .header-actions {
        display: none; /* simple hide for mobile to avoid complex JS menu */
    }
    .mobile-menu-btn {
        display: block;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Dropdown styles */
.nav-links {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown {
    position: relative;
    display: inline-block;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 100;
    border-radius: 8px;
    top: 100%;
    left: 0;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.dropdown-content a {
    color: #1f2937 !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #ecfdf5; /* var(--secondary-green) */
    color: #059669 !important; /* var(--primary-green) */
    padding-left: 22px;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; box-sizing: border-box; }


body, html { margin: 0; padding: 0; }



/* Global Font Family */
body, html {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
