:root {
    --primary-color: #fde82a;
    /* Gold */
    --secondary-color: #ffffff;
    /* Deep Red */
    --text-color: #333;
    --bg-color: #FDFBF7;
    /* Cream/Off-white */
    --white: #fff;
    --dark: #1a1a1a;
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* User requested bold everywhere */
    font-weight: 700;
}

/* Global Typography tweaks */
body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    background: url('back.png') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    cursor: pointer;
    /* Indicate entire page is clickable */
}

html {
    height: 100%;
}

main {
    flex: 1;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #FFD700;
    /* Yellow */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    /* Reduced padding */
}

.logo img {
    height: 100px;
    /* Increased logo size */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    font-weight: 700;
    transition: color 0.3s;
    font-size: 1.2rem;
    color: white !important;
    /* White on Yellow */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-links li a:hover {
    color: black !important;
    /* Black on Hover for contrast */
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section - Modified to show background */
/* Hero Section - Text White, Big, Bold */
/* Hero Section - Text White, Big, Bold */
#hero {
    height: 70vh;
    /* Increased slightly */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    padding-top: 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    /* Subtle overlay for contrast */
}

/* About Section Card Style */
#about {
    background-color: rgba(255, 255, 255, 0.95);
    margin: -100px auto 4rem;
    /* Overlap hero slightly for modern look */
    border-radius: 15px;
    width: 85%;
    max-width: 900px;
    padding: 60px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: black;
    position: relative;
    z-index: 10;
}

.hero-overlay {
    display: none;
    /* Removing overlay if user wants picture visible. Or we can keep it for readability. Let's start without or light. */
}

/* About Section Styling for readability over background */
/* About Section Styling */
/* About Section Card Style */
#about {
    background-color: rgba(255, 255, 255, 0.95);
    margin: -100px auto 4rem;
    /* Overlap hero slightly for modern look */
    border-radius: 15px;
    width: 85%;
    max-width: 900px;
    padding: 60px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: black;
    position: relative;
    z-index: 10;
}

#about h2,
#about p {
    color: black !important;
}

.hero-content h1 {
    font-size: 5rem;
    /* Large but balanced */
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: white;
    font-weight: 700;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-contact {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-contact .phone {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
    letter-spacing: 1px;
}

.hero-contact .availability {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0;
    color: white;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 30px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: #bfa13f;
    /* Darker gold */
}

/* Sections General */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.menu-item p {
    color: #666;
    margin-bottom: 1rem;
}

.menu-item .price {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Footer */
footer {
    background-color: #FFD700;
    /* Yellow */
    color: white !important;
    /* White on Yellow */
    padding: 2rem 0;
    text-align: center;
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }

    .nav-links li {
        opacity: 0;
    }

    .burger {
        display: block;
    }
}

.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}