@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
html, body {
    overflow-x: hidden;    
}
body {
    width: 100vw;
    height: max-content;
    position: relative;
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #111;
    line-height: 1.6;
}
/* - styles - */
li, a {
    list-style: none;
    text-decoration: none;
}



/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: #fff;
}
    .nav-logo a {
        font-family: "Archivo", sans-serif;
        font-weight: 500;
    }
    nav ul {
        position: relative;
        list-style: none;
        display: flex;
        gap: 2rem;
    }
    nav ul::after {
        position: absolute;
        content: '';
        bottom: -1rem;
        right: -1rem;
        width: 250px;
        background-color: #000;
        height: 2px;
    }
        nav a {
        text-decoration: none;
        color: #111;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.9rem;
        position: relative;
        }
            nav a::after {
            content: '';
            display: block;
            width: 0;
            height: 2px;
            background: #111;
            transition: width 0.3s;
            position: absolute;
            bottom: -5px;
            left: 0;
            }
            nav a:hover::after {
                width: 100%;
            }
            .nav-logo a:hover::after {
                width: 0%;
            }

/* Hero Section en grid */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem 6%;
}
    .hero-text {
        max-width: 600px;
    }
    .hero-line {
        position: relative;
        height: 2px;
        background-color: #000;
        width: 250px;
        margin-bottom: 2rem;
        margin-left: -3rem;
        overflow: visible;
    }
    .hero-line::after {
        position: absolute;
        content: '';
        top: -1rem;
        left: 1rem;
        width: 2px;
        background-color: #000;
        height: 250px;
    }
        .hero-text h1 {
            font-family: 'Anton', sans-serif;
            font-size: 4rem;
            letter-spacing: -1px;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }
        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            color: #444;
        }
        .hero-text a {
            display: inline-block;
            padding: 1rem 2rem;
            background-color: #111;
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            border-radius: 6px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transform: translateY(0);
        }
        .hero-text a:hover {
            background-color: #000;
            transform: scale(1.05) translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
        }

    .hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    }
        .hero-image img {
            max-width: 100%;
            max-height: 600px;
            border-radius: 8px;
            object-fit: cover;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

/* Section gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 5rem 6%;
    background-color: #fafafa;
}
    .gallery-item {
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }
        .gallery-item:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        .gallery-item:hover img {
            transform: scale(1.05);
        }
.zoomable {
    cursor: pointer;
    transition: transform 0.3s;
}

/* Section lightbox */
#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}
    #lightbox img {
        max-width: 80%;
        max-height: 80%;
    }
    #close {
        position: absolute;
        top: 20px;
        right: 40px;
        font-size: 30px;
        color: white;
        cursor: pointer;
    }

/* Responsive */
@media (max-width: 768px) {
    nav {
        gap: 1rem;
        justify-content: center;
    }    
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
}