* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4a347;
    --dark-bg: #1c1c1c;
    --light-bg: #f8f8f8;
    --text-color: #555;
    --white: #ffffff;
    --font-main: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

h1, h2, h3 {
    font-weight: 700;
    color: #333;
}

.gold-text {
    color: var(--gold);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}

.section-header p {
    color: #888;
    font-size: 1rem;
}

.hero-section {
    height: 100vh;
    background-image: url('home_bg.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #333;
    display: flex;
    flex-direction: column;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-checkbox {
    display: none;
}

.nav-btn {
    display: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-btn {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.9);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
        transform: scaleY(0);
        transform-origin: top;
        transition: 0.3s ease;
    }

    .nav-checkbox:checked ~ .nav-links {
        transform: scaleY(1);
    }
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ddd;
}

.cta-button {
    padding: 12px 30px;
    border: 1px solid var(--white);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1s; }

@keyframes fadeIn {
    to { opacity: 1; transform: translateY(0); }
    from { opacity: 0; transform: translateY(20px); }
}

.about-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.btn-dark {
    display: inline-block;
    padding: 10px 25px;
    background: #333;
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-dark:hover {
    background: var(--gold);
}



.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.offers-section {
    position: relative;
    padding: 5rem 0;
    background-image: url('offer-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.relative-z {
    position: relative;
    z-index: 1;
}

.white-text h2, .white-text p {
    color: var(--white);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offer-card {
    text-align: center;
    color: var(--white);
}

.circle-img {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255,255,255,0.1);
    transition: 0.3s;
    background-color: #555;
}

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-card:hover .circle-img {
    border-color: var(--gold);
    transform: scale(1.05);
}

.offer-card h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.offer-card p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.price .old {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-right: 10px;
}

.price .new {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
}

.menu-section {
    padding: 5rem 0;
    background: #f9f9f9;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.menu-item {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.menu-img {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--gold);
    background-color: #eee;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-details {
    flex: 1;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 0.5rem;
}

.menu-header h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

.price-tag {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
}

.menu-details p {
    font-size: 0.85rem;
    margin: 0;
    color: #777;
}

.menu-footer {
    text-align: center;
    margin-top: 3rem;
}

.btn-gold {
    display: inline-block;
    padding: 12px 35px;
    background: var(--gold);
    color: var(--white);
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    background: #b88a35;
}

.services-banner {
    background-image: url(daytime_bg.jpeg);
    padding: 3rem 0;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 1rem;
}

.service-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    color: #fff;
}

.service-item p {
    font-size: 0.9rem;
    color: #f1f1f1;
}

.gallery-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    height: 250px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background-image: url(offer-background.jpg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    border-radius: 15px;
}

.gallery-item:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

footer {
    background: #111;
    color: #999;
    padding: 4rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    padding-bottom: 5px;
}

.contact-line {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-line i {
    color: var(--gold);
    margin-right: 15px;
    width: 20px;
}

.working-hours {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.working-hours p {
    margin-bottom: 0.5rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    margin-right: 15px;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--gold);
}

.form-col input, .form-col textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: #222;
    border: 1px solid #333;
    color: var(--white);
    font-family: inherit;
}

.form-col input:focus, .form-col textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.copyright {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 1.5rem;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .about-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 576px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .menu-item { flex-direction: column; text-align: center; }
    .menu-img { margin-right: 0; margin-bottom: 1rem; }
    .menu-header { flex-direction: column; gap: 5px; }
}