body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: #1a1a1a;
    color: #fff;
    line-height: 1.6;
}

.navbar {
    background: rgba(0, 0, 0, 0.95);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(211, 201, 166, 0.2);
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    padding: 1rem 0;
}

.navbar-brand {
    color: #fff;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link {
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
    margin-left: 1.5rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.nav-link:hover {
    color: #d3c9a6;
    transform: translateY(-2px);
}
.hero {
    height: 100vh;
    min-height: 400px;
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(26, 26, 26, 0.4));
    z-index: 1;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(211, 201, 166, 0.2);
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    color: #d3c9a6;
    font-weight: 400;
}

.btn-primary {
    background: #d3c9a6;
    color: #1a1a1a;
    border: none;
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #c0b391;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(211, 201, 166, 0.4);
}

.section {
    padding: 5rem 0;
}

.story-section {
    background: #1a1a1a;
}

.story-section h2 {
    color: #d3c9a6;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.story-section p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.story-section .row {
    align-items: center;
}

.story-section img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.story-section img:hover {
    transform: scale(1.02);
}

.team-section {
    background: #1a1a1a;
    padding: 5rem 0;
}

.team-section h2 {
    color: #d3c9a6;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
}

.team-member {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(211, 201, 166, 0.3);
}

.team-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.team-member h4 {
    color: #d3c9a6;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.cta-section {
    background: #1a1a1a;
    padding: 5rem 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    color: #d3c9a6;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

footer {
    background: #1a1a1a;
    color: #fff;
    padding: 2.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(211, 201, 166, 0.2);
}

footer a {
    color: #d3c9a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #c0b391;
}

/* Responsive Design */
@media (max-width: 576px) {
    .hero {
        height: 100vh;
        min-height: 500px;
        padding: 1rem;
        position: relative;
        overflow: hidden;
    }
    .hero::before {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(26, 26, 26, 0.5));
    }
    .hero-content {
        padding: 1.5rem;
        text-align: center;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 15px;
        box-shadow: 0 0 15px rgba(211, 201, 166, 0.2);
    }
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        color: #fff;
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        color: #d3c9a6;
    }
    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        margin-bottom: 1rem;
    }

    .story-section .row {
        flex-direction: column-reverse;
    }
    .story-section .col-md-6 {
        margin-bottom: 2rem;
    }
    .story-section h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    .story-section p {
        font-size: 1rem;
        text-align: center;
    }
    .story-section img {
        border-radius: 10px;
        margin-bottom: 1rem;
    }

    .team-section .row {
        flex-direction: column;
    }
    .team-section .col-md-4 {
        margin-bottom: 2rem;
    }
    .team-section h2 {
        font-size: 1.8rem;
    }
    .team-img {
        height: 150px;
    }
    .team-member h4 {
        font-size: 1.2rem;
    }
    .team-member p {
        font-size: 0.9rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
    .cta-section p {
        font-size: 1rem;
    }
    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }

    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    .nav-link {
        margin-left: 0;
        margin-top: 0.5rem;
        font-size: 0.9rem;
    }
    .navbar-brand {
        font-size: 1.5rem;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .hero {
        height: 80vh;
        min-height: 350px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .story-section h2 {
        font-size: 2rem;
    }
    .story-section .col-md-6 {
        flex: 0 0 48%;
    }
    .team-section h2 {
        font-size: 2rem;
    }
    .team-img {
        height: 180px;
    }
    .cta-section h2 {
        font-size: 2.2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    .hero p {
        font-size: 1.3rem;
    }
    .story-section h2 {
        font-size: 2.2rem;
    }
    .team-section h2 {
        font-size: 2.2rem;
    }
    .team-img {
        height: 200px;
    }
    .cta-section h2 {
        font-size: 2.5rem;
    }
}