/* Stiluri specifice pentru pagina Home */

    /* Hero Section - specific pentru prima pagină */
.hero-old {
    /*background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),*/
    /*url('../../assets/img/hotelsolacasa.webp');*/
    background: linear-gradient(
            180deg,
            rgba(251, 242, 237, 0.25) 0%,    /* #FBF2ED cu opacitate 0.8 */
            rgba(198, 138, 67, 0.25) 100%     /* #C68A43 cu opacitate 0.8 */
    ),
    url('../../assets/img/hotel-sol-panorama.webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}
.hero {
    background:
            linear-gradient(
                    90deg,
                    rgba(0, 0, 0, 0.7) 0%,
                    rgba(0, 0, 0, 0.3) 50%,
                    rgba(0, 0, 0, 0.7) 100%
            ),
            url('../../assets/img/hotel-sol-panorama.webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    /* Optimizare LCP */
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
    /*background-size: 1200px; !* Limitează dimensiunea *!*/
}
/* Browserul oricum o va scala */
@media (max-width: 768px) {
    .hero {
        background-image: url('/assets/img/hotel-sol-panorama.webp');
        /*background-size: 600px;*/
    }
}

.hero-content {
    max-width: 900px;
    padding: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4.5em;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.hero h2 {
    font-size: 2.5em;
    font-weight: 300;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero .location {
    font-size: 1.75em;
    font-weight: 500;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Welcome Section */
.welcome {
    padding: 100px 50px;
    background: white;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.welcome-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.welcome-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.highlight-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.welcome-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--gold-dark) 0%, #4A3A1A 100%);
    padding: 80px 50px;
    text-align: center;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1em;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Grid */
.features {
    padding: 100px 50px;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #777;
    line-height: 1.6;
}

/* Aqua Park Preview */
.aquapark {
    padding: 100px 50px;
    background: white;
}

.aquapark-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.aquapark-text h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.aquapark-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.aquapark-features {
    list-style: none;
    margin: 30px 0;
}

.aquapark-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.aquapark-features li:before {
    content: "✓";
    color: #ff6b6b;
    font-weight: bold;
    font-size: 1.2em;
}

.aquapark-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url('../../assets/img/hotel-sol-panorama.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 50px;
    text-align: center;
    color: white;
}

.cta span {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Responsive pentru pagina home */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5em; }
    .hero h2 { font-size: 1.5em; }

    .welcome-content,
    .aquapark-content {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta span { font-size: 2em; }
    .cta-buttons { flex-direction: column; }

    .welcome,
    .features,
    .aquapark,
    .stats,
    .cta {
        padding: 50px 20px;
    }
}