* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    background: linear-gradient(
            to right, 
            rgba(18, 86, 48, 0.4),
            transparent 50%
        ),
        radial-gradient(
            ellipse at bottom right,
            #125630,
            #000 75%
        );
    color: #ffe2b5;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.header {
    padding: 1.5rem 2rem;
    background:rgba(13, 59, 33, 0.6), radial-gradient(
        ellipse at center, 
        rgb(9, 15, 9),
        transparent 50%
    ); 
    position: relative;
    z-index: 10;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo img {
    height: 30px;
    width: auto;
    border-radius: 10px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ffe2b5;
    font-weight: 500;
}


.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    font-weight: 500;
}

.btn-primary {
    background-color: rgb(2, 123, 53);
    color: #000;
    border: 1px solid transparent;
}

.btn-primary:hover {
    background-color: transparent;
    border: 1px solid #bfa175;
    color: #ffe2b5;
}
.btn-outline {
    background-color: transparent;
    border: 1px solid #bfa175;
    color: #ffe2b5;
}
.btn-outline:hover {
    background-color: rgb(2, 123, 53);
    color: #000;
    border: 1px solid transparent;
}

.hero {
    margin: 0 auto;
    padding: 50px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-badge {
    color: #ffe2b5;
    background-color: #000;
    border: .5px solid #147a39;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    max-width: 600px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    color: #ffe2b5;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.hero-gradient-bg {
    position: absolute;
    top: -100px;
    width: 800px;
    height: 400px;
    z-index: 1;
    filter: blur(50px);
}

.logo-wall {
    padding: 15px;
    border-bottom: 1px solid #222;
    background-color: #000;
}

.logo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.logo-item {
    color: #7b6d58;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sub-heading {
    color: #22c55e;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.features-section {
    padding: 6rem 3rem;
    display: flow-root;
    gap: 20px;       
    justify-content: center;
}

.grid-two-col {
    display: grid;
    grid-template-columns: 20fr;
    gap: 20px;
    align-items: center;
    width: 50%;
    float: left;
}

.features-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #bfa175;
}

.features-text > p {
    color: #ffe2b5;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background-color: #243326;
    border: 1px solid #333;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: justify;
}
.feature-item:hover {
    transform: translateY(-5px);
    background-color: #2d4230;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}
.feature-item.active {
    background-color: #222;
    border-color: #555;
    color: #ffe2b5;
}

.cta-simple {
    margin-top: 6rem;
    padding: 4rem 0;
    text-align: center;
    background: radial-gradient(
        ellipse at center, 
        rgb(9, 15, 9),
        transparent 50%
    );
}

.cta-content {
    max-width: 650px;
}

.cta-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: #ffe2b5;
    line-height: 1.6;
}

.optimized-section {
    clear: both;
    position: relative; 
    overflow: hidden; 
}

.optimized-content {
    position: relative;
    z-index: 2; 
}
.optimized-text .sub-heading {
    font-size: 2.5rem;
    text-align: center;
    line-height: 1.3;
    color: #bfa175; 
}
.optimized-text > ul {
    color: #ffe2b5;
    text-align: justify;
    font-size: 1.2rem;
    padding: 1.25rem;
    background-color: #243326; 
    border: 1px solid #333;
    border-radius: 8px;
    transition: all 0.3s ease;
    list-style-type: circle; 
    padding-left: 2rem; 
}
.optimized-text > ul:hover {
    transform: translateY(-5px);
    background-color: #2d4230;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.photo-roll-section {
    padding: 6rem 0;
    background: radial-gradient(
        ellipse at center, 
        rgb(9, 15, 9),
        transparent 50%
    );
    overflow: hidden;
}

.photo-roll-title {
    font-size: 2.75rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #ffe2b5;
}

.photo-roll-wrapper {
    overflow: hidden;
    padding: 1rem 0;
    
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.photo-roll-container {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: scrollLeft 30s linear infinite;
}

.photo-roll-container:hover {
    animation-play-state: paused;
}

.photo-roll-container img {
    height: 300px; 
    width: auto;   
    border-radius: 8px;
    border: 1px solid #333;
    flex-shrink: 0; 
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.footer {
    padding: 25px;
    background-color: rgba(4, 4, 4, 0.6);
}

.footer-container {
    max-width: 1200px;
    display: flex;
    align-items: center;
    color: #bfa175; 
    font-size: 0.9rem;
    margin: 0 auto;
    justify-content: center;
}

.page-header {
    padding: 25px;
    text-align: center;
    background: radial-gradient(
        ellipse at center, 
        rgb(9, 15, 9),
        transparent 50%
    );
    border-bottom: 1px solid #222;
}

.page-header h1 {
    font-size: 2.75rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.1rem;
    color: #ffe2b5;
    max-width: 550px;
}

.contact-section {
    padding: 6rem 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: #ffe2b5;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 3rem auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
    margin-top: 3rem;
}

.contact-card {
    background-color: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background-color: #222;
    border-color: #555;
    transform: translateY(-5px);
}

.contact-card svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #22c55e;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #ffe2b5;
}

.contact-card p {
    color: #bfa175;
    font-size: 1rem;
}

.map-container {
    padding: 15px 100px;
}

.map-container iframe {
    border: 5px solid #000;
    border-radius: 15px;
}

.events-list-section {
    padding: 6rem 0;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-list-item {
    position: relative;
    display: block;
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #333;
}

.event-item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: all 0.5s ease-in-out;
}

.event-item-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 20%, transparent);
    color: #ffe2b5;
    z-index: 3;
    transition: all 0.3s ease;
}

.event-item-description {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    padding: 2rem;
    background-color: rgba(11, 55, 30, 0.95);
    color: #ffe2b5;
    z-index: 2; 
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
}
.event-item-description .btn-outline {
    margin-top: auto;
    align-self: flex-start;
}

.event-item-description h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.event-list-item:hover .event-item-image {
    transform: translateX(-60%); 
}

.event-list-item:hover .event-item-description {
    transform: translateX(0);
}

.event-list-item:hover .event-item-title {
    opacity: 0;
    z-index: 0;
}

event-detail-section {
    padding: 6rem 0;
}

.event-detail-description {
    max-width: 1000px;
    margin: 0 auto 4rem auto;
    color: #ffe2b5;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: justify;
}

.gallery-title {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #ffe2b5;
}

.event-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.event-photo-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.event-photo-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.team-page-section {
    padding: 6rem 0;
}

.team-section-title {
    font-size: 2.75rem;
    text-align: center;
    color: #ffe2b5;
    margin-bottom: 2.5rem;
}

.team-head-container {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.team-head-container .team-card {
    width: 350px;
    max-width: 100%;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.team-card {
    background-color: #243326;
    border-radius: 12px;
    border: 1px solid #333;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
}
.team-grid .team-card {
    width: 280px;
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.team-card-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1; 
    overflow: hidden;
}

.team-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-content {
    padding: 1.5rem 0;
}

.team-card-content h3 {
    font-size: 1.25rem;
    color: #ffe2b5;
    margin-bottom: 0.25rem;
}

.team-card-content p {
    color: #bfa175;
    margin-bottom: 1rem;
    text-align: center;
    justify-content: center;
    font-size: 0.8rem;
}

.team-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social-links a {
    color: #22c55e;
    font-weight: 500;
    font-size: 0.9rem;
}

.team-social-links a:hover {
    text-decoration: underline;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle .dot {
    display: block;
    width: 5px;
    height: 5px;
    background-color: #ffe2b5;
    border-radius: 50%;
    margin: 5px 0;
    transition: all 0.2s ease-in-out;
}

@media (max-width: 992px) {
    .grid-two-col {
        grid-template-columns: 1fr;
    }
    .features-image-box {
        grid-row: 1;
        margin-bottom: 2rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .event-photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero h1, .page-header h1 {
        font-size: 2.5rem;
    }
    .features-text h2, .contact-section h2 {
        font-size: 2rem;
    }
    
    .event-list-item {
        height: 250px;
    }

    .event-item-description {
        width: 100%;
        height: 100%;
        transform: translateY(100%);
    }

    .event-list-item:hover .event-item-image {
        transform: translateX(0);
    }

    .event-list-item:hover .event-item-description {
        transform: translateY(0);
    }
    .event-photo-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .features-section,
    .optimized-section,
    .photo-roll-section,
    .cta-simple,
    .contact-section,
    .events-list-section,
    .event-detail-section,
    .team-page-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .hero {
        padding: 3rem 1.5rem;
    }
    .hero h1 {
        font-size: 2.25rem;
    }
    .hero p {
        font-size: 1rem;
    }

    .grid-two-col {
        width: 100%;
        float: none;
        margin-bottom: 2rem;
    }
    .grid-two-col:last-child {
        margin-bottom: 0;
    }
    .features-text h2 {
        font-size: 1.75rem;
    }

    .optimized-text .sub-heading {
        font-size: 1.75rem;
        line-height: 1.4;
    }
    .optimized-text > ul {
        font-size: 1rem;
    }

    .photo-roll-container {
        gap: 2rem;
    }
    .photo-roll-container img {
        height: 180px;
    }

    .map-container {
        padding: 15px 1.5rem;
    }

    .event-detail-description {
        font-size: 1rem;
    }

    .team-head-container .team-card {
        width: 100%;
        max-width: 350px;
    }
    .team-grid .team-card {
        width: 100%;
        max-width: 350px;
    }
    
    .nav-container {
        flex-wrap: nowrap;
    }

    .nav-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-buttons {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        background-color: #0a0a0a;
        padding: 2rem;
        border-bottom: 1px solid #333;
        z-index: 1000;
    }

    .nav-buttons.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .event-list-item {
        height: auto;
        display: flex;
        flex-direction: column;
        background-color: #243326; 
    }
    .event-item-image {
        position: relative;
        width: 100%;
        height: 180px;
        object-fit: cover;
    }
    .event-item-title {
        position: relative;
        background: none;
        padding-bottom: 0.5rem;
    }
    .event-item-description {
        position: relative;
        width: 100%;
        height: auto;
        transform: none;
        background-color: transparent;
        padding-top: 0;
    }
    .event-item-description .btn-outline {
        margin-top: 1rem;
    }

    .event-list-item:hover .event-item-image {
        transform: none;
    }
    .event-list-item:hover .event-item-description {
        transform: none;
    }
    .event-list-item:hover .event-item-title {
        opacity: 1;
    }
    
    .feature-item {
        text-align: left;
    }
}