/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #f4f7f4;
    color: #2f3e2f;
}

/* HEADER */
.site-header {
    background: white;
    text-align: center;
    padding: 30px 20px 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.site-title {
    font-size: 52px;
    font-weight: bold;
    color: #0f4c5c;
    margin-bottom: 15px;
}

/* NAVIGATION */
.header-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.header-nav a {
    text-decoration: none;
    font-weight: bold;
    color: #2f3e2f;
    position: relative;
    transition: color 0.3s;
}

.header-nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #27ae60;
    left: 0;
    bottom: -6px;
    transition: 0.3s;
}

.header-nav a:hover::after {
    width: 100%;
}

/* HERO – СНИМКА ВМЕСТО ЦВЯТ */
.hero {
    height: 70vh;
    background-image: url("vitality-hub.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    color: white;
    position: relative;
}

/* ТЪМЕН OVERLAY */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero h2,
.hero .btn {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

/* BUTTON */
.btn {
    padding: 14px 30px;
    background: white;
    color: #27ae60;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #e6f2e6;
}

/* CONTAINER */
.container {
    padding: 60px 40px;
    text-align: center;
}

.container h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* FEATURES / CARDS */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.menu-card {
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.menu-card h3 {
    margin-bottom: 10px;
}

.menu-card p {
    font-size: 15px;
    opacity: 0.85;
}

/* FOOTER */
footer {
    background: #2f3e2f;
    color: white;
    text-align: center;
    padding: 20px;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.photo {
    height: 200px;
    background: #c8e6c9;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}
.hero-subtitle {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 20px;
    margin-bottom: 50px;
    letter-spacing: 2px;
    opacity: 0.9;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f4f7f4;
}

/* HEADER */
.site-header {
    background: white;
    text-align: center;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.site-title {
    font-size: 42px;
    color: #0f4c5c;
    margin-bottom: 15px;
}

.header-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.header-nav a {
    text-decoration: none;
    font-weight: 500;
    color: #2f3e2f;
}

.header-nav a.active {
    color: #27ae60;
}

.luxury-menu {
    background: linear-gradient(135deg, #1f4d52, #15393d);
    color: #f7d774;
    padding: 80px 20px;
    min-height: 100vh;
}

.luxury-title {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: clamp(30px, 6vw, 48px);
    letter-spacing: 5px;
    margin-bottom: 60px;
    text-transform: uppercase;
    color: #f7d774;
}

/* ДВЕ КОЛОНИ - Напитките и храната са тук */
.luxury-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.luxury-column h3 {
    text-align: center;
    font-family: 'Cinzel', serif;
    margin: 45px 0 25px 0;
    font-size: 24px;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(247, 215, 116, 0.4);
    padding-bottom: 10px;
    color: #ffffff;
}

/* УЕДНАКВЕН СТИЛ ЗА ВСИЧКИ АРТИКУЛИ (ПРЕДЯСТИЯ, ОСНОВНИ, НАПИТКИ) */
.luxury-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 18px;
    padding-bottom: 5px;
    border-bottom: 1px dotted rgba(247, 215, 116, 0.3);
    font-size: 16px;
    transition: 0.2s ease-in-out;
}

.luxury-item:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-left: 10px;
}

.luxury-item span:last-child {
    font-weight: 600;
    color: #ffffff;
    margin-left: 20px;
    white-space: nowrap; /* Предпазва цената от пренасяне */
}

/* ЦЕНТРИРАНА СЕКЦИЯ - Специални предложения */
.center-section {
    max-width: 600px;
    margin: 80px auto 20px auto;
    text-align: center;
}

.center-section h3 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    letter-spacing: 3px;
    border-bottom: 2px solid #d4af37;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 35px;
    color: #ffffff;
}

/* Подравняване на текста вътре в центрираната секция */
.center-section .luxury-item {
    text-align: left;
}

/* RESPONSIVE - Една колона за мобилни устройства */
@media (max-width: 768px) {
    .luxury-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .luxury-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .center-section {
        width: 100%;
        padding: 0 10px;
    }
}