*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: #111827;
    background-color: #f9fafb;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

.container {
    width: min(1120px, 100% - 2rem);
    margin: 0 auto;
}

.site-header {
    background: #0f172a;
    color: #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.logo span {
    font-weight: 700;
    font-size: 1.1rem;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
}

.hero {
    padding: 3rem 0 2.5rem;
    background: linear-gradient(to bottom, #0f172a, #1e293b);
    color: #f9fafb;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 1rem;
}

.hero p {
    max-width: 36rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn.primary {
    background: #f97316;
    color: #111827;
}

.btn.secondary {
    background: transparent;
    border-color: #e5e7eb;
    color: #e5e7eb;
}

.section {
    padding: 2.5rem 0;
}

.section-alt {
    background: #e5e7eb;
}

.cards-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: 1.5rem;
}

.card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.two-columns {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.site-footer {
    background: #020617;
    color: #e5e7eb;
    padding: 2rem 0 1rem;
    margin-top: 2rem;
}

.footer-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    margin-top: 1rem;
    opacity: 0.7;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0.5rem;
    background: #f97316;
    color: #111827;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    z-index: 50;
}

.skip-link:focus {
    left: 0.5rem;
}

/* Meniu mobil */

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle-bar {
    width: 22px;
    height: 2px;
    background: #e5e7eb;
    display: block;
    margin: 4px 0;
}

/* Responsivitate */

@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0f172a;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s ease-out;
    }

    .main-nav.open {
        max-height: 260px;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 0.5rem 1rem 1rem;
    }

    .nav-toggle {
        display: inline-flex;
    }
}

.floating-btn {
    position: fixed;
    bottom: 20px;
    z-index: 9999;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-btn {
    left: 20px;
    background-color: #25D366;
}

.call-btn {
    left: 90px; /* sau right:20px dacă vrei în partea dreaptă */
    background-color: #0ea5e9;
}

.floating-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

@media (max-width: 768px) {
    .floating-btn {
        bottom: 15px;
        width: 50px;
        height: 50px;
    }

    .call-btn {
        left: 80px;
    }
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle-bar {
    width: 24px;
    height: 3px;
    background: #e5e7eb;
    display: block;
    margin: 4px 0;
}

@media (max-width: 768px) {

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0f172a;
        max-height: 0;
        overflow: hidden;
        transition: max-height .25s ease;
    }

    .main-nav.open {
        max-height: 300px;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-toggle {
        display: inline-flex;
    }
}

.reservation-form {
    max-width: 600px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.3rem;
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: .7rem;
    border: 1px solid #cbd5e1;
    border-radius: .5rem;
    font-size: 1rem;
}

.form-error {
    color: #dc2626;
    font-size: .85rem;
    margin-top: .25rem;
}

.form-success {
    color: #16a34a;
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 600;
}

.two-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(15,23,42,0.08);
}
.footer-social {
    text-align: center;
    margin-top: 2rem;
}

.footer-social h3 {
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icons img {
    width: 28px;
    height: 28px;
    opacity: 0.85;
    transition: 0.2s;
}

.social-icons img:hover {
    opacity: 1;
    transform: scale(1.12);
}

