/* =========================
   BASE STYLES - CORE FOUNDATION
========================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --matte-black: #0D0D0D;
    --gold-accent: #ddba5e;
    --gold-light: #f9e18b;
    --gold-dark: #b28135;
    --white: #FFFFFF;
    --dark-gray: #1A1A1A;
    --soft-gray: #A0A0A0;
    --charcoal: #2A2A2A;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-gold: 0 4px 30px rgba(221, 186, 94, 0.15);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: scroll;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--matte-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

/* =========================
   NOTIFICATION BELL STYLES
========================= */

.notification-bell {
    position: relative;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}


.notification-bell i {
    font-size: 1.2rem;
    color: var(--white);
}

.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #dc3545;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 1;
}

.notification-badge:empty {
    display: none;
}

/* Notification Dropdown */
.notification-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.95), rgba(26, 26, 26, 0.95));
    backdrop-filter: blur(20px);
    border: 2px solid var(--gold-accent);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15), 0 10px 30px rgba(0, 0, 0, 0.4);
    width: 350px;
    height: 400px;
    overflow: hidden;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.notification-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(178, 129, 53, 0.1));
    backdrop-filter: blur(10px);
}

.notification-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--gold-accent);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.clear-all-btn {
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-dark));
    color: var(--matte-black);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.clear-all-btn:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-accent));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.notification-list {
    height: calc(400px - 80px); /* Total height minus header height */
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-accent) rgba(26, 26, 26, 0.5);
    padding: 0.5rem 0;
}

/* Custom scrollbar for webkit browsers */
.notification-list::-webkit-scrollbar {
    width: 8px;
}

.notification-list::-webkit-scrollbar-track {
    background: rgba(26, 26, 26, 0.5);
    border-radius: 4px;
    margin: 0.5rem 0;
}

.notification-list::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-dark));
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.notification-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-accent));
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.4);
}

.notification-item {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.3), rgba(13, 13, 13, 0.3));
}

.notification-item:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(178, 129, 53, 0.1));
    transform: translateX(4px);
}

.notification-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.notification-item-title {
    font-weight: 700;
    color: var(--gold-accent);
    font-size: 0.95rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

.notification-item-time {
    font-size: 0.7rem;
    color: var(--soft-gray);
    white-space: nowrap;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notification-item-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 0.5rem;
    font-weight: 400;
}

.no-notifications {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--gold-accent);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(178, 129, 53, 0.05));
}

.no-notifications i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.4;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.no-notifications p {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin: 0;
    color: var(--soft-gray);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Notification Popup Styles */
.notification-popup {
    position: fixed;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.95), rgba(26, 26, 26, 0.95));
    backdrop-filter: blur(20px);
    border: 2px solid var(--gold-accent);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15), 0 10px 30px rgba(0, 0, 0, 0.4);
    min-width: 300px;
    max-width: 400px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
}

.notification-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.notification-popup-content {
    padding: 1.25rem 1.5rem;
}

.notification-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.notification-popup-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--gold-accent);
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

.notification-popup-close {
    background: none;
    border: none;
    color: var(--soft-gray);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.notification-popup-close:hover {
    color: var(--gold-accent);
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.1);
}

.notification-popup-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 400;
}

/* Notification type styles */
.notification-popup.notification-success {
    border-color: #28a745;
    box-shadow: 0 20px 60px rgba(40, 167, 69, 0.15), 0 10px 30px rgba(0, 0, 0, 0.4);
}

.notification-popup.notification-success .notification-popup-title {
    color: #28a745;
    text-shadow: 0 2px 4px rgba(40, 167, 69, 0.3);
}

.notification-popup.notification-success .notification-popup-header {
    border-bottom-color: rgba(40, 167, 69, 0.3);
}

.notification-popup.notification-error {
    border-color: #dc3545;
    box-shadow: 0 20px 60px rgba(220, 53, 69, 0.15), 0 10px 30px rgba(0, 0, 0, 0.4);
}

.notification-popup.notification-error .notification-popup-title {
    color: #dc3545;
    text-shadow: 0 2px 4px rgba(220, 53, 69, 0.3);
}

.notification-popup.notification-error .notification-popup-header {
    border-bottom-color: rgba(220, 53, 69, 0.3);
}

.notification-popup.notification-warning {
    border-color: #ffc107;
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.15), 0 10px 30px rgba(0, 0, 0, 0.4);
}

.notification-popup.notification-warning .notification-popup-title {
    color: #ffc107;
    text-shadow: 0 2px 4px rgba(255, 193, 7, 0.3);
}

.notification-popup.notification-warning .notification-popup-header {
    border-bottom-color: rgba(255, 193, 7, 0.3);
}

/* Mobile responsive notifications */
@media (max-width: 768px) {
    .notification-dropdown {
        right: -50px;
        min-width: 280px;
        max-width: 90vw;
    }
    
    /* Hide ONLY desktop nav */
    .navbar > .container > .nav-links {
        display: none !important;
    }
    
    /* keep mobile menu nav visible */
    .mobile-menu .nav-links {
        display: flex !important;
        flex-direction: column;
    }
    
    /* Show standalone notification bell on mobile */
    .navbar .mobile-notification-bell {
        display: flex !important;
        margin-right: 10px;
    }
    
    /* Adjust hamburger positioning */
    .navbar .hamburger {
        display: flex;
    }
}

/* Fix hamburger display at 1180px breakpoint */
@media (max-width: 1180px) {
    .navbar .hamburger {
        display: flex !important;
    }
    
    /* hide ONLY desktop nav */
    .navbar > .container > .nav-links {
        display: none !important;
    }
    
    /* keep mobile menu nav visible */
    .mobile-menu .nav-links {
        display: flex !important;
        flex-direction: column;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--matte-black);
    z-index: 1000;
    will-change: background, box-shadow;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Notification Bell Container - matches nav link spacing */
.navbar .notification-bell-container {
    display: flex;
    align-items: center;
}

/* Ensure notification bell is properly positioned */
.navbar .notification-bell {
    position: relative !important;
    z-index: 10 !important;
    padding: 5px 0 !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar .notification-bell i {
    font-size: 1.2rem !important;
    color: var(--white) !important;
}

.navbar .notification-badge {
    position: absolute !important;
    top: -2px !important;
    right: -2px !important;
    background: #dc3545 !important;
    color: white !important;
    font-size: 0.7rem !important;
    font-weight: bold !important;
    padding: 2px 6px !important;
    border-radius: 10px !important;
    min-width: 18px !important;
    text-align: center !important;
    line-height: 1 !important;
}

.navbar .notification-badge:empty {
    display: none !important;
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Nav Controls - Bell + Book Now (visible always) */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 1180px) {
    .nav-controls {
        display: flex !important;
    }
    
    /* Hide Book Now button from header on mobile */
    .nav-controls .header-book-now {
        display: none !important;
    }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-text .word {
    font-size: 0.65em;
}

.logo-text span {
    color: var(--gold-accent);
    font-size: 1em;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-accent);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-accent);
}

.nav-links .nav-cta::after {
    display: none !important;
}

.nav-links .nav-cta:hover::after,
.nav-links .nav-cta.active::after {
    width: 0 !important;
}

.nav-cta {
    background: transparent;
    padding: 8px 0;
    text-decoration: none;
    display: inline-block;
}

.nav-cta div {
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-dark));
    color: var(--matte-black) !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    display: inline-block;
    text-decoration: none;
    line-height: 1;
}

.nav-cta div:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-decoration: none;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu & Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--matte-black);
    z-index: 999;
    transition: right 0.3s ease;
    padding: 80px 40px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Nav Links */
.mobile-menu .nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu .nav-links a {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu .nav-links a:hover,
.mobile-menu .nav-links a.active {
    color: var(--gold-accent);
}

.mobile-menu .nav-links .nav-cta {
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-dark));
    color: var(--matte-black);
    padding: 12px 24px;
    border-radius: 25px;
    text-align: center;
    margin-top: 10px;
}

.mobile-menu .nav-links .nav-cta:hover {
    color: var(--matte-black);
}

/* Base Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-width: 220px;
    padding: 16px 36px;

    border-radius: 6px;
    border: none;

    cursor: pointer;

    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    text-decoration: none;

    transition: none !important;
    transform: none !important;
    animation: none !important;

    box-shadow: none;
}

.btn:hover,
.btn:focus,
.btn:active {
    transition: none !important;
    transform: none !important;
    animation: none !important;
    box-shadow: none !important;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--gold-accent),
        var(--gold-dark)
    );

    color: var(--matte-black);
    border: none;
}

.btn-secondary {
    background: transparent;
    color: var(--white);

    border: 2px solid var(--gold-accent);
}

.btn-ripple {
    display: none !important;
}

@keyframes ripple {
    from {
        opacity: 0;
    }

    to {
        opacity: 0;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
}

.section-title span {
    color: var(--gold-accent);
}

.section-desc {
    color: var(--soft-gray);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(221, 186, 94, 0.15);
    border: 1px solid var(--gold-accent);
    color: var(--gold-accent);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-radius: 25px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--matte-black);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-logo-text span {
    color: var(--gold-accent);
    font-size: 0.80em;
}

.footer-desc {
    color: var(--soft-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--dark-gray);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--gold-accent);
    color: var(--matte-black);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--soft-gray);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--gold-accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--soft-gray);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--gold-accent);
    margin-top: 3px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: var(--soft-gray);
    font-size: 0.9rem;
}

.footer-copyright span {
    color: var(--gold-accent);
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: var(--soft-gray);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--gold-accent);
}

/* Responsive Base Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
