/* ========================================
   LANDING PAGES (Familie / Corporate / Evenimente)
======================================== */

/* HERO landing — mai mic decât homepage */

.landing-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: var(--white);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.landing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 51, 44, 0.7), rgba(13, 51, 44, 0.45));
}

.landing-hero .container {
    position: relative;
    z-index: 2;
}

.landing-hero-content {
    max-width: 700px;
    padding: 70px 0;
}

.landing-hero .eyebrow {
    display: inline-block;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.landing-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.25rem);
    margin-bottom: 18px;
}

.landing-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 26px;
}

/* INTRO */

.landing-intro {
    padding: 70px 0 40px;
    text-align: center;
}

.intro-statement {
    padding: 80px 0;
}

.intro-statement .statement {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 2.6vw, 1.7rem);
    line-height: 1.4;
    color: var(--primary);
    max-width: 880px;
    margin: 16px auto 0;
    letter-spacing: 0.3px;
}

.intro-statement .statement strong {
    color: var(--accent);
    font-weight: 600;
}

.landing-intro p {
    max-width: 740px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* DIFERENȚIATOR (bandă highlighted) */

.differentiator {
    background: var(--primary);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.differentiator p {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

.differentiator strong { color: var(--accent); }

/* BENEFICII */

.benefits {
    padding: 70px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 28px 20px;
    background: var(--light-bg);
    border-top: 3px solid var(--accent);
}

.benefit-card .icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.benefit-card h3 { margin-bottom: 8px; font-size: 1.1rem; }

.benefit-card p { color: var(--text-muted); font-size: 0.95rem; }

@media (max-width: 768px) {
    .benefits-grid { grid-template-columns: 1fr; }
}

/* CARD CAZARE / SERVICIU (mare) */

.feature-block {
    padding: 70px 0;
    background: var(--light-bg);
}

.feature-card {
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: var(--shadow);
}

.feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 380px;
}

.feature-card-body {
    padding: 44px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card h2 { margin-bottom: 16px; }

.feature-card .feature-list {
    list-style: none;
    margin: 18px 0 22px;
}

.feature-card .feature-list li {
    padding: 6px 0;
    color: var(--text-dark);
    font-size: 0.98rem;
}

.feature-card .feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-card .feature-list li .icon {
    color: var(--accent);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.feature-card .price-line {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.feature-card .price-line strong { color: var(--accent); font-size: 1.5rem; }

@media (max-width: 880px) {
    .feature-card { grid-template-columns: 1fr; }
    .feature-card img { min-height: 240px; }
}

/* PILONI (3 cards corporate) */

.pillars {
    padding: 70px 0;
}

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

.pillar-card {
    background: var(--white);
    padding: 36px 26px;
    border: 1px solid var(--border-soft);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pillar-card:hover {
    box-shadow: var(--shadow-hover);
}

.pillar-card .icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.pillar-card h3 { margin-bottom: 10px; }

.pillar-card p { color: var(--text-muted); font-size: 0.95rem; }

@media (max-width: 768px) {
    .pillars-grid { grid-template-columns: 1fr; }
}

/* ACTIVITĂȚI / LISTĂ */

.activities {
    padding: 60px 0;
    background: var(--light-bg);
}

.activities-list {
    list-style: none;
    max-width: 760px;
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.activities-list li {
    background: var(--white);
    padding: 16px 20px;
    font-weight: 500;
    border-left: 3px solid var(--accent);
}

@media (max-width: 600px) {
    .activities-list { grid-template-columns: 1fr; }
}

/* ELEMENT COMERCIAL (preț central) */

.commercial-strip {
    padding: 50px 0;
    text-align: center;
    background: var(--white);
}

.commercial-strip .price-callout {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.commercial-strip .price-callout strong {
    color: var(--accent);
    font-size: 2.2rem;
}

/* FOCUS GASTRONOMIC */

.gastronomy {
    padding: 80px 0;
    background: url("../poze/Locatie_peluza-768x512.jpg") center/cover no-repeat fixed;
    position: relative;
    color: var(--white);
}

.gastronomy::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(13, 51, 44, 0.78);
}

.gastronomy .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.gastronomy h2 { color: var(--white); margin-bottom: 20px; }

.gastronomy .quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 22px;
    color: var(--accent);
}

.gastronomy p { color: rgba(255, 255, 255, 0.9); font-size: 1.05rem; }

/* DETALII TEHNICE (info pills) */

.tech-details {
    padding: 60px 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.tech-item {
    background: var(--light-bg);
    padding: 28px;
    text-align: center;
}

.tech-item .icon {
    color: var(--primary);
    margin-bottom: 12px;
}

.tech-item h4 { margin-bottom: 6px; }

.tech-item p { color: var(--text-muted); font-size: 0.95rem; }

@media (max-width: 600px) {
    .tech-grid { grid-template-columns: 1fr; }
}

/* URGENCY (limitat lunar) */

.urgency-strip {
    background: var(--accent);
    color: var(--white);
    padding: 22px 0;
    text-align: center;
    font-weight: 600;
    font-size: 1.05rem;
}

/* GALERIE EVENIMENTE */

.gallery-section {
    padding: 80px 0;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--light-bg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-item figcaption {
    position: absolute;
    inset: auto 0 0 0;
    background: linear-gradient(transparent, rgba(13, 51, 44, 0.85));
    color: var(--white);
    padding: 30px 18px 16px;
}

.gallery-item .event-date {
    display: block;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.gallery-item .event-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

/* FINAL CTA */

.final-cta {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin: 0 auto 28px;
    font-size: 1.05rem;
}

/* FORM CORPORATE */

.contact-form {
    max-width: 560px;
    margin: 0 auto;
    background: var(--white);
    padding: 36px 32px;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    text-align: left;
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 6px;
}

.contact-form .subtitle {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 22px;
}

.contact-form .form-row {
    margin-bottom: 14px;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-soft);
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form textarea {
    resize: vertical;
    min-height: 90px;
}
