/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ========== DEFAULT GOLDEN THEME ========== */
    --primary-color: #d4af37; /* classic gold */
    --secondary-color: #2b2b2b; /* dark text */
    --accent-color: #f6e2ac; /* light gold accent */
    --text-color: #2b2b2b;
    --light-bg: #fffaf0; /* warm off-white */
    --white-bg: #ffffff;
    --border-color: #ecd9ad;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 6px 24px rgba(0, 0, 0, 0.12);
    
    /* Extended color variables */
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    --link-color: #d4af37;
    --link-hover-color: #c99e1e;
    --border-radius: 10px;
    --transition-speed: 0.3s;
    --font-primary: 'Merriweather', 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, serif;
    --font-secondary: 'Inter', 'Open Sans', Arial, sans-serif;
    --font-brand: 'Oswald', 'Arial Black', sans-serif;
}

/* ========== ALTERNATIVE THEMES ========== */
/* Elegant Silver Theme */
[data-theme="silver"] {
    --primary-color: #c0c0c0;
    --secondary-color: #1a1a1a;
    --accent-color: #e8e8e8;
    --text-color: #1a1a1a;
    --light-bg: #f5f5f5;
    --white-bg: #ffffff;
    --border-color: #d9d9d9;
    --link-hover-color: #a8a8a8;
}

/* Premium Dark Theme */
[data-theme="dark"] {
    --primary-color: #fbbf24;
    --secondary-color: #ffffff;
    --accent-color: #fcd34d;
    --text-color: #f3f4f6;
    --light-bg: #1f2937;
    --white-bg: #111827;
    --border-color: #374151;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 6px 24px rgba(0, 0, 0, 0.5);
    --link-hover-color: #f59e0b;
}

/* Sapphire Blue Theme */
[data-theme="sapphire"] {
    --primary-color: #0ea5e9;
    --secondary-color: #1e293b;
    --accent-color: #0284c7;
    --text-color: #1e293b;
    --light-bg: #f0f9ff;
    --white-bg: #ffffff;
    --border-color: #bae6fd;
    --link-hover-color: #0369a1;
}

/* Rose Garden Theme */
[data-theme="rose"] {
    --primary-color: #ec4899;
    --secondary-color: #831843;
    --accent-color: #fbcfe8;
    --text-color: #500724;
    --light-bg: #fdf2f8;
    --white-bg: #ffffff;
    --border-color: #f9a8d4;
    --link-hover-color: #be185d;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Merriweather', 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Brand header styles (reference image) */
.site-brand-banner {
    background: transparent;
    padding: 18px 0;
}
.site-brand-banner .brand-inner {
    text-align: center;
    padding: 6px 0;
}
.brand-title {
    font-family: 'Oswald', 'Arial Black', sans-serif;
    font-weight: 700;
    font-size: 42px;
    letter-spacing: 2px;
    color: #e4c08e; /* keep header color unchanged */
    margin-bottom: 6px;
    line-height: 1;
}
.brand-sub {
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #666666;
    margin: 0;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .brand-title { font-size: 28px; }
    .brand-sub { font-size: 13px; }
}

/* Navbar adjustments for inline brand */
.nav-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.nav-brand-title {
    font-size: 26px;
    margin: 0;
    color: #e4c08e; /* keep header color unchanged */
    letter-spacing: 1px;
    white-space: nowrap;
}
.nav-brand-sub {
    font-size: 12px;
    margin: 0;
    color: #666666;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .nav-brand-title { font-size: 18px; }
    .nav-brand-sub { font-size: 11px; }
}


.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    color: var(--secondary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
    border-bottom: 3px solid var(--primary-color);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    border-radius: 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #727272; /* updated nav text color */
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    font-weight: 600;
    font-family: 'Inter', 'Open Sans', sans-serif;
}

.nav-menu a:hover {
    color: var(--primary-color); /* hover color */
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #727272; /* match nav text color */
    margin: 5px 0;
    transition: 0.3s;
}

/* Carousel Section */
.carousel-section {
    padding: 0;
    margin: 0;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.carousel-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.carousel-content {
    color: white;
    z-index: 10;
    max-width: 800px;
    padding: 20px;
    animation: fadeInUp 0.8s ease;
}

.carousel-content h1 {
    font-size: 3.5rem;
    font-family: var(--font-brand);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}

.carousel-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.carousel-placeholder {
    text-align: center;
    animation: slideContentFadeIn 0.8s ease-in-out;
}

@keyframes slideContentFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 235, 171, 0.39);
    color: #2b2b2b;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 20;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background-color: rgba(255, 235, 171, 0.85);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background-color: var(--primary-color);
    width: 14px;
    height: 14px;
}

/* Hero Section */
.hero {
    background-image: url('Images/Sc (1).jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: white;
    padding: 160px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.6), 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    letter-spacing: -0.5px;
    animation: fadeInDown 1.2s ease-out;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #e8e8e8;
    opacity: 1;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Hero button special styling */
.hero .btn-primary {
    padding: 16px 50px;
    font-size: 1.1rem;
    background-color: #8B3A3A;
    color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 6px 20px rgba(139, 58, 58, 0.4);
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: scaleIn 1.2s ease-out 0.6s both;
    transition: all 0.4s ease;
}

.hero .btn-primary:hover {
    background-color: #a04747;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 58, 58, 0.5);
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #222222;
}

.btn-primary:hover {
    background-color: #b58f2d;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Sections */
section {
    padding: 80px 20px;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Welcome Parallax Section */
.welcome-parallax {
    min-height: 450px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../Images/backdig.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 80px 20px;
}

.parallax-content h1 {
    font-size: 3.5rem;
    font-family: var(--font-brand);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.6);
    animation: fadeInUp 1s ease;
}

.parallax-content p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
    animation: fadeInUp 1.2s ease;
}

@media (max-width: 768px) {
    .welcome-parallax {
        background-attachment: scroll; /* Fixed background can be glitchy on mobile */
        min-height: 350px;
    }
    .parallax-content h1 { font-size: 2.5rem; }
    .parallax-content p { font-size: 1.1rem; }
}

/* Events Section */
.events {
    background: linear-gradient(180deg, rgba(255,250,240,0.92) 0%, rgba(255,250,240,0.96) 100%);
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.events-carousel-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.events-carousel-wrapper h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.events-carousel-wrapper .section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
}

.events-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: 15px;
    overflow: hidden;
}

.events-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.events-carousel-slide {
    min-width: 100%;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.events-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.events-slide-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 40px;
    max-width: 600px;
}

.event-desc-container i, 
.event-desc-wrapper i {
    display: inline-block;
    min-width: 1.2rem;
}

.events-slide-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.events-slide-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.events-slide-content .capacity {
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    text-shadow: none;
}

.events-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.events-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.events-dot:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.events-dot.active {
    background-color: var(--primary-color);
    border-color: var(--secondary-color);
    width: 14px;
    height: 14px;
}

@media (max-width: 768px) {
    .events-carousel-slide {
        height: 450px;
    }

    .events-slide-content {
        padding: 30px 20px;
    }

    .events-slide-content h3 {
        font-size: 1.8rem;
    }

    .events-slide-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}

/* Booking Section */
.booking {
    background: var(--white-bg);
}

.booking-form {
    background: linear-gradient(135deg, #fff5f7 0%, #f0f8ff 100%);
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto 3rem;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.booking-form button {
    width: 100%;
    grid-column: 1 / -1;
}

.booking-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.info-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #555;
    font-size: 0.95rem;
}

/* Services Section */
.services {
    background-color: var(--white-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 3rem;
}

.service-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.service-item p {
    color: #555;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    background: var(--white-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 3rem;
}

.contact-info h3 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 30px;
    margin-top: 5px;
}

.info-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #555;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--secondary-color);
}

.contact-form {
    background: linear-gradient(135deg, #fff5f7 0%, #f0f8ff 100%);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form button {
    width: 100%;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #3a2f1f 0%, var(--secondary-color) 100%);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-container {
        height: 350px;
    }

    .carousel-placeholder {
        padding: 20px;
    }

    .carousel-placeholder > div:first-child {
        font-size: 1.5rem !important;
    }

    .carousel-placeholder > div:last-child {
        font-size: 1rem !important;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-btn-prev {
        left: 10px;
    }

    .carousel-btn-next {
        right: 10px;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo-img {
        height: 35px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer .container {
        flex-direction: column;
    }

    .booking-form {
        padding: 20px;
    }

    .services-grid {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        height: 280px;
    }

    .carousel-placeholder > div:first-child {
        font-size: 1.2rem !important;
    }

    .carousel-placeholder > div:last-child {
        font-size: 0.85rem !important;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .carousel-dots {
        bottom: 15px;
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 12px;
        height: 12px;
    }

    .logo {
        font-size: 0.9rem;
    }

    .logo-img {
        height: 30px;
    }

    .hero {
        padding: 100px 20px;
        min-height: 400px;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero .btn-primary {
        padding: 12px 40px;
        font-size: 1rem;
    }

    section {
        padding: 40px 20px;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .service-item {
        padding: 20px;
    }

    .info-item {
        gap: 15px;
    }
}

/* Updates Section */
.updates {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.update-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.update-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.update-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.update-category {
    background-color: #fff5f7;
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.update-date {
    color: #888;
    font-size: 0.85rem;
}

.update-card h3 {
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.update-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.no-updates {
    grid-column: 1 / -1;
    text-align: center;
    color: #888;
    font-style: italic;
    padding: 40px;
}

/* Booking CTA Section Styles */
.booking-cta-card {
    background: linear-gradient(135deg, #fff5f7 0%, #f0f8ff 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.booking-cta-card h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.booking-cta-card p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.booking-cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.cta-feature span {
    font-weight: 600;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .booking-cta-card {
        padding: 40px 20px;
    }
    
    .booking-cta-card h2 {
        font-size: 1.8rem;
    }
    
    .booking-cta-features {
        gap: 20px;
    }
}

/* Notification Popup Styles */
.notification-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    animation: slideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 90%;
    max-width: 450px;
}

.notification-content {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-left: 5px solid var(--primary-color);
}

.notification-container.error .notification-content {
    border-left-color: #dc3545;
}

.notification-container.success .notification-content {
    border-left-color: #28a745;
}

.notification-content i {
    font-size: 1.8rem;
}

.notification-container.success i { color: #28a745; }
.notification-container.error i { color: #dc3545; }

.notification-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.notification-text p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    margin-left: auto;
}

.fade-out {
    opacity: 0;
    transform: translate(-50%, 20px);
    transition: all 0.5s ease;
}

@keyframes slideUp {
    from { transform: translate(-50%, 100%); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

@media (max-width: 480px) {
    .notification-container {
        bottom: 20px;
        width: 95%;
    }
    .notification-content {
        padding: 15px;
    }
}
