@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Outfit:wght@100;300;500;700&display=swap');

:root {
    --primary: #ffffff;
    --background: #050505;
    --accent: #00f2ff;
    --gray-light: #f5f5f7;
    --gray-dark: #1d1d1f;
    --text-main: #ffffff;
    --text-muted: #a1a1a6;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-weight: 300;
}

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    /* Reduje un poco el padding vertical de 2rem a 1.5rem para compensar el logo más grande */
    padding: 1.5rem 4rem; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.8), transparent);
    backdrop-filter: blur(10px);
}

.logo img {
    height: 90px;
	width: auto;
    filter: invert(1);
    transition: var(--transition);
	image-rendering: -webkit-optimize-contrast;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    transition: var(--transition);
    opacity: 0.7;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, var(--background) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.5rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--accent);
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    font-weight: 100;
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.5;
}

.mouse {
    width: 20px;
    height: 35px;
    border: 1px solid var(--text-main);
    border-radius: 20px;
    position: relative;
}

.mouse::after {
    content: '';
    width: 2px;
    height: 6px;
    background-color: var(--text-main);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-mouse 2s infinite;
}

@keyframes scroll-mouse {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Section Common Styles */
section {
    padding: 8rem 4rem;
    position: relative;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* About Section */
.about {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8rem;
    align-items: center;
}

.about-image {
    position: relative;
    height: 80vh;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 2rem;
}

.fine-text {
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    line-height: 2;
    border-left: 1px solid var(--accent);
    padding-left: 2rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-1 {
    grid-column: 1 / 8;
    height: 600px;
}

.gallery-item-2 {
    grid-column: 8 / 13;
    height: 400px;
    align-self: end;
}

.gallery-item-3 {
    grid-column: 4 / 10;
    height: 500px;
    margin-top: -100px;
}

/* Announcement Section */
.announcement {
    text-align: center;
    background: var(--gray-dark);
    padding: 10rem 4rem;
}

.announcement-title {
    font-size: 4rem;
    margin-bottom: 3rem;
}

.cta-button {
    padding: 1.5rem 4rem;
    background: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: var(--text-main);
    color: var(--background);
}

/* Footer */
footer {
    padding: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-logo img {
    height: 20px;
    filter: invert(1);
    opacity: 0.5;
}

.footer-socials {
    display: flex;
    gap: 2rem;
}

.footer-socials a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

/* Animations Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    nav {
        padding: 2rem;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        grid-column: 1 / -1 !important;
        height: auto !important;
        aspect-ratio: 4/5;
    }

    .gallery-item-3 {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    section {
        padding: 4rem 2rem;
    }
}