:root {
    --primary-color: #1b4d3e;
    /* Deep Forest Green */
    --secondary-color: #d4af37;
    /* Metallic Gold */
    --accent-color: #e63946;
    /* Vibrant Red from logo */
    --background-dark: #0f172a;
    --text-light: #f8fafc;
    --text-dim: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background-dark);
    color: var(--text-light);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 18px;
    /* Increased text size */
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

/* Global Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transition: var(--transition);
}

.reveal.active {
    animation: fadeInUp 0.8s forwards;
}

/* Navigation Styles */
nav {
    position: fixed;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 1000;
    padding: 0.5rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-toggle {
    display: none;
}

.nav-logo {
    height: 50px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    opacity: 0.8;
}

.nav-links a:hover,
.nav-links a.active-link {
    opacity: 1;
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.9));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--secondary-color);
    background: linear-gradient(45deg, var(--secondary-color), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--background-dark);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    margin-left: 1rem;
    background: var(--glass-bg);
}

.btn-outline:hover {
    background: var(--glass-border);
}

/* About Section */
section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-tags span {
    background: var(--glass-bg);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    border: 1px solid var(--glass-border);
}

.service-tags i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.floating-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.floating-img:hover {
    transform: translateY(-10px);
}

/* Order Section */
.text-center {
    text-align: center;
}

.order-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.order-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    width: 250px;
}

.order-card img {
    height: 40px;
    margin-bottom: 1.5rem;
    filter: brightness(1.2);
}

.order-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.address {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dim);
}

.phone {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: bold;
}

.phone a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.phone a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--background-dark);
}

/* Menu Section */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.menu-item {
    overflow: hidden;
    transition: var(--transition);
}

.menu-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.menu-item:hover img {
    transform: scale(1.1);
}

.menu-info {
    padding: 2rem;
}

.menu-info h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.menu-info p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    padding: 3rem;
    font-style: italic;
}

.guest-info {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
}

.guest-info strong {
    color: var(--secondary-color);
}

.guest-info span {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* Footer & Watermark */
footer {
    padding: 3rem 0;
    margin-top: 100px;
    border-radius: 0 !important;
    border-left: none;
    border-right: none;
    border-bottom: none;
}

/* Footer & Watermark */
footer {
    padding: 4rem 0 2rem;
    margin-top: 100px;
    border-radius: 0 !important;
    border-left: none;
    border-right: none;
    border-bottom: none;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.watermark {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    width: 100%;
}

.watermark-header {
    font-family: sans-serif;
    font-size: 1.1rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
}

.watermark-logo {
    height: 60px;
    /* User preferred 60px */
    vertical-align: middle;
    filter: drop-shadow(0 0 5px rgba(0, 255, 204, 0.3));
    margin: 0 10px;
}

.watermark p {
    font-size: 0.9rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.watermark a {
    display: inline-block;
    margin-top: 0.5rem;
    color: #00ffcc;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(0, 255, 204, 0.3);
    border-radius: 20px;
    transition: var(--transition);
    background: rgba(0, 255, 204, 0.05);
}

.watermark a:hover {
    background: rgba(0, 255, 204, 0.15);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.2);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .mobile-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--text-light);
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.98);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--secondary-color);
        backdrop-filter: blur(10px);
    }

    .nav-links.nav-active {
        display: flex;
    }

    .about-grid,
    .contact-grid,
    .menu-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .order-links {
        flex-direction: column;
        align-items: center;
    }

    .floating-img {
        margin-top: 2rem;
    }
}