* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    font-size: 14px;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Static Background */
.static-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background-image: url('static-background.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.static-background.active {
    opacity: 1;
}

/* Large Icon Overlay */
.large-icon-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.large-icon-overlay.active {
    opacity: 0.3;
}

/* Home Container */
.home-container {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-in-out;
    overflow: hidden;
}

.home-container.hidden {
    opacity: 0;
    pointer-events: none;
}

/* One-time home hint: dims background slightly while icons “peek” */
.home-hint-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background-color: rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease-in-out;
}

.home-hint-overlay.is-visible {
    opacity: 1;
}

/* Logo */
.logo {
    font-family: 'Pirata One', cursive;
    font-size: clamp(3rem, 8vw, 6rem);
    text-align: center;
    position: relative;
    z-index: 10;
    /* text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8); */
    opacity: 0.85;
    letter-spacing: 0.02em;
}

/* Contact Email */
.contact-email {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    opacity: 0.7;
    text-align: center;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.contact-email:hover {
    opacity: 1;
}

/* Floating Icon Containers */
.icon-container {
    position: absolute;
    width: 15vw;
    min-width: 150px;
    max-width: 250px;
    cursor: pointer;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    z-index: 5;
}

.icon-container.datura {
    top: 10%;
    left: 15%;
}

.icon-container.grass {
    top:10%;
    right: 10%;
    width: 20%;
    min-width: 158px;
    max-width: 260px;
}

.icon-container.calendula {
    bottom: 12%;
    right: 15%;
    width: 30%;
    max-width: 250px;
}

.icon-image {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.5s ease-in-out;
}

.icon-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Pirata One', cursive;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: auto;
    /* text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9); */
    white-space: nowrap;
    cursor: pointer;
}

/* Desktop hover */
@media (hover: hover) {
    .icon-container:hover .icon-image {
        opacity: 0;
    }
    
    .icon-container:hover .icon-text {
        opacity: 1;
    }
}

/* Mobile tap reveal */
.icon-container.reveal .icon-image {
    opacity: 0;
}

.icon-container.reveal .icon-text {
    opacity: 1;
}

/* Periodic home hint — soft “peek” (not full hover/tap reveal): image stays ~half visible, label only partly emerges */
.icon-container.hint-reveal .icon-image {
    animation: home-hint-img 1.35s ease-in-out;
}

.icon-container.hint-reveal .icon-text {
    animation: home-hint-text 1.35s ease-in-out;
}

@keyframes home-hint-img {
    0%,
    100% {
        opacity: 1;
    }

    35%,
    65% {
        opacity: 0.48;
    }
}

@keyframes home-hint-text {
    0%,
    100% {
        opacity: 0;
    }

    35%,
    65% {
        opacity: 0.76;
    }
}

@media (prefers-reduced-motion: reduce) {
    .icon-container.hint-reveal .icon-image,
    .icon-container.hint-reveal .icon-text {
        animation: none;
    }
}

/* Content Container (Hidden Initially) */
.content-container {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
    overflow-y: auto;
    overflow-x: hidden;
}

.content-container.active {
    opacity: 1;
    pointer-events: auto;
}

/* Content Header */
.content-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0)); */
    z-index: 100;
}

.header-logo {
    font-family: 'Pirata One', cursive;
    font-size: clamp(2rem, 5vw, 3.5rem);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.header-logo:hover {
    opacity: 0.7;
}

/* Icon Navigation */
.icon-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-icon-container {
    width: 60px;
    height: 60px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-icon-container:hover {
    transform: scale(1.1);
}

.nav-icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease-in-out;
}

.nav-icon-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Pirata One', cursive;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
    /* text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9); */
    white-space: nowrap;
}

/* Desktop hover for nav icons */
@media (hover: hover) {
    .nav-icon-container:hover .nav-icon-image {
        opacity: 0;
    }
    
    .nav-icon-container:hover .nav-icon-text {
        opacity: 1;
    }
}

/* Page Content */
.page-content {
    padding-top: 20%;
    padding-bottom: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    color: #ffffff;
}

/* Content Sections */
.content-section {
    display: none;
}

.content-section.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section h2 {
    font-family: 'Pirata One', cursive;
    font-size: clamp(20px, 4vw, 40px);
    margin-bottom: 2rem;
    text-align: center;
}

.content-section h3 {
    font-family: 'Pirata One', cursive;
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: center;
}

.content-section a {
    color: #ffffff;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.content-section a:hover {
    opacity: 0.7;
}

/* Show Dates */
.show-list {
    list-style: none;
    margin-top: 2rem;
}

.show-item {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-left: 3px solid #ffffff;
    transition: background 0.3s ease, transform 0.3s ease;
}

.show-item:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateX(5px);
}

.show-date {
    font-family: 'Pirata One', cursive;
    font-size: 1.5rem;
    min-width: 80px;
}

.show-details {
    flex: 1;
}

.show-city {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0.3rem;
    text-align: center;
}

.show-venue {
    font-size: 14px;
    opacity: 0.9;
}

/* About page styling - center aligned text without show styling */
.show-list .show-item:only-child {
    border-left: none;
    background: none;
    display: block;
    text-align: center;
    padding: 0;
}

.show-list .show-item:only-child:hover {
    background: none;
    transform: none;
}

.show-list .show-item:only-child .show-city {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 50px;
    }
    
    .content-header {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .icon-nav {
        gap: 1rem;
    }
    
    .nav-icon-container {
        width: 50px;
        height: 50px;
    }
    
    .icon-container.datura,
    .icon-container.grass,
    .icon-container.calendula {
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
    
    .icon-container.datura {
        top: 20%;
        left: 10%;
    }
    
    .icon-container.grass {
        top: 10%;
        right: 5%;
        width: 18vw;
        min-width: 228px;
    }
    
    .icon-container.calendula {
        width: 50%;
        bottom: 15%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .page-content {
        padding-top: 180px;
    }
    
    .show-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .show-date {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .icon-container {
        min-width: 120px;
    }

    .icon-container.grass {
        min-width: 206px;
    }
    
    .content-header {
        padding: 0.8rem 1rem;
    }
}

