/* General styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}



/* ================= HEADER ================= */
.sticky-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    position: relative;
}

.logo {
    max-width: 150px;
    height: auto;
}

.separator {
    border-bottom: 1px solid #ccc;
}

/* Desktop Nav */
.desktop-nav { display: none; }

.desktop-nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    justify-content: center;
}

.desktop-nav li { margin: 0 15px; }

.desktop-nav a {
    text-decoration: none;
    color: #333;
}

.desktop-nav a.active { font-weight: bold; }

/* Mobile Nav */
.mobile-nav { display: block; }

.hamburger {
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.mobile-menu.open { display: flex; }

.mobile-menu ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-menu li { margin: 20px 0; }

.mobile-menu a {
    text-decoration: none;
    color: #333;
    font-size: 24px;
}

.mobile-menu a.active { font-weight: bold;}

/* ================= FOOTER ================= */
footer {
    text-align: center;
    padding: 20px;
    background: #f8f8f8;
    margin-top: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.social-links a {
    color: #333;
    text-decoration: none;
}

/* ================= HOME ================= */
.hero {
    padding: 20px;
    text-align: center;
    position: relative;   /* ADD */
    overflow: hidden;     /* ADD */
}


.hero-image {
    width: 100%;
    max-width: 850px;     /* controls desktop size */
    max-height: 65vh;     /* prevents skyscraper effect */
    object-fit: contain;  /* SHOW FULL IMAGE */
    display: block;
    margin: 0 auto;
}
/* 🎵 Decorative Music Notes */
.notes {
    position: absolute;
    width: clamp(25px, 10vw, 140px);
    pointer-events: none;
    transition: all 0.4s ease-out;
    z-index: 2;
}


.notes-left {
    left: clamp(8px, 3vw, 60px);
    top: clamp(8px, 3vw, 40px);  
    transform: rotate(-8deg);
}

.notes-right {
    right: clamp(8px, 3vw, 60px);
    top: clamp(8px, 3vw, 40px);
    transform: rotate(8deg);
}




.about {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    gap: 20px;
}

.about-image, .about-text {
    flex: 1;
    min-width: 300px;
    text-align: center;
    background-color: #C78BD8; /* The Instagram purple */
    padding: 20px;             /* Space around the inner content */
}

.about-image img {
    width: 100%;
    height: auto;
}

.instagram-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;   /* adjust for desktop */
    margin: 0 auto;     /* centers the iframe */
    height: 500px;      /* default height (mobile first) */
}

.instagram-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    overflow: hidden;
}

/* Desktop larger height */
@media (min-width: 768px) {
    .instagram-wrapper {
        height: 500px;   /* show more posts on desktop */
    }
}

/* Optional: very small mobile screens */
@media (max-width: 400px) {
    .instagram-wrapper {
        height: 400px;   /* shrink on tiny phones */
    }
}


/* ================= SHOW DATES ================= */

.show-dates {
    padding: 50px 20px;
    text-align: center;
}

.events-container {
    max-width: 760px;
    margin: 0 auto;
}

.events-list {
    display: flex;
    flex-direction: column;
}

/* ===== MOBILE — 2 COLUMN SHOW LAYOUT ===== */

.event-item {
    display: grid;
    grid-template-columns: 90px 1fr; /* Date | Info */
    column-gap: 12px;
    row-gap: 2px;
    align-items: start;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.event-date {
    grid-column: 1;
    grid-row: 1 / span 3; /* stays aligned with all info rows */
    font-weight: 700;
    font-size: 1.05em;
    text-align: left;
}

.event-venue {
    grid-column: 2;
    grid-row: 1;
    font-weight: 700;
    text-align: left;
}

.event-address {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.95em;
    color: #555;
    text-align: left;
    line-height: 1.35;
}

/* if city/state/zip is separate element */
.event-location {
    grid-column: 2;
    grid-row: 3;
    font-size: 0.95em;
    color: #555;
    text-align: left;
    line-height: 1.35;
}


/* ===== DESKTOP — CENTERED 3 COLUMNS (FIXED) ===== */
@media (min-width: 768px) {

    .events-container {
        display: flex;
        justify-content: center; /* center block on page */
    }

    .events-list {
        width: fit-content; /* grid width = content width */
    }

    .event-item {
        display: grid;
        grid-template-columns: 110px 220px auto; /* Date | Venue | Address */
        column-gap: 12px;
        align-items: baseline; /* keeps text aligned nicely */
    }

    .event-date {
        grid-column: 1;
        grid-row: 1;
        white-space: nowrap;
    }

    .event-venue {
        grid-column: 2;
        grid-row: 1;
        white-space: nowrap;
    }

    .event-address,
    .event-location {
        grid-column: 3;
        grid-row: 1;      /* FORCE same row */
        text-align: left; /* you wanted left aligned */
        white-space: nowrap; /* PREVENT wrapping to new row */
    }
}

/* ================= NATURAL ART GALLERY ================= */

.gallery {
    column-count: 4;
    column-gap: 18px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.gallery img {
    width: 100%;
    height: auto;          /* preserves aspect ratio */
    margin-bottom: 18px;
    border-radius: 6px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    break-inside: avoid;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 18px rgba(0,0,0,0.25);
}

/* Responsive columns */
@media (max-width: 1100px) { .gallery { column-count: 3; } }
@media (max-width: 800px)  { .gallery { column-count: 2; } }
@media (max-width: 500px)  { .gallery { column-count: 2; column-gap: 12px; } }


/* ================= BOOKING ================= */
.booking {
    padding: 20px;
    text-align: center;
}

/* ===== Desktop Header Adjustments ===== */
@media (min-width: 768px) {
    .desktop-nav { display: block; }
    .mobile-nav { display: none; }

    .header-content {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 10px;
    }
}

/* 🎵 Notes shrink into corners on scroll */
.notes.shrink {
    width: 85px;
    top: 8px;
}

.notes-left.shrink {
    left: 10px;
    transform: rotate(-12deg);
}

.notes-right.shrink {
    right: 10px;
    transform: rotate(12deg);
}


