/* Resetare stiluri de bază */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #ffffff;
}

/* Navigație */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: #1a1a1a;
    letter-spacing: 1px;
}

nav a {
    text-decoration: none;
    color: #555;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #bf9b30; /* Culoare aurie premium */
}

.btn-nav {
    background: #1a1a1a;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 4px;
}

/* Secțiunea Hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('imagini/apus.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

/* NOTĂ: Înlocuiește linkul de la URL de mai sus cu fotografia ta principală de pe terasă după ce o urci pe server */

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.btn-primary {
    display: inline-block;
    background: #bf9b30;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #a38124;
}

/* Containere structură */
.container {
    padding: 80px 10%;
}

.container-small {
    padding: 80px 20px;
    max-width: 650px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.bg-light {
    background-color: #f9f9f9;
}

/* Grid Facilități */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #bf9b30;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Reguli */
.rules-list {
    list-style: none;
}

.rules-list li {
    background: #fff;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

/* Formular Rezervare */
.form-subtitle {
    text-align: center;
    color: #777;
    margin-top: -30px;
    margin-bottom: 30px;
    font-style: italic;
}

.booking-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s;
}

input:focus, select:focus, textarea:focus {
    border-color: #bf9b30;
}

.btn-submit {
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #bf9b30;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: #1a1a1a;
    color: #777;
    font-size: 0.9rem;
}

/* Optimizare Mobile */
@media (max-width: 768px) {
    header { padding: 15px 5%; }
    nav a { display: none; } /* Ascunde meniul clasic pe telefon pentru simplitate */
    .btn-nav { display: block; }
    .hero-content h1 { font-size: 2rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .booking-form { padding: 20px; }
}
