/* ========================================= */
/* LA VINIA – INDEX PAGE (HOMEPAGE) FINAL    */
/* Premium Black/Gold Hero + Features        */
/* ========================================= */

/* ----------------------------------------- */
/* HERO CONTAINER                            */
/* ----------------------------------------- */

.hero-container {
    max-width: 1100px;
    margin: 2.5rem auto 0 auto;
    padding: 0 1.25rem;
}

/* ----------------------------------------- */
/* HERO BLOCK                                 */
/* ----------------------------------------- */

.hero-block {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    margin-bottom: 3.2rem;
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 25px 60px rgba(0,0,0,0.85);

    min-height: 420px;
    background: #000;

    opacity: 0;
    animation: fadeContainer 1.2s ease-out forwards;
}

/* Fade-in animation */
@keyframes fadeContainer {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------- */
/* HERO IMAGE                                 */
/* ----------------------------------------- */

.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.55);

    transform: scale(1);
    animation: heroZoom 12s ease-in-out infinite;
}

/* Soft Zoom Effect */
@keyframes heroZoom {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.06); }
    100% { transform: scale(1); }
}

/* ----------------------------------------- */
/* HERO CONTENT TEXT + CTA                    */
/* ----------------------------------------- */

.hero-content {
    position: relative;
    z-index: 3;

    padding: 3rem 2.5rem;
    max-width: 750px;

    opacity: 0;
    animation: fadeInHero 1.4s ease-out forwards;
}

/* Fade-in text animation */
@keyframes fadeInHero {
    0%   { opacity: 0; transform: translateY(26px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-content h2 {
    font-family: "Times New Roman", serif;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 2.1rem;
    margin-bottom: 0.6rem;

    background: linear-gradient(90deg,
        #a87d2c, #d5a546, #f5e2a6, #d5a546, #a87d2c);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-size: 300%;
    animation: goldShine 6s ease-in-out infinite;
}

/* Gold Light Sweep */
@keyframes goldShine {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 1.8rem;
}

/* ----------------------------------------- */
/* CTA BUTTON                                 */
/* ----------------------------------------- */

.cta-btn {
    display: inline-block;
    padding: 0.9rem 2.1rem;
    border-radius: 999px;

    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;

    background: linear-gradient(90deg, #d5a546, #8a5b16);
    color: #050505;

    border: 1px solid rgba(213,165,70,0.55);
    box-shadow: 0 0 22px rgba(213,165,70,0.4);
    transition: 0.25s ease-out;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(213,165,70,0.55);
}

/* ----------------------------------------- */
/* CONTENT PANEL UNDER HERO                   */
/* ----------------------------------------- */

.panel {
    background: #0a0a0a;
    padding: 2rem;
    max-width: 850px;
    margin: 0 auto;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);

    opacity: 0;
    animation: fadePanel 1s ease-out forwards;
}

@keyframes fadePanel {
    0% { opacity:0; transform: translateY(20px); }
    100% { opacity:1; transform: translateY(0); }
}

.panel-title {
    font-family: "Times New Roman", serif;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* ----------------------------------------- */
/* FEATURES SECTION                            */
/* ----------------------------------------- */

.features {
    max-width: 1100px;
    margin: 3rem auto 4rem auto;
    padding: 0 1.25rem;

    display: flex;
    justify-content: center;
    gap: 2rem;

    flex-wrap: wrap;
}

.feature-box {
    background: #0b0b0b;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    width: 300px;
    text-align: center;

    box-shadow: 0 15px 35px rgba(0,0,0,0.4);

    opacity: 0;
    animation: fadeFeatures 1.2s ease-out forwards;
}

@keyframes fadeFeatures {
    0%   { opacity: 0; transform: translateY(24px); }
    100% { opacity: 1; transform: translateY(0); }
}

.feature-icon img {
    width: 66px;
    margin-bottom: 1rem;
}

.feature-box h3 {
    color: var(--gold);
    font-family: "Times New Roman", serif;
    letter-spacing: 0.12em;
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
}

.feature-box p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ----------------------------------------- */
/* MOBILE RESPONSIVE                          */
/* ----------------------------------------- */

@media (max-width: 700px) {
    .hero-content {
        padding: 2rem 1.4rem;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .feature-box {
        width: 100%;
    }

    .hero-image {
        background-position: center top;
    }
}
