/* Global Styles */
:root {
    --primary: #FF5722; /* Flame Orange */
    --secondary: #212121; /* Dark Gray */
    --dark: #121212; /* Almost Black */
    --light: #f4f4f4;
    --text-color: #e0e0e0;
    --bg-color: #1a1a1a;
    --nav-height: 80px;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

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

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--dark);
}

/* Navbar */
.navbar {
    background-color: rgba(18, 18, 18, 0.95);
    height: var(--nav-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--light);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--light);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 90vh;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.text-primary {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #ddd;
}

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

/* Page Header */
.page-header {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 0;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), var(--dark));
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Section Common */
.section {
    padding: 80px 0;
    background-color: var(--secondary);
}

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

.section-header h2 {
    font-size: 2.5rem;
    display: inline-block;
    position: relative;
}

.divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Features */
.features {
    padding: 80px 0;
    background-color: var(--secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background-color: var(--dark);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Featured Menu */
.featured-menu {
    padding: 80px 0;
    background-color: var(--dark);
}

.bg-light {
    background-color: var(--dark); /* Override for dark theme */
}

.menu-section {
    padding: 80px 0;
    background-color: var(--dark);
}

.menu-category + .menu-category {
    margin-top: 60px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: var(--light);
}

.category-title i {
    color: var(--primary);
}

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

.menu-item {
    background-color: var(--secondary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.menu-item:hover {
    transform: scale(1.02);
}

.menu-img {
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

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

.menu-content {
    padding: 25px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.menu-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0;
    color: var(--light);
    line-height: 1.3;
}

.menu-content p {
    color: #aaa;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.price {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 20px;
    font-weight: 700;
    white-space: nowrap;
    margin-left: 15px;
    font-size: 0.9rem;
}

/* About Preview */
.about-preview {
    padding: 100px 0;
    background-color: var(--secondary);
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    color: #ccc;
}

.about-list {
    margin-top: 30px;
}

.about-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.about-list i {
    color: var(--primary);
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 20px 20px 0 rgba(255, 87, 34, 0.2);
}

/* Policy Pages */
.policy-section {
    padding: 80px 0;
    background-color: var(--secondary);
}

.policy-content {
    background-color: var(--dark);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-content h2 {
    color: var(--primary);
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    margin-bottom: 20px;
    color: #ccc;
    font-size: 1.05rem;
}

.policy-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    color: #ccc;
}

.policy-content li {
    margin-bottom: 10px;
}

.policy-content address {
    font-style: normal;
    color: #ccc;
    line-height: 1.8;
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 5px;
    border-left: 3px solid var(--primary);
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
    background-color: var(--secondary);
}

.contact-wrapper {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary);
    background: rgba(255, 87, 34, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.info-item p {
    color: #ccc;
}

.opening-hours {
    background: var(--dark);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    margin-top: 40px;
}

.opening-hours h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.opening-hours ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #ccc;
    border-bottom: 1px dashed #333;
    padding-bottom: 15px;
}

.opening-hours ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.opening-hours ul li span {
    font-weight: 600;
    color: #fff;
}

.contact-form-container {
    flex: 1;
    background: var(--dark);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}

.contact-form-container h2 {
    color: var(--primary);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--secondary);
    border: 1px solid #333;
    border-radius: 5px;
    color: #fff;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.map-section {
    height: 450px;
    background: var(--secondary);
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #ccc;
}

.contact-list i {
    color: var(--primary);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 1.2rem;
        max-width: 70%;
    }

    .nav-links {
        position: absolute;
        top: var(--nav-height);
        right: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background-color: var(--dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
    }

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

    .about-grid {
        flex-direction: column;
    }

    .about-image {
        box-shadow: 10px 10px 0 rgba(255, 87, 34, 0.2);
    }
}
