/* General Styles */

body {
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  color: #e0e0e0;
  background: linear-gradient(135deg, #0f0f0f, #1c1c2a);
  scroll-behavior: smooth;
}

/* Headings */
h1, h2 {
    font-family: 'Geom', Arial, sans-serif;
    color: #ffdd57; /* accent color */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* shadow effect */
}

/* Paragraphs */
p {
    margin: 0 0 20px 0; /* top 0, bottom 20px */
    padding: 0 20px;    /* left and right padding */
    line-height: 1.5;
}


/* Links */
a {
    color: #ffdd57;*/;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s, text-shadow 0.3s;
}
a:hover {
    color:  #ffdd57; /* #ffdd57;*/
    text-shadow: 0 0 8px #ffd633;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(20,20,30,0.7);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    padding: 12px 0;
    z-index: 1000;
}
nav a {
    margin: 0 15px;
    color: #fff;
}
nav a:hover {
    color: #ffdd57;
}

/* Hero Section */
#hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 0 20px;
}
#hero img.logo {
    width: 90%;        /* fill the width of its container */
    max-width: 100vw;   /* optional: never exceed viewport width */
    height: auto;       /* maintain aspect ratio */
    display: block;     /* remove inline spacing/margin issues */
    margin-bottom: 1em; /* optional spacing below */
    /*margin-top: 1em; /* optional spacing below */

}


/* Section Panels */
section {
    background: rgba(30,30,40,0.85); 
    margin: 20px auto;
    border-radius: 5px;
    text-align: center;
    padding: 20px;
    max-width: 1000px;

    /* Animation: hidden initially */
    opacity: 0;
    transform: translateY(50px);       /* slide from below */
    transition: opacity 0.5s ease-out, transform 0.8s ease-out;
}

/* Visible state */
section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Images inside sections */
.section-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
    border-radius: 12px;
}



/* Buttons / Call to Action */
button, .cta, a.cta {
    display: inline-block;
    background: #ffdd57;
    color: #111;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}
button:hover, .cta:hover {
    background: #ffd633;
    box-shadow: 0 0 10px #ffd633;
}

/* Footer */
footer {
    display: flex;
    justify-content: space-between; /* left and right items */
    align-items: center;            /* vertically center everything */
    background: rgba(0,0,0,0.9);
    border-top: 1px solid #ffdd57;
    padding: 20px 30px;
    color: #ccc;
    flex-wrap: wrap;
}

/* Left: Instagram + name */
.footer-left {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9em;
}

/* Instagram icon hover */
.footer-left .social-icon {
    max-height: 30px;
    transition: transform 0.3s;
}
.footer-left .social-icon:hover {
    transform: scale(1.2);
}

/* Right: Mini logo */
.footer-right {
    display: flex;
    align-items: center;     /* vertically center */
}

.footer-right img {
    max-height: 40px;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.image-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.section-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.section-img.hovered {
    opacity: 0.6;
    transform: scale(1.02);
}

.overlay-text {
    font-family: 'Geom', Arial, sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    color: #ffdd57;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0,0,0,0.7);

    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    text-align: center;
    font-size: clamp(0.9rem, 2.5vw, 1.4rem);
    line-height: 1.4;
}

.overlay-text p {
    white-space: nowrap;       /* keep text on one line */
    overflow: hidden;          /* prevent overflow from breaking layout */
    text-overflow: ellipsis;   /* optional: show "..." if too long */
}

.overlay-text.visible {
    opacity: 1;
}


/* Hover effect for desktop */
.image-container:hover .overlay-text {
    opacity: 1;
}

.image-container:hover .section-img {
    opacity: 0.6;
    transform: scale(1.02);
}


/* 2x2 grid */
.grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns of equal width */
    grid-gap: 10%;                        /* space between cells */
}

/* Optional: style paragraphs inside grid */
.grid-2x2 p {
    margin: 0;
    font-size: 0.8em;
}


.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;                /* spacing scales with font size */
    justify-content: center;
    margin-top: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5em;              /* space between icon and text */
    padding: 0.6em 1em;      /* relative padding, smaller on mobile */
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    max-width: 280px;        /* cap the button width */
    width: 100%;             /* allow it to scale on small screens */
    box-sizing: border-box;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
    flex: 0 1 auto;          /* prevent flex stretching */
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);   /* subtle shadow behind button */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5); /* subtle shadow on text */
}

.social-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Instagram style */
.social-btn.instagram {
    background: linear-gradient(135deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    color: #fff; /* make text white so it contrasts better on multicolor gradient */
}

/* YouTube style */
.social-btn.youtube {
    background: linear-gradient(135deg, #a80101, #FF3333, #FF0000);
    color: #fff;
}

/* Button icons */
.social-btn-icon {
    width: 24px;
    height: 24px;
}

/* Events section */
.events-section {
    padding: 40px 5vw;
    text-align: center;
}

/* Grid layout */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* Posters */
.events-grid img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover effect */
.events-grid img:hover {
    transform: scale(1.05);
    opacity: 0.85;
}




/* Event card */
.event-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Poster image */
.event-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover effect */
.event-card img:hover {
    transform: scale(1.05);
    opacity: 0.85;
}

/* Caption text */
.event-caption {
    margin-top: 10px;
    font-size: 0.95em;
    color: #ccc;
    line-height: 1.4;
    text-align: center;
}

/* Title inside caption */
.event-caption strong {
    font-family: 'Inter', Arial, sans-serif;
    text-shadow: 0 0 10px rgba(0,0,0,0.7);
    color: #ffdd57;
    font-size: 1em;
}



.page-header {
    position: relative;
    width: 100%;
    height: 30vh;
    min-height: 220px;
    max-height: 420px;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .page-header {
        height: 30vh;
        max-height: 600px;
    }
}

.page-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 46%;  /*   better crop for desktop */
    display: block;
}

.header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-overlay h1 {
    color: rgba(255, 221, 87, 0.8); /* semi-transparent white text */
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6); /* subtle shadow effect */
    margin: 0;
    transform: translateY(-30%); /* Moves the title upwards */
}



.external-link {
    display: inline-block;
    margin: 10px 0;
    color: rgba(255, 221, 87, 1);
    font-weight: bold;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.external-link:hover {
    opacity: 0.85;
    transform: translateX(4px);
}



/* Video slider */
.video-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto 40px auto;
    overflow: hidden;
}

/* Track */
.video-track {
    display: flex;
    transition: transform 0.4s ease;
}

/* Single video */
.video-item {
    min-width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #ffdd57;
    border: none;
    font-size: 2rem;
    padding: 5px 12px;
    cursor: pointer;
    z-index: 10;
    border-radius: 6px;
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

.slider-btn:hover {
    background: rgba(0,0,0,0.8);
}



.image-slider {
    position: relative;
    width: 97%;
    max-width: 900px;
    aspect-ratio: 4 / 3;        /* keeps 4:3 ratio */
    margin: 30px auto;
    overflow: hidden;
    border-radius: 16px;
    background:  rgba(30,30,40,0.85);
     margin-bottom: 10px;
}

/* Track: flex container */
.img-track {
    display: flex;
    transition: transform 0.4s ease;
    height: 100%;
}

/* Each slide: same size as container */
.slide {
    flex: 0 0 100%;             /* each slide takes full container width */
    display: flex;
    justify-content: center;     /* center image horizontally */
    align-items: center;         /* center image vertically */
    height: 100%;
}

/* Images: fit inside slide */
.slide img {
    max-width: 100%;             /* horizontal images fill width */
    max-height: 100%;            /* vertical images fill height */
    width: auto;
    height: auto;
    object-fit: contain;         /* ensures full image is visible */
    display: block;
}

/* Arrows */
.img-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #ffdd57;
    border: none;
    font-size: 2rem;
    padding: 5px 12px;
    cursor: pointer;
    z-index: 10;
    border-radius: 6px;
}

.img-btn.prev { left: 10px; }
.img-btn.next { right: 10px; }

.img-btn:hover {
    background: rgba(0,0,0,0.85);
}




/* CTA link */
.cta-link {
    margin-top: 0;
    display: flex;
    justify-content: center; /* Horizontally center the image */
    align-items: center;     /* Vertically center the image */
}

.cta-link img {
    max-width:35%;          /* image will not exceed container width */
    height: auto;            /* keep aspect ratio */
    display: block;          /* remove small bottom spacing */
}


#contact h2 {
    word-break: break-word;
    overflow-wrap: anywhere;
    text-align: center;
    max-width: 100%;
}


.more-section {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(30,30,40,0.85);
    border-radius: 8px;
}

.more-container {
    display: flex;
    gap: 30px;           /* space between links and player */
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;      /* stack on mobile */
}

.more-links {
    flex: 1 1 300px;     /* links take at least 300px */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.more-links .external-link {
    display: inline-block;
    font-size: 1rem;
    color: #f9f4e3ff;
    text-decoration: none;
}

.more-links .external-link:hover {
    text-decoration: underline;
}

.spotify-player {
    flex: 1 1 400px;      /* player takes at least 400px */
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}


.spaced {
    margin-bottom: 100px;
}