/* Hero Wrapper */
.hero-wrapper {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5)), url('/static/images/landing_page_image.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    border-bottom-left-radius: 48px;
    border-bottom-right-radius: 48px;
    position: relative;
}

/* Hero Section */
.hero {
    padding: 120px 0 160px; /* Increased bottom padding for better spacing */
}

h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: clamp(40px, 5vw + 1rem, 64px);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    animation: heroTextIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

@keyframes heroTextIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p {
    max-width: 600px;
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
    animation: heroTextIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero .btn {
    animation: heroTextIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

/* Intro Section */
.intro {
    padding: 80px 0;
}

h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: clamp(32px, 4vw + 1rem, 48px);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.intro-text {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--text-muted);
    max-width: 800px;
    line-height: 1.4;
}

/* Gallery Section */
.gallery {
    padding: 40px 0 80px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-item {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: #1a1a1a;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.grid-item:hover {
    transform: scale(1.02);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.grid-item:hover img {
    transform: scale(1.1);
}

.placeholder-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e0e0e0;
    color: #000;
    font-size: 24px;
    font-weight: 500;
}

/* Footer Highlight Section */
.footer-highlight {
    padding: 80px 0 120px;
}

.footer-highlight .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-highlight h3 {
    font-size: clamp(32px, 4vw + 1rem, 48px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.stats {
    max-width: 300px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    text-align: right;
}

@media (max-width: 992px) {
    /* Gallery Grid Tablet */
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Hero */
    .hero {
        padding: 80px 0 100px;
    }
    
    .hero-wrapper {
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
    }

    /* Gallery */
    .grid {
        grid-template-columns: 1fr;
    }

    /* Footer Highlight */
    .footer-highlight .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .stats {
        text-align: left;
        max-width: 100%;
    }
}

