@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Playfair+Display:wght@700;900&display=swap');

:root {
    --primary: #e03636;
    /* Dark Red */
    --secondary: #d32f2f;
    /* Red */
    --hover-green: #4caf50;
    /* Logo Green for hover */
    --dark: #000000;
    --light: #f4f4f4;
    --white: #ffffff;
    --text-muted: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    /* font-family: 'Playfair Display', serif; */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--hover-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--hover-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--hover-green);
    border-color: var(--hover-green);
    color: var(--white);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

header nav ul li a {
    color: var(--white);
}

header nav ul li a:hover,
header nav ul li a.active {
    color: var(--secondary);
}

header .btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

header .btn-secondary:hover {
    background: var(--hover-green);
    color: var(--white);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    transition: var(--transition);
}

header.scrolled .logo img {
    height: 45px;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--secondary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
    max-width: 700px;
    text-align: left;
    padding: 0 20px;
}

.slide-subtitle {
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 900;
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 550px;
    margin-bottom: 35px;
    color: var(--white);
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: var(--transition);
    opacity: 0.8;
}

.slider-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    background: var(--hover-green);
    color: var(--white);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--secondary);
    width: 30px;
    border-radius: 10px;
}

.hero-content h1,
.hero-content p,
.hero-content .hero-btns,
.slide-subtitle {
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .slide-subtitle {
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.slide.active h1 {
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.slide.active p {
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.slide.active .hero-btns {
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styling */
section {
    padding: 25px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* About Section */
.about {
    background: #000000;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 900;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--white);
    line-height: 1.8;
}

.about-image {
    position: relative;
    padding-right: 25px;
}

.about-image img {
    border-radius: 5px;
    width: 100%;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 0;
    bottom: 15px;
    width: 25px;
    background: var(--primary);
    border-radius: 0 5px 5px 0;
    z-index: -1;
}

/* Menu Preview */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.menu-tab {
    padding: 10px 20px;
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.menu-tab.active {
    background: var(--primary);
    border-color: var(--primary);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.menu-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px;
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.menu-item h4 {
    font-size: 1.2rem;
    color: var(--secondary);
}

.menu-item .price {
    font-weight: 700;
    color: var(--white);
}

.menu-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Reviews */
.reviews .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
    margin-bottom: 40px;
}

.reviews .section-header h2 {
    margin-bottom: 0;
}

.review-buttons {
    display: flex;
    gap: 15px;
}

.review-buttons button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    background: transparent;
    color: var(--secondary);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.review-buttons button:hover {
    background: var(--hover-green);
    border-color: var(--hover-green);
    color: var(--white);
    transform: translateY(-3px);
}

.reviews-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
}

.reviews-container::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 calc((100% - 60px) / 3);
    background: var(--glass);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

@media (max-width: 992px) {
    .review-card {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}

@media (max-width: 600px) {
    .review-card {
        flex: 0 0 100%;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

.review-card:hover {
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.08);
}

.review-card .stars {
    color: var(--secondary);
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Find Us Section */
.find-us {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0;
}

.find-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.find-title {
    font-size: 4rem;
    color: var(--secondary);
    font-weight: 900;
    margin-bottom: 20px;
}

.find-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary);
    font-size: 1.2rem;
}

.detail-text h4 {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.detail-text p {
    font-size: 1rem;
    opacity: 0.8;
}

.find-map {
    position: relative;
}

.opening-hours-card {
    background-color: var(--secondary);
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.opening-hours-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.opening-hours-list {
    list-style: none;
    padding: 0;
}

.opening-hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    font-weight: 500;
}

.opening-hours-list li:last-child {
    border-bottom: none;
}

.opening-hours-list .day {
    opacity: 0.8;
}

.opening-hours-list .time {
    font-weight: 600;
}

.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.map-wrapper iframe {
    filter: grayscale(1) contrast(1.2) opacity(0.8);
}

.map-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 10;
}

.map-button-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.btn-dark-small {
    background: #000000;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-dark-small:hover {
    background: var(--hover-green);
    color: var(--white);
}

/* Footer Improvements */
footer {
    background: #000000;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--secondary);

}

.footer-col p,
.footer-col li {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.opening-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.opening-hours .day {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
}

.opening-hours .time {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: right;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--glass);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-bottom {
    background: var(--dark);
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

.footer-bottom p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.footer-bottom img {
    height: 25px;
    display: block;
}

/* Scroll Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    background: var(--hover-green);
    color: var(--white);
}

/* app button style */
.app-btn {
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    nav ul {
        display: none;
        /* Mobile menu logic in JS */
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}