@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@500;600&family=Inter:wght@200;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #2a2a2a;
    background: #f5f5f0;
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-size: 16px;
    font-weight: 400;
}

h1, h2 {
    font-weight: 600;
}

h1 {
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 18px;
}

h2 {
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.1em;
    font-size: 16px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('images/hero-main.jpg');
    background-size: cover;
    background-position: center 90%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 15vh;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

/* Hero Animation */
.hero-animate {
    animation: slideDown 1.2s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.logo {
    letter-spacing: 0.5rem;
    margin-bottom: 8rem;
}

.hero-subtitle {
    letter-spacing: 15%;
    margin-bottom: 1.5rem;
}

.hero-text {
    line-height: 1.8;
}

/* Section Title */
.section-title {
    text-align: center;
    padding: 5rem 2rem 3rem;
    background: #f5f5f0;
}

.section-title h2 {
    letter-spacing: 0.3rem;
}

/* Pillars Section */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 2rem;
}

.pillar {
    text-align: center;
}

.pillar-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: url('images/concept-materia.jpg');
    background-size: cover;
    background-position: center;
    margin-bottom: 1.5rem;
}

.pillar-ritmo {
    background: url('images/concept-ritmo.jpg');
    background-size: cover;
    background-position: center;
}

.pillar-precision {
    background: url('images/concept-precision.jpg');
    background-size: cover;
    background-position: center;
}

.pillar h2 {
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
}

.pillar p {
    line-height: 1.6;
    color: #555;
}

/* Gallery Section */
.gallery-section {
    padding: 3rem 2rem;
}

.gallery-grid-2 {
    display: flex;
    gap: 1rem;
    height: 80vh;
    max-height: 760px;
}

.gallery-item:nth-child(1) {
    flex: 1;
    background-image: url('images/concept-structure-01.jpg');
}

.gallery-item {
    aspect-ratio: 3/4;
    background-size: cover;
    background-position: center;
}

.gallery-item:nth-child(2) {
    flex: 2;
    background-image: url('images/concept-structure-02.jpg');
}

/* Text Section */
.text-section {
    text-align: center;
    padding: 4rem 2rem 2rem;
}

.text-section h2 {
    letter-spacing: 0.25rem;
    margin-bottom: 1rem;
}

.text-section p {
    color: #555;
}

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

.event {
    text-align: center;
}

.event-image {
    width: 100%;
    aspect-ratio: 3/4;
    background-position: center;
    margin-bottom: 1rem;
}
.event-design-house {
    background: url('images/event-design-house.jpg');
    background-size: 130%;
    background-position: center 100%;
}
.event-feria {
    background-image: url('images/event-feria-territorio.jpg');
    background-size: cover;
    background-position: center;
}

.event-art {
    background-image: url('images/event-art-week.jpg');
    background-size: 130%;
    background-position: center 100%;
}

.event-diseno {
    background-image: url('images/event-diseno-contempo.jpg');
    background-size: 180%;
    background-position: 60% 40%;
}

.event h2 {
    letter-spacing: 0.15rem;
}

/* Solana Section */
.solana {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('images/collection-solana.jpg');
    background-size: cover;
    background-position: center 60%;
    background-attachment: fixed;
    padding: 8rem 2rem;
    text-align: center;
    color: #fff;
    margin: 4rem 0 0 0;
    height: 640px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solana-content h2 {
    letter-spacing: 0.3rem;
    margin-bottom: 1.5rem;
}

.solana-content p {
    
}

/* Footer */
.footer {
    background: #6b6b6b;
    color:#F3EBD9;
    padding: 4rem 2rem;
}

.footer-content {
}

.footer-section {
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-section h3 {
    letter-spacing: 0.2rem;
    white-space: nowrap;
}

.distributor {
    text-align: center;
}

.distributor h4 {
    letter-spacing: 0.15rem;
    margin-bottom: 1.5rem;
}

.distributor-name {
    margin-bottom: 0.25rem;
}

.distributor p {
    color: #ddd;
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin: 3rem 0;
}

.footer-brand {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    letter-spacing: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.footer-link {
    color: #fff;
    text-decoration: underline;
    letter-spacing: 0.1rem;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 0.7;
}

/* Tablet - 800-1279px */
@media (max-width: 1279px) and (min-width: 800px) {
    .logo {
        
    }

    .pillars {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

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

    .gallery-grid-2 {
        gap: 1.5rem;
        height: auto;
        max-height: inherit;
    }

    .footer-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-section h3 {
        margin-bottom: 2rem;
    }

    .footer-brand {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Mobile - 1-799px */
@media (max-width: 799px) {
    .logo {
        letter-spacing: 0.3rem;
    }

    .hero-subtitle {
        letter-spacing: 0.2rem;
    }

    .hero-text {
        
    }

    .pillars {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 1.5rem;
    }

    .gallery-grid-2 {
        flex-direction: column;
        gap: 1.5rem;
        height: auto;
        max-height: inherit;
    }

    .events {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .section-title {
        padding: 3rem 1.5rem 2rem;
    }

    .section-title h2 {
        
    }

    .text-section {
        padding: 3rem 1.5rem 1.5rem;
    }

    .solana {
        padding: 5rem 1.5rem;
    }

    .solana-content h2 {
        
    }

    .footer {
        padding: 3rem 1.5rem;
    }

    .footer-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-section h3 {
        margin-bottom: 2rem;
    }

    .footer-brand {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
