/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Header flex containers for desktop layout */
.header-flex {
    display: flex;
    align-items: center;
}
.logo-flex {
    flex: 1 1 0;
    justify-content: flex-start;
}
.banner-flex {
    flex: 2 1 0;
    justify-content: center;
}

/* Social icons in header */
.social-flex {
    flex: 0.5 1 0;
    justify-content: flex-end;
}

.header-social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon:hover {
    background: #D4AF37;
    color: #7D3E4F;
    transform: scale(1.15);
    border-color: white;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}
.scroll-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 32px;
    height: 32px;
    z-index: 1001;
    background: none;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}
.scroll-top:hover {
    transform: scale(1.2);
}
.hamburger {
    display: none;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #2C2C2C 0%, #3a3a3a 25%, #4a3a40 50%, #3a3a3a 75%, #2C2C2C 100%);
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Subtle texture overlay for premium look */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.02) 0px,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 2px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.02) 0px,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 2px
        );
    background-size: 4px 4px;
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}
header {
    background: linear-gradient(135deg, #8B4455, #7D3E4F);
    color: white;
    padding: 15px;
    font-size: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 1000;
}
.logo {
    width: 150px;
    height: auto;
}

.brand-name {
    font-size: 50px;
    font-weight: bold;
    color: #C9A200;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 0 auto;
    text-align: center;
    max-height: 120px;
    width: auto;
    object-fit: contain;
    /* No extra top margin needed */
}
.contact-info {
    font-size: 14px;
    text-align: right;
}
nav {
    background: linear-gradient(90deg, #2C2C2C, #3a3a3a);
    overflow: hidden;
    position: sticky;
    z-index: 1000; /* Ensures it stays above other content */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    top: 0;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 3px solid #D4AF37;
}
nav a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #C9A200);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}
nav a:hover::after {
    width: 80%;
}
nav a.active {
    color: #D4AF37;
}
nav a.active::after {
    width: 80%;
}
.carousel {
    position: relative;
    width: 90%;
    max-width: 1160px;
    margin: 20px auto 15px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    aspect-ratio: 16 / 9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-inner {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Carousel indicators */
.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 15px;
    border-radius: 25px;
    backdrop-filter: blur(5px);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: #D4AF37;
    width: 12px;
    height: 12px;
}
    z-index: 10;
    background: transparent;
    padding: 12px 0 30px;
    border-radius: 0;
    backdrop-filter: none;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.6);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.carousel-dot:hover {
    background: rgba(212, 175, 55, 0.9);
    transform: scale(1.3);
}

.carousel-dot.active {
    background: #D4AF37;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* Scroll-reveal animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main content container */
.content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    gap: 30px;
}

/* Card styling */
.card {
    background: linear-gradient(135deg, #FAF9F7, #F5F1E8);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    scroll-margin-top: 130px;
    border-left: 4px solid #D4AF37;
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-left-color: #A85070;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

.card-content {
    padding: 30px;
}

.card-content h2 {
    color: #7D3E4F;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.card-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37 0%, #D4AF37 60%, transparent 100%);
}

.card-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.card-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 20px;
    background: #f9f9f9;
}

.gallery-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
}

.gallery-img.loaded {
    animation: popIn 0.5s ease-out forwards;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Call-to-action button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #8B4455, #7D3E4F);
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #D4AF37;
    cursor: pointer;
    font-size: 16px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #A85070, #8B4455);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(168, 80, 112, 0.4);
    border-color: #FAF9F7;
}

.contact-card .card-gallery {
    display: none;
}

.contact-details {
    background: rgba(212, 175, 55, 0.1);
    padding: 15px;
    border-left: 4px solid #A85070;
    border-radius: 4px;
}

/* Gallery Page Styles */
.gallery-page {
    padding: 0;
    margin: 40px auto;
    max-width: 1200px;
    width: 100%;
}

.gallery-header {
    text-align: center;
    padding: 40px 20px 30px;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(212,175,55,0.05), rgba(212,175,55,0.02));
    border-radius: 8px;
}

.gallery-header h1 {
    color: #D4AF37;
    font-size: 42px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    font-weight: 700;
    letter-spacing: 1px;
}

.gallery-header p {
    color: #E8C547;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #f0f0f0;
    aspect-ratio: 4 / 3;
    opacity: 0;
    transform: scale(0.9);
}

.gallery-item.loaded {
    animation: popIn 0.5s ease-out forwards;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.gallery-item img,
.gallery-item iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-category {
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #D4AF37;
    padding: 5px 12px;
    border-radius: 4px;
    display: inline-block;
}

.gallery-video-item {
    aspect-ratio: 16 / 9;
}

.gallery-contact {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #FAF9F7, #F5F1E8);
    margin: 40px 20px 20px;
    border-radius: 12px;
    border: 2px solid #D4AF37;
}

.gallery-contact h2 {
    color: #7D3E4F;
    font-size: 32px;
    margin-bottom: 10px;
}

.gallery-contact p {
    color: #666;
    font-size: 16px;
    margin: 10px 0;
}

.gallery-contact .contact-details {
    display: inline-block;
    text-align: left;
    margin: 20px 0;
}

.gallery-contact .contact-details a {
    color: #7D3E4F;
    text-decoration: none;
    font-weight: 600;
}

.gallery-contact .contact-details a:hover {
    color: #D4AF37;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #D4AF37;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 16px;
}
.footer {
    background: linear-gradient(135deg, #2C2C2C, #3a3a3a);
    color: white;
    padding: 40px 20px 20px;
    text-align: center;
    border-top: 3px solid #D4AF37;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    color: #D4AF37;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #A85070;
    padding-bottom: 10px;
}

.footer-section p {
    margin: 10px 0;
    line-height: 1.6;
    font-size: 14px;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #D4AF37;
}

.social-links,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.social-links a,
.footer-links a {
    padding: 8px 12px;
    border: 2px solid #D4AF37;
    border-radius: 4px;
    transition: all 0.3s ease;
    color: #D4AF37;
}

.social-links a:hover,
.footer-links a:hover {
    background: #D4AF37;
    color: #2C2C2C;
    transform: scale(1.05);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 20px;
    font-size: 14px;
}
/* Mobile view: Hide logo and resize brand image */
@media screen and (max-width: 768px) {
    body {
        padding-top: 0;
    }
    header {
        position: sticky;
        top: 0;
        z-index: 999;
    }
    .social-flex {
        display: none;
    }
    .header-flex {
        width: 100%;
        justify-content: center;
        margin-bottom: 0;
    }
    .logo-flex, .banner-flex, .contact-flex {
        justify-content: center;
        flex: unset;
    }
    .logo {
        display: none; /* Hides the logo on mobile */
    }

    .brand-name {
        max-height: 70px;
        width: auto;
        display: block;
        margin: 0 auto;
        text-align: center;
        margin-left: 0;
        font-size: 24px;
    }
    header {
        flex-direction: column;
        font-size: 14px;
        padding: 8px 0;
        align-items: center;
        justify-content: center;
        gap: 0;
        position: sticky;
        top: 0;
        z-index: 1001;
        width: 100%;
        box-sizing: border-box;
    }
    .contact-info {
        font-size: 12px;
        text-align: left;
        padding-left: 0;
        width: 100%;
    }
    .contact-info table {
        font-size: 11px;
        width: 100%;
    }
    .contact-info table td {
        padding: 3px 0;
        display: block;
        word-wrap: break-word;
    }
    nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: fixed;
        top: 0;
        left: 0;
        width: 75vw;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(180deg, #2C2C2C, #3a3a3a);
        z-index: 2000;
        box-shadow: 2px 0 12px rgba(0,0,0,0.3);
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        transform: translateX(-100%);
        overflow-y: auto;
        padding-top: 70px;
        border-right: 3px solid #D4AF37;
        opacity: 0;
        visibility: hidden;
    }
    nav.open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    .hamburger {
        display: flex;
        position: absolute;
        top: 12px;
        left: 12px;
        width: 38px;
        height: 38px;
        z-index: 2100;
        background: linear-gradient(135deg, #D4AF37, #C9A200);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        border-radius: 6px;
        padding: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }
    .hamburger:active {
        transform: scale(0.95);
    }
    .hamburger:hover {
        background: linear-gradient(135deg, #A85070, #8B4455);
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(168, 80, 112, 0.4);
    }
    .hamburger span {
        display: block;
        width: 20px;
        height: 3px;
        margin: 4px 0;
        background: white;
        border-radius: 2px;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        transform-origin: center;
    }
    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    .hamburger.open span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }
    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    nav a {
        float: none;
        padding: 16px 20px;
        font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: left;
        position: relative;
        color: #ecf0f1;
        transition: all 0.3s ease;
        font-weight: 500;
        display: flex;
        align-items: center;
        text-transform: capitalize;
        animation: slideInLeft 0.4s ease-out forwards;
        opacity: 0;
    }
    
    nav.open a {
        animation: slideInLeft 0.4s ease-out forwards;
    }
    
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    nav a:nth-child(1) { animation-delay: 0.05s; }
    nav a:nth-child(2) { animation-delay: 0.1s; }
    nav a:nth-child(3) { animation-delay: 0.15s; }
    nav a:nth-child(4) { animation-delay: 0.2s; }
    nav a:nth-child(5) { animation-delay: 0.25s; }
    nav a:nth-child(6) { animation-delay: 0.3s; }
    nav a:nth-child(7) { animation-delay: 0.35s; }
    nav a:nth-child(8) { animation-delay: 0.4s; }
    
    nav a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.55);
        z-index: 1999;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        opacity: 0;
        visibility: hidden;
    }
    .nav-overlay.open {
        opacity: 1;
        visibility: visibleAF37;
    }
    nav a:hover::before,
    nav a.active::before {
        transform: scaleY(1);
    }
    nav a.active {
        color: #D4AF37;
        background-color: rgba(212, 175, 55, 0.15);
    }
    nav a:active {
        background-color: rgba(212, 175, 55, 0.25);
    }
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.55);
        z-index: 1999;
        transition: opacity 0.35s ease;
        opacity: 0;
    }
    .nav-overlay.open {
        display: block;
        opacity: 1;
    }
    .carousel {
        width: 100%;
        max-width: 100vw;
        min-width: 0;
        border-radius: 0;
        margin: 20px 0 10px;
        aspect-ratio: 16 / 9;
        border: 1px solid rgba(212, 175, 55, 0.2);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        overflow: hidden;
        padding: 0;
        position: relative;
    }
    .carousel-inner {
        display: flex;
        width: 100%;
        height: 100%;
        transition: transform 0.6s ease-in-out;
        border-radius: 0;
    }
    .carousel img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        flex-shrink: 0;
        border-radius: 0;
    }
    .section {
        padding: 10px;
        font-size: 16px;
    }
    .content {
        margin: 20px auto;
        gap: 20px;
        padding: 0 10px;
    }
    .card {
        border-radius: 8px;
    }
    .card-content {
        padding: 20px;
    }
    .card-content h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .card-content p {
        font-size: 14px;
    }
    .card-gallery {
        grid-template-columns: repeat(2, 1fr);
        padding: 15px;
        gap: 8px;
    }
    .gallery-img {
        height: 120px;
    }
    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    .content-table {
        display: block;
        padding: 5px;
        width: 100vw;
        overflow-x: auto;
    }
    .content-table td {
        display: block;
        width: 100vw;
        padding: 0;
    }
    .section div[style*="display: flex"] {
        flex-direction: column !important;
        max-width: 100vw !important;
        align-items: center !important;
    }
    .section img, .section iframe {
        width: 90vw !important;
        height: auto !important;
        max-width: 350px !important;
        margin: 0 auto 10px auto !important;
        padding: 5px !important;
    }
    .footer {
        padding: 30px 15px 15px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .footer-section p {
        font-size: 13px;
    }
    .social-links,
    .footer-links {
        gap: 10px;
    }
    .social-links a,
    .footer-links a {
        padding: 6px 10px;
        font-size: 13px;
    }
    .footer-bottom {
        font-size: 12px;
    }
    .floating-balloon {
        width: 60px;
        height: 60px;
        bottom: 10px;
        right: 10px;
    }
    
    /* Gallery page mobile adjustments */
    .gallery-header {
        padding: 15px 15px 10px;
    }
    
    .gallery-header h1 {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .gallery-header p {
        font-size: 14px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    
    .gallery-contact h2 {
        font-size: 24px;
    }
    
    .gallery-contact p {
        font-size: 14px;
    }
    
    .gallery-contact .contact-details {
        font-size: 13px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 40px;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 85%;
    }
    
    .lightbox-caption {
        bottom: 15px;
        font-size: 13px;
        padding: 6px 12px;
    }
}
/* Extra small devices */
@media screen and (max-width: 480px) {
    header {
        font-size: 14px;
        padding: 6px;
        position: sticky;
        top: 0;
    }
    nav a {
        font-size: 14px;
        padding: 8px 4px;
    }
    .brand-name {
        font-size: 28px;
        max-height: 60px;
    }
    .section {
        font-size: 14px;
        padding: 5px;
    }
    .footer {
        font-size: 12px;
        padding: 6px;
    }
    .floating-balloon {
        width: 45px;
        height: 45px;
    }
    .section img, .section iframe {
        max-width: 220px !important;
    }
}
.floating-balloon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 80px; /* Adjust size as needed */
    height: 80px;
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.floating-balloon img {
    width: 100%;
    height: auto;
}

.floating-balloon:hover {
    transform: scale(1.1);
}

/* Gallery Page Specific Styles */
.gallery-page {
    padding-top: 20px;
}

.gallery-video {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    object-fit: cover;
    padding: 0;
    border: none;
}

/* About Page Styles */
.about-page {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    gap: 30px;
}

.about-header {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #D4AF37;
    border-right: 4px solid #D4AF37;
}

.about-header h1 {
    color: #D4AF37;
    font-size: 48px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    font-weight: 700;
}

.about-header .tagline {
    color: #E8C547;
    font-size: 22px;
    font-weight: 500;
    margin: 0;
}

.about-section {
    background: linear-gradient(135deg, #FAF9F7, #F5F1E8);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border-left: 4px solid #D4AF37;
    animation: slideInUp 0.6s ease-out forwards;
}

.about-section h2 {
    color: #7D3E4F;
    font-size: 36px;
    margin-bottom: 25px;
    text-align: center;
}

.about-section p {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Offerings Grid */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.offering-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #D4AF37;
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.15);
}

.offering-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.offering-card h3 {
    color: #7D3E4F;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.offering-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-top: 3px solid #D4AF37;
}

.feature-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #D4AF37;
    color: white;
    border-radius: 50%;
    line-height: 40px;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
}

.feature-item h4 {
    color: #7D3E4F;
    font-size: 16px;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Amenities */
.amenities-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.amenities-column {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.amenities-column h4 {
    color: #7D3E4F;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #D4AF37;
}

.amenities-list {
    list-style: none;
    padding: 0;
}

.amenities-list li {
    color: #333;
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.amenities-list li:before {
    content: '✓';
    color: #D4AF37;
    font-weight: bold;
    margin-right: 10px;
    font-size: 16px;
}

/* Service Areas */
.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.service-area-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    color: #333;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border-left: 3px solid #D4AF37;
}

/* Location Section */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
    align-items: center;
}

.location-info {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.location-info h4 {
    color: #7D3E4F;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.location-info p {
    color: #333;
    font-size: 14px;
    margin: 0;
    line-height: 1.8;
}

.location-info a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
}

.location-info a:hover {
    text-decoration: underline;
}

.location-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Contact Box */
.contact-box {
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
    border: 2px solid #D4AF37;
}

.contact-box h2 {
    color: #D4AF37;
    font-size: 32px;
}

.contact-box p {
    color: #7D3E4F;
    font-size: 16px;
    margin-bottom: 30px;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-buttons .cta-button {
    padding: 12px 30px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 600;
}

/* Mobile Responsive - About Page */
@media (max-width: 768px) {
    .about-header {
        padding: 40px 15px 30px;
    }

    .about-header h1 {
        font-size: 32px;
    }

    .about-header .tagline {
        font-size: 16px;
    }

    .about-section {
        padding: 25px 20px;
    }

    .about-section h2 {
        font-size: 24px;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-container {
        grid-template-columns: 1fr;
    }

    .service-areas-grid {
        grid-template-columns: 1fr;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-buttons .cta-button {
        width: 100%;
        text-align: center;
    }
}

/* Compact Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
    max-width: 600px;
}

.contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 16px !important;
    background: #FFFFFF !important;
    border-radius: 10px !important;
    border-left: 4px solid #D4AF37 !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12) !important;
    transition: all 0.3s ease !important;
}

.contact-item:hover {
    background: #F9F7F5 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.25) !important;
}

.contact-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-text {
    flex: 1;
}

.contact-text p {
    margin: 0 0 4px 0;
    font-size: 13px;
    color: #7D3E4F;
    font-weight: 600;
}

.contact-text a {
    color: #D4AF37;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-text a:hover {
    color: #E8C547;
    text-decoration: underline;
}

/* Tablet Responsive - 2 Column Contact */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
}

/* Mobile Responsive - Compact Contact */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 15px 0;
        max-width: 100%;
    }

    .contact-item {
        padding: 10px;
        gap: 10px;
    }

    .contact-icon {
        font-size: 20px;
    }

    .contact-text p {
        font-size: 12px;
    }

    .contact-text a {
        font-size: 12px;
    }
}
