
:root {
    --primary-gold: #D4AF37;
    --secondary-brown: #4A3C30;
    --accent-gold: #FFD700;
    --dark-brown: #2C1810;
    --light-gold: #F4E5C2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: white;
    color: var(--dark-brown);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav {
    background: rgba(44, 24, 16, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 2px solid var(--primary-gold);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    height: 80px;
    display: flex;
    align-items: center;
}

.company-logo {
    height: 100%;
    width: auto;
    object-fit: contain;
    margin-right: 20px;
}

.nav-links a {
    color: var(--light-gold);
    text-decoration: none;
    margin-left: 30px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(44, 24, 16, 0.5), rgba(74, 60, 48, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(44, 24, 16, 0.4);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--primary-gold);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    }
    to {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
    }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

section {
    padding: 100px 0;
}

h2 {
    color: var(--primary-gold);
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: rgba(74, 60, 48, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--primary-gold);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.structure {
    background: rgba(74, 60, 48, 0.3);
}

.team-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.team-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.activities {
    background: rgba(44, 24, 16, 0.7);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.activity-card {
    background: rgba(74, 60, 48, 0.3);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--primary-gold);
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-10px);
}

.activity-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.activity-content {
    padding: 20px;
}

.activity-content h3 {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.activity-content p {
    color: var(--light-gold);
    font-size: 0.9rem;
}

.contact-info {
    text-align: center;
    line-height: 2;
}

footer {
    background: var(--secondary-brown);
    padding: 20px 0;
    text-align: center;
    border-top: 2px solid var(--primary-gold);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border: 1px solid var(--primary-gold);
    width: 90%;
    max-width: 900px;
    border-radius: 15px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    color: var(--dark-brown);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: sticky;
    top: 0;
    background: #fff;
    padding: 0 10px;
    z-index: 1002;
}

.close:hover {
    color: var(--primary-gold);
}

.modal-body {
    display: none;
    padding: 20px 0;
    line-height: 1.6;
}

.modal-body p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.modal-body li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.modal-body h3 {
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.modal-body ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-top: 10px;
}

.modal-body li {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    nav .container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        margin-top: 15px;
    }

    .nav-links a {
        margin: 0 10px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}
