/* ==============================
   HERO HOME
============================== */

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
  	background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.2) 100%),
                url('../img/Grill-2.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.hero-1 {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
  	background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.2) 100%),
                url('../img/Grill-1.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.hero-2 {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
  	background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.2) 100%),
                url('../img/mi-pueblito.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}


.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    text-transform: uppercase;
    letter-spacing: 10px;
    margin: 20px 0;
    line-height: 1.1;
}

.line-decorator {
    display: block;
    width: 60px;
    height: 1px;
    background: var(--light);
    margin-bottom: 20px;
}

/* ==============================
   GALERĶA MINIMAL
============================== */

.section-gallery {
    padding: 100px 10%;
    background-color: #ffffff;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-title {
    font-size: 2.2rem;
    font-weight: 400;
    margin-top: 10px;
}

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

.img-small-wrapper {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: #f5f5f5;
    margin-bottom: 20px;
}

.img-small-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.item-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 5px;
}

.item-name {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    color: #1a1a1a;
}

.item-line {
    width: 0;
    height: 1px;
    background-color: var(--primary);
    margin-top: 8px;
    transition: width 0.4s ease;
}

.gallery-item:hover .item-line {
    width: 20px;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* Responsive galerķa */
@media (max-width: 768px) {
    .clean-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================
   SECTION QUOTE PARALLAX
============================== */

.section-quote {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
}

.quote-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url(../../img/Bar-rest.jpg);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.quote-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.quote-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.quote-icon {
    font-size: 4rem;
    display: block;
    line-height: 1;
    margin-bottom: 20px;
}

.main-quote {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: 300;
}

.quote-decorator {
    width: 40px;
    height: 1px;
    background: #ffffff;
    margin: 40px auto 0;
}

/* HERO FADE IN */

.hero-inner {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFade 1.4s ease forwards;
    animation-delay: 0.6s;
}

.brand-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    text-transform: uppercase;
    letter-spacing: 8px;
    line-height: 1.1;
}

.hero-desc {
    font-family: var(--font-sans);
    font-weight: 300;
    letter-spacing: 2px;
    margin-top: 15px;
    opacity: 0.9;
}

@keyframes heroFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}