:root {
    /* Default colors - can be changed from admin panel */
    --primary-color: #1a1a1a;
    --secondary-color: #8b6f47;
    --accent-color: #d4af37;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #f5f5f0;
    --white: #ffffff;
    --gold: #d4af37;
    --gold-dark: #b8941f;
    --gold-light: #e5c866;
    --bg-dark: #1a1a1a;

    /* Customizable colors from admin - defaults */
    --custom-bg-color: #ffffff!important;
    --custom-block-bg: #f5f5f0;
    --custom-text-color: #2c2c2c;
    --custom-header-text-color: #d4af37;
    --custom-title-color: #d4af37;
    --custom-link-color: #2c2c2c;
    --custom-link-hover-color: #d4af37;
    --custom-button-bg: #1a1a1a;
    --custom-button-text: #ffffff;
    --custom-button-hover-bg: #d4af37;
    --custom-button-hover-text: #1a1a1a;
    --custom-footer-bg: #1a1a1a;
    --custom-footer-text: #ffffff;
    --custom-navbar-bg: rgba(255, 255, 255, 0.95);
    --custom-hero-text: #d4af37;

    /* Customizable font sizes - defaults */
    --custom-font-size-base: 1rem;
    --custom-font-size-small: 0.875rem;
    --custom-font-size-large: 1.125rem;
    --custom-font-size-h1: 3.5rem;
    --custom-font-size-h2: 2.5rem;
    --custom-font-size-h3: 1.8rem;
    --custom-font-size-h4: 1.5rem;
    --custom-font-size-h5: 1.2rem;
    --custom-font-size-h6: 1rem;
    --custom-font-size-nav: 0.95rem;
    --custom-font-size-hero-title: 3.5rem;
    --custom-font-size-hero-subtitle: 1.3rem;

    /* Customizable fonts - defaults */
    --custom-font-body: 'Cormorant Garamond', 'Playfair Display', serif;
    --custom-font-headings: 'Cormorant Garamond', 'Playfair Display', serif;
    --custom-font-nav: 'Cormorant Garamond', serif;
    --custom-font-hero: 'Cormorant Garamond', 'Playfair Display', serif;
    --custom-font-buttons: 'Cormorant Garamond', serif;

    /* Block visibility - defaults (1 = visible, 0 = hidden) */
    --block-hero-visible: 1;
    --block-promo-visible: 1;
    --block-about-visible: 1;
    --block-menu-visible: 1;
    --block-interior-visible: 1;
    --block-video-visible: 1;
    --block-reviews-visible: 1;
    --block-news-visible: 1;
    --block-contact-visible: 1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: var(--custom-font-body);
    font-size: var(--custom-font-size-base);
    /*color: var(--custom-text-color);*/
    color: black;
    background-color: var(--custom-bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--custom-font-headings);
    color: var(--custom-title-color);
    font-weight: 500;
    letter-spacing: 0.5px;
}

h1 { font-size: var(--custom-font-size-h1); }
h2 { font-size: var(--custom-font-size-h2); }
h3 { font-size: var(--custom-font-size-h3); }
h4 { font-size: var(--custom-font-size-h4); }
h5 { font-size: var(--custom-font-size-h5); }
h6 { font-size: var(--custom-font-size-h6); }

h1.hero-title, h2.section-title, h3.subsection-title {
    /*color: var(--custom-title-color);*/
    color: rgb(190, 109, 73);
}

h1.hero-title {
    font-family: var(--custom-font-hero);
    font-size: var(--custom-font-size-hero-title);
    color: white;
}

/* Navigation */
.navbar {
    background-color: var(--custom-navbar-bg);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-family: var(--custom-font-nav);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--custom-header-text-color) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    margin-right: 10px;
    display: block;
}

.logo-img[style*="display: none"] {
    display: none !important;
}

.logo-text {
    vertical-align: middle;
    color: white !important;
    font-weight: 600;
    /*font-size: 1.4rem;*/
    display: inline-block;
}

.nav-link {
    font-weight: 400;
    color: white !important;
    margin: 0 1rem;
    transition: color 0.3s ease;
    font-size: var(--custom-font-size-nav);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--custom-font-nav);
}

.nav-link:hover {
    color: var(--custom-link-hover-color) !important;
}

.language-switcher {
    margin-left: 1rem;
}

.language-switcher .lang-btn {
    margin: 0 2px;
    border: 1px solid var(--text-dark);
    background: transparent;
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 0;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.language-switcher .lang-btn.active {
    /*background-color: var(--text-dark);*/
    background-color: #4f0c01;
    color: var(--white);
    border-color: var(--text-dark);
}
.btn{
    border-radius: 100px!important;
}
.language-switcher .lang-btn:hover {
    background-color: var(--text-dark);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/IMAGE 2025-11-11 05:43:59.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: var(--white);
}

.hero-content {
    width: 100%;
}

.hero-title {
    font-size: var(--custom-font-size-hero-title);
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--custom-hero-text);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: var(--custom-font-hero);
}

.hero-subtitle {
    font-size: var(--custom-font-size-hero-subtitle);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.7rem;
}

.booking-card {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    padding: 2.5rem;
    color: var(--text-dark);
    max-width: 500px;
    margin-left: auto;
}

.contact-info {
    margin-bottom: 2rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.address {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.hours {
    font-size: 0.95rem;
    color: var(--text-light);
}

.btn-booking {
    border-radius: 100px;
    width: 100%;
    /*background-color: var(--custom-button-bg);*/
    background-color: #4f0c01;
    color: var(--custom-button-text);
    border: none;
    padding: 1rem 2rem;
    font-size: var(--custom-font-size-base);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: var(--custom-font-buttons);
}

.btn-booking:hover {
    background-color: var(--custom-button-hover-bg);
    color: var(--custom-button-hover-text);
}

/* Promo Section */
.promo-section {
    padding: 4rem 0;
    background-color: #b59a87;
}

.promo-card {
    background: var(--white);
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.promo-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    /*color: var(--gold);*/
    color: black;
    font-weight: 900;
}

.promo-code-section {
    margin: 2rem 0;
}

.promo-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    /*color: var(--text-light);*/
    color: black;
}

.promo-code-box {
    border-radius: 100px;
    /*background: var(--text-dark);*/
    /*background: #4f0c01;*/
    border: 2px solid #4f0c01;
    color: var(--white);
    padding: 1.5rem 3rem;
    display: inline-block;
    margin: 1.5rem 0;
}

.promo-code {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 3px;
}

.promo-discount {
    font-size: 1.1rem;
    /*color: var(--text-light);*/
    color: black;
    margin-top: 1rem;
}

.btn-menu-link {
    border-radius: 100px;
    display: inline-block;
    /*background-color: var(--custom-button-bg);*/
    background-color: #4f0c01;
    color: var(--custom-button-text);
    padding: 1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    /*margin-top: 2rem;*/
    transition: all 0.3s ease;
    font-family: var(--custom-font-buttons);
}

.btn-menu-link:hover {
    background-color: var(--custom-button-hover-bg);
    color: var(--custom-button-hover-text);
}

/* Sections */
section {
    padding: 2rem 0;
}

.section-title {
    font-size: var(--custom-font-size-h2);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--custom-title-color);
    font-family: var(--custom-font-headings);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* About Section */
.about-section {
    background-color: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-text {
    font-size: 1.6rem;
    line-height: 1.5;
    /*color: var(--text-light);*/
    color: black;
}
.carousel-inner{
    border-radius: 10px;
}
.carousel-section {
    margin-bottom: 4rem;
}

.subsection-title {
    font-size: var(--custom-font-size-h3);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 400;
    color: var(--custom-title-color);
    font-family: var(--custom-font-headings);
}

.carousel-img {
    height: 500px;
    object-fit: cover;
    width: 100%;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--text-dark);
    border-radius: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: var(--gold);
}

/* Menu Section */
.menu-section {
    /*background-color: var(--custom-block-bg);*/
    /*background: #d5bba8;*/
    background: white;
}

.menu-card {
    border-radius: 10px;
    background: var(--white);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.menu-card img {
    height: 350px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.3s ease;
}

.menu-card:hover img {
    transform: scale(1.05);
}

.menu-card .card-body {
    padding: 1.5rem;
}

.menu-card .card-title {
    color: var(--text-dark);
    font-weight: 400;
    font-size: 1.6rem;
    margin: 0;
}

/* Interior Section */
.interior-section {
    background-color: var(--white);
}

.gallery-img {
    border-radius: 10px;
    height: 300px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Video Section */
.video-section {
    background-color: var(--custom-block-bg);
}

.video-wrapper {
    overflow: hidden;
    background: #000;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* Reviews Section */
.reviews-section {
    /*background-color: var(--white);*/
    background-color: #d5bba8;
}

.review-form-card {
    /*background: var(--custom-block-bg);*/
    background: #be6d49;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.review-form-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    /*color: var(--gold);*/
    color: black;
}

.form-control,
.form-select {
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 0.75rem;
    font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--text-dark);
    box-shadow: 0 0 0 0.2rem rgba(44, 44, 44, 0.25);
}

.btn-submit {
    background-color: var(--text-dark);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
}

.review-card {
    background: var(--custom-block-bg);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-name {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.review-rating {
    color: var(--gold);
    font-size: 1.2rem;
}

.review-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.6;
}

/* News Section */
.news-section {
    /*background-color: var(--custom-block-bg);*/
    background: #be6d49;
}

.news-card {
    background: var(--white);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card-body {
    padding: 1.5rem;
}

.news-title {
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.news-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-text {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
}

.contact-card {
    /*background: var(--custom-block-bg);*/
    background: white;
    /*padding: 2.5rem;*/
    height: 100%;
}

.contact-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    /*color: var(--gold);*/
    color: black;
    font-weight: 400;
}

.contact-phone {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.contact-link {
    color: var(--text-dark);
    text-decoration: none;
    font-style: normal;
    font-family: bold;
    font-weight: 900;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}
.delivery_text{
    font-size: 1.5rem;
}
.contact-link:hover {
    color: var(--gold);
}

.social-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 2rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-right: 1rem;
    font-weight: 600;
}

.social-link:hover {
    color: var(--gold);
}

.social-link i {
    margin-right: 5px;
}

.review-links {
    /*border-radius: 100px;*/
    /*margin-top: 2rem;*/
}
.press{
    background-color: #4f0c01;
}
.btn-review-link {
    width: 100%;
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 1px solid #4f0c01;
    color: var(--text-dark);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.9rem;
    transition: all 0.3s ease;
}
.btn-review-link-add{
    font-weight: 600;
    border-radius: 100px;
}
.btn-review-link:hover {
    /*background-color: var(--text-dark);*/
    background-color: #4f0c01;
    color: var(--white);
}

/* Footer */
.footer {
    background-color: var(--custom-footer-bg);
    color: var(--custom-footer-text);
    padding: 2rem 0;
}

.footer-link {
    color: var(--custom-footer-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--custom-link-hover-color);
}

/* Block visibility - will be controlled by JavaScript */

/* Responsive */
@media (max-width: 768px) {
    .btn-review-link{
        width: 100%;
        margin-top: 1rem !important;
    }
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .booking-card {
        margin-top: 2rem;
        margin-left: 0;
        padding: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .carousel-img {
        height: 300px;
    }

    .gallery-img {
        height: 250px;
        margin-bottom: 1rem;
    }

    .promo-card {
        padding: 2rem 1.5rem;
    }

    .promo-code {
        font-size: 2rem;
    }

    .nav-link {
        margin: 0 0.5rem;
    }

    .language-switcher {
        margin-top: 1rem;
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .promo-code {
        font-size: 1.5rem;
    }

    .booking-card {
        padding: 1.5rem;
    }

    .phone-number {
        font-size: 1.2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Image error handling */
img {
    transition: opacity 0.3s ease;
}

img[src=""], img:not([src]) {
    opacity: 0;
}
