:root {
    --primary-color: #E27B3D; /* Portocaliu adaptat din logo */
    --secondary-color: #6c757d; /* Gri */
    --light-bg: #f8f9fa; /* Alb aproape */
    --dark-text: #343a40; /* Negru inchis */
    --white: #ffffff;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Permite elementelor să treacă pe rândul următor pe ecrane mici */
}

.logo {
    flex-shrink: 0; /* Previne micșorarea logo-ului */
    margin-bottom: 10px; /* Spațiu sub logo pe mobil */
}

.logo img {
    max-height: 60px; /* Înălțimea maximă a logo-ului, ușor mărită pentru vizibilitate */
    width: auto;
    display: block;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap; /* Permite elementelor meniului să treacă pe rândul următor pe ecrane mici */
    justify-content: center; /* Centrează elementele meniului pe ecrane mici */
}

nav ul li {
    margin: 0 15px;
    margin-bottom: 10px; /* Spațiu sub fiecare element de meniu pe mobil */
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.hero {
    background: url('https://via.placeholder.com/1500x500?text=Imagine+destinatie+exotica') no-repeat center center/cover; /* Placeholder pentru imaginea principală */
    color: var(--white);
    text-align: center;
    padding: 100px 15px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Overlay întunecat pentru lizibilitate */
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #c76a34; /* O nuanță mai închisă de portocaliu la hover */
}

section {
    padding: 60px 0;
    text-align: center;
}

section h3 {
    font-size: 2.2em;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.services-grid, .destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h4 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-top: 0;
}

.card p {
    font-size: 0.95em;
    color: var(--secondary-color);
}

.contact-info {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    margin-top: 40px;
    text-align: center;
}

.contact-info p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

footer {
    background-color: var(--dark-text);
    color: var(--white);
    text-align: center;
    padding: 25px 0;
    margin-top: 50px;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        margin-bottom: 20px;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hero h2 {
        font-size: 2.2em;
    }

    .hero p {
        font-size: 1em;
    }

    section {
        padding: 40px 0;
    }

    section h3 {
        font-size: 1.8em;
    }

    .services-grid, .destinations-grid {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 20px;
    }
}