/* --- CSS VARIABLES --- */
:root {
    --primary-brown: #2b1d14;
    --dark-bg: #111111;
    --gold: #c8a96a;
    --gold-hover: #e2c68e;
    --white: #ffffff;
    --text-muted: #a5a5a5;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 100px 0; }
.center { text-align: center; }
.gold-text { color: var(--gold); }

/* --- NAVIGATION (UPDATED FOR LEFT ALIGNMENT) --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: var(--transition);
}

.navbar.sticky {
    background: rgba(17, 17, 17, 0.98);
    padding: 15px 0;
    border-bottom: 1px solid rgba(200, 169, 106, 0.1);
}

.nav-container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%; /* Pushes logo/links to the edges */
    width: 100%;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Placeholder for a small icon/logo */
.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    mask: url('https://cdn-icons-png.flaticon.com/512/3232/3232750.png') no-repeat center / contain;
    -webkit-mask: url('https://cdn-icons-png.flaticon.com/512/3232/3232750.png') no-repeat center / contain;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(17,17,17,0.4) 0%, rgba(17,17,17,0.8) 100%);
}

.hero-content { position: relative; z-index: 1; }
.hero-content h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin: 10px 0 20px;
    color: var(--gold);
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    margin-top: 20px;
}

.btn:hover {
    background: var(--gold);
    color: var(--dark-bg);
}

/* --- ABOUT SECTION --- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img img {
    width: 100%;
    border-radius: 2px;
    box-shadow: 20px 20px 0px var(--primary-brown);
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--gold);
}

/* --- MENU SECTION --- */
.menu { background: #16110e; }
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
}

.menu-category h3 {
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(200, 169, 106, 0.3);
    padding-bottom: 15px;
    margin-bottom: 30px;
    color: var(--gold);
}

.menu-item { margin-bottom: 30px; }
.item-info {
    display: flex;
    justify-content: space-between;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    border-bottom: 1px dotted #444;
}

.item-price { color: var(--gold); }
.item-desc { color: var(--text-muted); font-size: 0.9rem; margin-top: 5px; }

/* --- GALLERY --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-item { position: relative; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-hover {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: rgba(43, 29, 20, 0.85);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-hover { opacity: 1; }

/* --- CONTACT SECTION --- */
.contact-info p { margin-bottom: 15px; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    outline: none;
}

.contact-form input:focus { border-color: var(--gold); }

/* --- FOOTER --- */
.footer { padding: 80px 0; background: #080808; }
.socials { margin: 20px 0; font-size: 0.9rem; }
.copy { font-size: 0.7rem; color: #444; margin-top: 30px; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .grid-2 { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .about-img { order: 2; }
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 70%;
        background: var(--dark-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
    }
    .nav-links.active { right: 0; }
    .hamburger { display: block; cursor: pointer; }
    .hamburger span {
        display: block; width: 30px; height: 2px;
        background: var(--gold); margin: 8px 0;
        transition: 0.4s;
    }
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.event-card {
    background: #1a1a1a; /* Тъмен фон за контраст */
    padding: 20px;
    border: 1px solid var(--gold);
    text-align: center;
    transition: transform 0.3s ease;
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.event-card h3 {
    color: var(--gold);
    margin-bottom: 10px;
}

.event-card:hover {
    transform: translateY(-10px);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-card {
    background: #111;
    border: 1px solid var(--gold);
    overflow: hidden;
    transition: 0.3s;
}

.news-img img {
    width: 100%;
    height: 250px;
    object-fit: cover; /* Това ще мащабира снимката правилно */
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    color: var(--gold);
    margin-bottom: 10px;
}

.news-card:hover {
    border-color: #fff;
}

/* Стил за датата или малкия текст под заглавието */
.news-date {
    font-size: 0.85rem;
    color: var(--gold); /* Използваме златистия цвят за акцент */
    margin-bottom: 10px;
    font-style: italic;
    opacity: 0.8;
}

/* Стил за основния текст в картичката */
.news-excerpt {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ccc;
}

/* --- ANIMATIONS --- */
.fade-in { animation: fadeIn 5s ease forwards; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}