:root {
    --primary: #c19a6b; /* Culoare elegantă de tip auriu/lemn */
    --dark: #1a1a1a;
    --light: #f9f9f9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background: var(--light); color: #444; scroll-behavior: smooth; }

.container { max-width: 1100px; margin: auto; padding: 0 20px; }

/* Navbar */
nav { background: rgba(26, 26, 26, 0.95); color: white; padding: 20px 0; position: fixed; width: 100%; top: 0; z-index: 100; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 600; font-family: 'Playfair Display', serif; }
.logo span { color: var(--primary); }
.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 25px; }
.nav-links a { color: white; text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }

/* Hero Section */
.hero-pro { 
    height: 100vh; 
    background: url('fundal-pensiune.jpg') center/cover no-repeat;
    position: relative;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center;
}
.hero-text { text-align: center; color: white; }
.hero-text h1 { font-family: 'Playfair Display', serif; font-size: 4rem; margin-bottom: 1rem; }
.subtitle { text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; color: var(--primary); }

/* Butoane */
.btn-primary { background: var(--primary); color: white; padding: 12px 30px; text-decoration: none; border-radius: 50px; margin: 10px; display: inline-block; transition: 0.3s; }
.btn-secondary { border: 2px solid white; color: white; padding: 12px 30px; text-decoration: none; border-radius: 50px; margin: 10px; display: inline-block; transition: 0.3s; }
.btn-primary:hover { background: #a8835a; }

/* Facilitati */
.section-title { text-align: center; margin: 60px 0; }
.section-title h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; }
.line { width: 50px; height: 3px; background: var(--primary); margin: 10px auto; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.feature-card { text-align: center; padding: 30px; background: white; border-radius: 10px; transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.feature-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; }
.feature-card:hover { transform: translateY(-10px); }

/* Galerie */
.gallery-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 10px; padding: 0 10px; }
.img-box { overflow: hidden; height: 300px; }
.img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; cursor: pointer; }
.img-box img:hover { transform: scale(1.1); }

/* Footer */
footer { background: var(--dark); color: #ccc; padding: 60px 0; margin-top: 60px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; }
.footer-social i { font-size: 1.5rem; margin-left: 20px; color: var(--primary); }

/* Stil Buton WhatsApp Plutitor */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 24px;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.05);
    color: #fff;
}

/* Pe ecrane mici (telefoane), ascundem textul și lăsăm doar iconița pentru a nu ocupa mult spațiu */
@media (max-width: 768px) {
    .whatsapp-float span {
        display: none;
    }
    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
    }
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 30px;
}

.contact-info-box {
    text-align: left;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info-box p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-info-box i {
    color: var(--primary);
    margin-right: 10px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Adaptare pentru mobil */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Stiluri Atracții Turistice */
.atractii-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.atractie-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.atractie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.atractie-img {
    height: 200px;
    overflow: hidden;
}

.atractie-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.atractie-info {
    padding: 20px;
    text-align: left;
}

.atractie-info h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    color: var(--dark);
}

.atractie-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}
