/* Basic Reset */

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


/* Smooth Scrolling */

html {
    scroll-behavior: smooth;
    max-width: 100%;
}


/* Luxury Steakhouse Color Scheme */

:root {
    --primary-bg: #000000;
    /* Black background for elegance */
    --secondary-bg: #1F1F1F;
    /* Dark gray */
    --white-bg: #FFFFFF;
    /* White Background */
    --accent-color: #DAA520;
    /* Rich gold */
    --text-color: #EAEAEA;
    /* Soft white */
    --text-muted: #CCCCCC;
    /* Muted text */
    --text-slate: #4d4d4d;
    /* slate text */
    --border-color: #8B5E3C;
    /* Elegant brownish gold */
    --deep-red: #6B0206;
    /* Deep red for accents */
    --dark-brown: #1a0305;
    /* Dark brown for richness */
}


/* Global Styles */

body {
    font-family: 'Lora', serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--primary-bg);
    width: 100%;
}


/* Typography Enhancements */

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-color);
    letter-spacing: 1.2px;
    /* Add slight spacing */
}


/* Subtle Hover Effect for Headings */

h2:hover,
h3:hover {
    color: var(--deep-red);
    transition: color 0.3s ease-in-out;
}


/* Paragraphs */

p {
    font-family: 'Lora', serif;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}


/* Sections */

section {
    padding: 20px;
}


/* Enhanced Call-to-Action Button */

.cta-button {
    background-color: var(--accent-color);
    color: var(--primary-bg);
    font-weight: 700;
    padding: 14px 28px;
    text-transform: uppercase;
    border: 2px solid var(--accent-color);
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: var(--deep-red);
    color: var(--text-color);
    border: 2px solid var(--deep-red);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.5);
    transform: scale(1.05);
}


/* Navigation */

nav {
    display: flex;
    height: 70px;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    background: rgba(18, 18, 18, 0.95);
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}


/* Nav Links */

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin-right: 25px;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.1rem;
    transition: color 0.3s ease-in-out;
}

.nav-list a:hover {
    color: var(--accent-color);
}


/* Logo */

.logo img {
    width: 75px;
}


/* Hero Section Enhancements */

#banner {
    height: 100vh;
    background-image: url('images/banner.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 20px;
}


/* Dark overlay for better readability */

#banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Slightly darker for readability */
    z-index: 1;
}


/* Hero Content */

#banner .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 20px;
}


/* Hero Headline */

#banner h1 {
    font-size: 5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-color);
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
}

@media screen and (max-width: 992px) {
    #banner h1 {
        font-size: 3rem;
    }
}


/* Hero Subtext */

#banner p {
    font-size: 1.8rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 20px auto;
}


/* Call-to-Action Button */

#banner .cta-button {
    background-color: var(--accent-color);
    color: var(--primary-bg);
    font-weight: 700;
    padding: 16px 32px;
    text-transform: uppercase;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease-in-out;
    margin-top: 20px;
}

#banner .cta-button:hover {
    background-color: var(--deep-red);
    color: var(--text-color);
    border: 2px solid var(--deep-red);
    box-shadow: 0 6px 15px rgba(184, 134, 11, 0.4);
}


/* Smooth Fade-In Effect */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Slide-Up Animation */

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* About Section */

#about {
    background-color: var(--dark-brown);
    padding: 100px 20px;
    color: var(--text-color);
    position: relative;
}


/* Wrapper for Flexbox Layout */

.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}


/* About Text */

.about-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-color);
    position: relative;
}


/* Underline Effect */

.about-text h2::after {
    content: "";
    width: 100px;
    height: 4px;
    background-color: var(--accent-color);
    position: absolute;
    bottom: -10px;
    left: 0;
}


/* Paragraphs */

.about-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
    margin-top: 20px;
}


/* Quote */

.about-text blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--accent-color);
    border-left: 5px solid var(--accent-color);
    padding-left: 15px;
    margin: 20px 0;
}


/* CTA Button */

.about-text .cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--accent-color);
    color: var(--primary-bg);
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease-in-out;
}

.about-text .cta-button:hover {
    background-color: var(--deep-red);
    color: var(--text-color);
    border: 2px solid var(--deep-red);
    box-shadow: 0 4px 10px rgba(184, 134, 11, 0.4);
}


/* About Image */

.about-image {
    flex: 1;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}


/* Responsive Design */

@media screen and (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .about-text {
        text-align: center;
    }
    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}


/* Menu Section */

#menu {
    background-color: var(--white-bg);
    padding: 100px 0;
    text-align: center;
    position: relative;
}


/* Subtle Background Texture */

#menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/menu-texture.jpg') repeat;
    opacity: 0.08;
    /* Subtle overlay */
    z-index: 0;
}


/* Menu Header */

.menu-header {
    text-align: center;
    margin-bottom: 50px;
}

.menu-header h2 {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-brown);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.menu-header h2::after {
    content: "";
    width: 120px;
    height: 4px;
    background-color: var(--accent-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}


/* Grid Layout */

.menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}


/* Category Box */

.menu-category {
    background: var(--secondary-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}


/* Hover Effect */

.menu-category:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.2);
}


/* Category Headers */

.menu-category h3 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}


/* Menu Items */

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border-color);
}

.menu-item:last-child {
    border-bottom: none;
}


/* Item Name */

.menu-item h4 {
    font-size: 1.5rem;
    color: var(--text-color);
    font-weight: 600;
}


/* Price Styling */

.menu-item span {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
}


/* Hover Effect */

.menu-item:hover h4 {
    color: var(--accent-color);
    transition: color 0.3s ease-in-out;
}


/* Responsive Design */

@media screen and (max-width: 992px) {
    .menu-container {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* Gallery Section */

#gallery {
    padding: 80px 0;
    background-color: var(--primary-bg);
    text-align: center;
}


/* Asymmetrical Grid Layout */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 10px;
    padding: 20px;
    max-width: 1500px;
    margin: 0 auto;
}


/* Gallery Items */

.gallery-item {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-radius: 10px; */
}


/* Asymmetrical Sizing */

.gallery-item.wide {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.tall2x {
    grid-row: span 3;
}


/* Image Styling */

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}


/* Hover Zoom Effect */

.gallery-item:hover img {
    transform: scale(1.05);
    box-shadow: 0px 8px 20px rgba(218, 165, 32, 0.4);
}


/* Responsive Adjustments */

@media screen and (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* Lightbox Overlay */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}


/* Lightbox Image */

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}


/* Reservation Section */

#reservation {
    background-image: url('images/reservation-bg.jpg');
    /* Elegant background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 0;
    text-align: center;
}


/* Dark overlay for contrast */

#reservation::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark overlay */
    z-index: 1;
}


/* Reservation Content */

.reservation-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-color);
}


/* Reservation Heading */

.reservation-text h2 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}


/* Reservation Details */

.reservation-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.reservation-text a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.reservation-text a:hover {
    color: var(--accent-color);
}


/* CTA Button */

.reservation-text .cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--accent-color);
    color: var(--primary-bg);
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease-in-out;
    margin-top: 20px;
}


/* Hover Effect */

.reservation-text .cta-button:hover {
    background-color: var(--deep-red);
    color: var(--text-color);
    border: 2px solid var(--deep-red);
    box-shadow: 0 4px 10px rgba(218, 165, 32, 0.4);
}


/* Contact Section */

#contact {
    background-color: var(--primary-bg);
    padding: 80px 20px;
    text-align: center;
}


/* Contact Content */

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
}


/* Contact Details */

.contact-details {
    flex: 1;
    text-align: left;
    color: var(--text-color);
}


/* Contact Heading */

.contact-details h2 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}


/* Contact Information */

.contact-details p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.contact-details i {
    color: var(--accent-color);
    margin-right: 10px;
}


/* Clickable Links */

.contact-details a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.contact-details a:hover {
    color: var(--accent-color);
}


/* Map Container */

.contact-map {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}


/* Responsive Layout */

@media screen and (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        text-align: center;
    }
    .contact-details {
        text-align: center;
    }
}


/* Footer Styling */

footer {
    background-color: var(--secondary-bg);
    color: var(--text-color);
    padding: 50px 0;
    border-top: 3px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-about img {
    width: 150px;
    margin-bottom: 15px;
}

.footer-links h4,
.footer-hours h4,
.footer-newsletter h4,
.footer-social h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.footer-links ul,
.footer-hours ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li,
.footer-hours ul li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}


/* Newsletter Signup */

.footer-newsletter form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-newsletter input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    text-align: center;
}

.footer-newsletter button {
    background-color: var(--accent-color);
    color: var(--primary-bg);
    font-weight: bold;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.footer-newsletter button:hover {
    background-color: var(--deep-red);
}


/* Social Media Icons */

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--primary-bg);
    border-radius: 50%;
    font-size: 1.2rem;
    line-height: 40px;
    text-align: center;
    margin-right: 10px;
    transition: transform 0.3s, background 0.3s;
}

.footer-social a:hover {
    background-color: var(--deep-red);
    transform: scale(1.1);
}


/* Footer Bottom */

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--accent-color);
}


/* Responsive Design */

@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .footer-content {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* Responsive Design */

@media screen and (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background-color: var(--primary-bg);
        text-align: center;
        padding: 1rem 0;
    }
    .nav-list.active {
        display: flex;
    }
    .hamburger-menu {
        display: flex;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* Fade-in Animation */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Apply Fade-in Animation to Sections */

section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-in-out;
}


/* Animate When Visible */

section.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Hover Effect on Images */

.menu-item img,
.gallery-grid img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item img:hover,
.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 20px rgba(218, 165, 32, 0.3);
}


/* Button Hover with Scale */

.cta-button:hover {
    transform: scale(1.1);
}