/* ========================================
   HOMEPAGE - specific
======================================== */

/* HERO */

.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(13, 51, 44, 0.65), rgba(13, 51, 44, 0.4)),
        url("../poze/Locatie-2r3r37.jpg") center/cover no-repeat;
}

.hero-content {
    max-width: 720px;
    padding: 80px 0;
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 5.5vw, 3.75rem);
    margin-bottom: 18px;
    line-height: 1.15;
}

.hero .sub-headline {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 18px;
}

.hero .price-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    padding: 10px 18px;
    margin-bottom: 30px;
    font-weight: 600;
    border-left: 3px solid var(--accent);
}

.hero .price-tag strong { color: var(--accent); }

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* URGENCY BAR */

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

/* INTRO TEXT */

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

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

/* GRID FACILITĂȚI */

.facilities {
    padding: 60px 0 80px;
}

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

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

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

.facility-icon {
    color: var(--primary);
    margin-bottom: 14px;
}

.facility-card h3 {
    margin-bottom: 8px;
    font-size: 1.15rem;
}

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

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

/* CAZARE — Rezervă Căsuța (carduri cu toggle camere) */

.cazare-preview {
    background: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cazare-preview .eyebrow-pill {
    display: inline-block;
    background: var(--light-bg);
    padding: 8px 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 22px;
}

.cazare-preview h2 {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    margin-bottom: 16px;
}

.cazare-preview .lead {
    max-width: 580px;
    margin: 0 auto 50px;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.cazare-preview .lead strong { color: var(--primary); font-weight: 600; }

.casa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    text-align: left;
    max-width: 1100px;
    margin: 0 auto;
}

.casa-card {
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

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

.casa-photo {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.casa-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.casa-card:hover .casa-photo img { transform: scale(1.04); }

.casa-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}

.casa-tag.tag-orange { background: var(--accent); color: var(--white); }
.casa-tag.tag-green { background: var(--primary); color: var(--white); }
.casa-tag.tag-white { background: var(--white); color: var(--primary); }

.casa-body {
    padding: 24px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.casa-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    margin: 0;
    color: var(--primary);
}

.casa-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.room-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.room-tabs.single { grid-template-columns: 1fr; }
.room-tabs.single .room-tab { cursor: default; }
.room-tabs.single .room-tab:hover { background: var(--primary); color: var(--white); }

.room-tab {
    padding: 11px 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-align: center;
    background: var(--light-bg);
    color: var(--primary);
    border: 0;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    line-height: 1.25;
    letter-spacing: 0.3px;
}

.room-tab:hover { background: #0d332c; color: var(--white); }
.room-tab.active { background: var(--primary); color: var(--white); }

.casa-capacity {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-bg);
    padding: 11px 16px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}

.casa-capacity svg {
    width: 16px;
    height: 16px;
    fill: var(--primary);
    flex-shrink: 0;
}

.casa-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.casa-amenities span {
    padding: 6px 12px;
    background: var(--light-bg);
    color: var(--primary);
    font-size: 0.76rem;
    line-height: 1.2;
    font-weight: 500;
}

.casa-cta {
    margin-top: auto;
    background: var(--secondary);
    color: var(--white);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.82rem;
    text-decoration: none;
    transition: background 0.2s ease;
    font-family: 'DM Sans', sans-serif;
}

.casa-cta:hover { background: var(--secondary-hover); color: var(--white); }

@media (max-width: 960px) {
    .casa-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .casa-grid { grid-template-columns: 1fr; }
}

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

/* OFERTE GRID */

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

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

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

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

.oferta-card.featured {
    border-top: 4px solid var(--accent);
}

.oferta-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.oferta-card .discount-big {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--accent);
    font-weight: 700;
    line-height: 1;
    margin: 12px 0 6px;
}

.oferta-card h3 { margin-bottom: 8px; }

.oferta-card p {
    color: var(--text-muted);
    margin-bottom: 18px;
    font-size: 0.95rem;
}

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

/* SOCIAL PROOF */

.social-proof {
    padding: 80px 0;
    background: var(--light-bg);
}

.proof-headline {
    text-align: center;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    margin-bottom: 50px;
}

.proof-headline strong { color: var(--accent); font-size: 2rem; }

.testimoniale-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.testimonial {
    background: var(--white);
    padding: 28px;
    position: relative;
}

.testimonial::before {
    content: "\201C";
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--accent);
    position: absolute;
    top: 8px;
    left: 16px;
    line-height: 1;
}

.testimonial p {
    font-style: italic;
    margin: 18px 0 14px;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.testimonial-author small {
    display: block;
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

/* HARTA */

.map-section {
    text-align: center;
}

.map-section h3 {
    margin-bottom: 18px;
    font-size: 1.4rem;
}

.map-section iframe {
    width: 100%;
    height: 360px;
    border: 0;
    filter: grayscale(0.2);
}
