
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&display=swap');

:root {
    --primary-black: #222;
    --secondary-black: #444;
    --primary-white: #fff;
    --secondary-white: #f8f8f8;
    --silver: #c0c0c0;
    --section-padding: 4rem 0;
    --header-font: 'Montserrat', sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
    background: linear-gradient(135deg, #c0c0c0, #888888);
    position: relative;
}

/* Background Image */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/bg_smoke.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(50%) opacity(0.8);
    z-index: -1;
    pointer-events: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}
/* Hero Section */

/* Homepage Image */
.hero {
    height: 75vh;
    background-image: url('assets/logo-sec1.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    isolation: isolate;
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--primary-white);
    padding: 0 1rem;
}
.hero-title {
    font-family: var(--header-font);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
    background: linear-gradient(90deg, #c0c0c0, #888888);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 3s ease infinite;
    background-size: 200% auto;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #c0c0c0, #888888);
    animation: underlineGradient 3s ease infinite;
    background-size: 200% auto;
    transform: scaleX(0.8);
}
@keyframes gradientShift {
    0% { 
        background-position: 0% center;
        background: linear-gradient(90deg, #c0c0c0, #888888);
    }
    25% {
        background: linear-gradient(90deg, #888888, #c0c0c0);
    }
    50% {
        background-position: 100% center;
        background: linear-gradient(90deg, #a0a0a0, #686868);
    }
    75% {
        background: linear-gradient(90deg, #686868, #a0a0a0);
    }
    100% { 
        background-position: 0% center;
        background: linear-gradient(90deg, #c0c0c0, #888888);
    }
}
.hero-subtitle {
    font-family: var(--header-font);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
/* Sections */
.section {
    padding: var(--section-padding);
}
.section-title {
    font-family: var(--header-font);
    font-size: calc(1.5rem + 6pt);
    font-weight: 900;
    color: var(--primary-black);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #c0c0c0, #888888);
    transform: scaleX(1);
    transform-origin: left;
    animation: underlineGradient 3s ease infinite;
    background-size: 200% auto;
}
@keyframes underlineGradient {
    0% { 
        background-position: 0% center;
        background: linear-gradient(90deg, #c0c0c0, #888888);
    }
    25% {
        background: linear-gradient(90deg, #888888, #c0c0c0);
    }
    50% {
        background-position: 100% center;
        background: linear-gradient(90deg, #a0a0a0, #686868);
    }
    75% {
        background: linear-gradient(90deg, #686868, #a0a0a0);
    }
    100% { 
        background-position: 0% center;
        background: linear-gradient(90deg, #c0c0c0, #888888);
    }
}
/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.column {
    padding: 1rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

/* Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.event-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-image {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.event-item h3 {
    font-family: var(--header-font);
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.event-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #c0c0c0, #888888);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    animation: underlineGradient 3s ease infinite;
    background-size: 200% auto;
}

.event-item:hover h3::after {
    transform: scaleX(1);
    animation: underlineGradient 3s ease infinite;
}
/* Contact Section */
.contact-info {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
    }

    .gallery-grid,
    .events-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero {
        height: 60vh;
    }
}

@media (max-width: 480px) {
    .gallery-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 2rem 0;
    }

    .hero {
        height: 50vh;
    }
}
