* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #111;
    color: #fff;
    line-height: 1.6;
}

img {
    width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #ffc107;
}

/* HEADER */

.header {
    background: #4b0000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-section h1 {
    font-size: 1.5rem;
    color: #fff;
}

.logo-section p {
    color: #ffc107;
    font-size: 0.9rem;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.navbar a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.navbar a:hover {
    color: #ffc107;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

/* BUTTONS */

.btn {
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    display: inline-block;
}

.call-btn,
.primary-btn {
    background: #ffc107;
    color: #000;
}

.call-btn:hover,
.primary-btn:hover {
    background: #fff;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
}

.whatsapp-btn:hover {
    opacity: 0.9;
}

/* HERO */

.hero {
    position: relative;
    background: url('assets/Background.png') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 50px;
}

.hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.hero-text h2 {
    font-size: 4rem;
    color: #ffc107;
}

.hero-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.hero-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.hero-phone {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #fff;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-images img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* ABOUT */

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.about-card {
    background: #1c1c1c;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: #ffc107;
}

.about-card h3 {
    color: #ffc107;
    margin-bottom: 15px;
}

/* FOOD CARDS */

.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.food-card {
    background: #1b1b1b;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #2d2d2d;
}

.food-card:hover {
    transform: translateY(-8px);
}

.food-card img {
    height: 230px;
    object-fit: cover;
}

.food-content {
    padding: 20px;
}

.food-content h3 {
    color: #ffc107;
    margin-bottom: 10px;
}

/* GALLERY */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    border-radius: 15px;
    height: 250px;
    object-fit: cover;
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* REVIEWS */

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.review-card {
    background: #1c1c1c;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #ffc107;
}

.review-card h3 {
    color: #ffc107;
    margin-bottom: 15px;
}

.review-card span {
    display: block;
    margin-top: 15px;
    color: #ccc;
}

/* CONTACT */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.contact-info h2 {
    color: #ffc107;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.map-container iframe {
    border-radius: 15px;
}

/* FOOTER */

.footer {
    background: #4b0000;
    padding-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 30px;
}

.footer-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
}

.copyright {
    text-align: center;
    padding: 15px;
    background: #2d0000;
    color: #ddd;
}

/* RESPONSIVE */

@media(max-width: 992px) {

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-logo {
        margin: auto auto 20px;
    }

    .nav-container {
        flex-direction: column;
    }

    .navbar ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media(max-width: 768px) {

    .hero-text h2 {
        font-size: 2.8rem;
    }

    .hero-text h3 {
        font-size: 1.3rem;
    }

    .header-contact {
        flex-direction: column;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .footer-content {
        text-align: center;
        justify-content: center;
    }
}
/* SOCIAL MEDIA */

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #ffc107;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s ease;
}

.social-link:hover {
    background: #fff;
    transform: translateY(-5px);
}
.credits {
    padding-bottom: 10px;
    text-align: center;
    background: #2d0000;
    color: #ddd;
}
.credits a {
    color: #FAC112;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}