:root {
    --primary: #8b5a2b; /* Maro elegant */
    --accent: #f4b400;  /* Galben pentru butoane */
    --text: #333;
    --light: #f9f4ef;
}

body { font-family: 'Segoe UI', sans-serif; margin: 0; color: var(--text); line-height: 1.6; }
.container { max-width: 1100px; margin: auto; padding: 0 20px; }

header { background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.top-bar { background: var(--primary); color: #fff; text-align: center; padding: 5px 0; font-size: 0.9rem; }
.top-bar a { color: #fff; text-decoration: none; font-weight: bold; }

nav { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
.logo { font-size: 1.5rem; font-weight: bold; color: var(--primary); }
.logo span { color: var(--accent); }
.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }

.hero { height: 80vh; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; }
.hero h1 { font-size: 3rem; margin-bottom: 10px; }

.cta-buttons { display: flex; gap: 15px; justify-content: center; margin-top: 20px; }
.btn-call, .btn-whatsapp { padding: 12px 25px; border-radius: 5px; text-decoration: none; font-weight: bold; transition: 0.3s; }
.btn-call { background: var(--accent); color: #000; }
.btn-whatsapp { background: #25d366; color: #fff; }

.info-section { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 0; align-items: center; }
.image-grid img { width: 100%; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); margin-bottom: 10px; }

@media (max-width: 768px) {
    .info-section { grid-template-columns: 1fr; }
    .nav-links { display: none; } /* De implementat meniul hamburger în JS */
    .hero h1 { font-size: 2rem; }
root {
    --primary: #8b5a2b; /* Maro elegant */
    --accent: #f4b400;  /* Galben pentru butoane */
    --text: #333;
    --light: #f9f4ef;
}

body { font-family: 'Segoe UI', sans-serif; margin: 0; color: var(--text); line-height: 1.6; }
.container { max-width: 1100px; margin: auto; padding: 0 20px; }

header { background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.top-bar { background: var(--primary); color: #fff; text-align: center; padding: 5px 0; font-size: 0.9rem; }
.top-bar a { color: #fff; text-decoration: none; font-weight: bold; }

nav { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
.logo { font-size: 1.5rem; font-weight: bold; color: var(--primary); }
.logo span { color: var(--accent); }
.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }

.hero { height: 80vh; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; }
.hero h1 { font-size: 3rem; margin-bottom: 10px; }

.cta-buttons { display: flex; gap: 15px; justify-content: center; margin-top: 20px; }
.btn-call, .btn-whatsapp { padding: 12px 25px; border-radius: 5px; text-decoration: none; font-weight: bold; transition: 0.3s; }
.btn-call { background: var(--accent); color: #000; }
.btn-whatsapp { background: #25d366; color: #fff; }

.info-section { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 0; align-items: center; }
.image-grid img { width: 100%; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); margin-bottom: 10px; }

@media (max-width: 768px) {
    .info-section { grid-template-columns: 1fr; }
    .nav-links { display: none; } /* De implementat meniul hamburger în JS */
    .hero h1 { font-size: 2rem; }
}

.page-header { background: var(--light); padding: 40px 0; text-align: center; }
.rooms-container { padding: 40px 20px; }

.room-card { 
    display: flex; 
    gap: 40px; 
    margin-bottom: 60px; 
    align-items: center; 
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.room-card.reverse { flex-direction: row-reverse; }

.room-image { flex: 1; position: relative; }
.room-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-caption { position: absolute; bottom: 0; background: rgba(0,0,0,0.6); color: #fff; padding: 10px; font-size: 0.8rem; width: 100%; box-sizing: border-box; }

.room-info { flex: 1; padding: 30px; }
.room-info h2 { color: var(--primary); margin-top: 0; }
.room-features { list-style: none; padding: 0; margin: 20px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; font-size: 0.9rem; }
.room-features li::before { content: "✓ "; color: var(--accent); font-weight: bold; }

@media (max-width: 768px) {
    .room-card, .room-card.reverse { flex-direction: column; }
    .room-features { grid-template-columns: 1fr; }
}

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

.attraction-item {
    background: #fff;
    padding: 25px;
    border-left: 4px solid var(--accent);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.attraction-item:hover {
    transform: translateY(-5px);
}

.attraction-item h3 {
    color: var(--primary);
    margin-top: 0;
}

.cta-final {
    background: var(--light);
    text-align: center;
    padding: 60px 20px;
    margin-top: 60px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    padding: 40px 20px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #777;
}

@media (max-width: 600px) {
    .footer-grid { flex-direction: column; text-align: center; gap: 20px; }
}
}

.contact-section { padding: 60px 20px; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.contact-info-card {
    background: var(--light);
    padding: 35px;
    border-radius: 12px;
}

.info-item { margin-bottom: 25px; }
.info-item strong { display: block; color: var(--primary); font-size: 1.1rem; }
.info-item p { margin: 5px 0; font-size: 1.05rem; }
.info-item a { color: var(--text); text-decoration: none; border-bottom: 1px solid var(--accent); }

.action-buttons-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.map-link {
    color: var(--primary); /* Maroul din footer */
    text-decoration: none; /* Fără underline */
    font-weight: bold;
}
.map-link:hover {
    opacity: 0.8; /* Efect vizual discret la trecerea mouse-ului */
}