/* Base Variables */
:root {
    --main-dark: #1e2a2a;
    --main-darker: #151e1e;
    --accent-color: #d18251;
    --text-white: #ffffff;
    --text-gray: #a8a8a8;
    --font-primary: 'Montserrat', sans-serif;
    --font-cursive: 'Great Vibes', cursive;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--main-dark);
    color: var(--text-white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
.header {
    background-color: var(--main-darker);
    padding: 1rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    text-align: center;
}

.logo h1 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo p {
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--text-gray);
    position: relative;
}

.logo p::before,
.logo p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background-color: var(--text-gray);
}

.logo p::before {
    left: -25px;
}

.logo p::after {
    right: -25px;
}

.nav-menu ul {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.nav-menu a.active {
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 4px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-icon {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.btn-enquiry {
    background-color: var(--accent-color);
    color: var(--text-white);
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn-enquiry:hover {
    background-color: #b56c41;
}

/* Common Components */
.cursive-text {
    font-family: var(--font-cursive);
    color: var(--text-gray);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-white);
    padding: 0.8rem 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: background 0.3s;
    margin-top: 1.5rem;
}

.btn-primary:hover {
    background-color: #b56c41;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 30, 30, 0.7);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin: 1rem 0;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* About Section */
.about-section {
    padding: 5rem 5%;
    text-align: center;
    background-color: var(--main-dark);
}

.about-section .cursive-text {
    margin-bottom: 0px;
}

.about-section h2 {
    font-size: 2rem;
    letter-spacing: 4px;
    margin-bottom: 3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--main-darker);
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    text-align: center;
}

.about-text-box h3 {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.about-text-box p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Special Section */
.special-section {
    padding: 5rem 5%;
    background-color: var(--main-dark);
}

.special-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.special-image {
    flex: 1;
}

.special-image img {
    width: 100%;
    height: auto;
    display: block;
}

.special-menu {
    flex: 1;
}

.menu-title-header {
    margin-bottom: 2rem;
}

.menu-title-header h2 {
    font-size: 2rem;
    letter-spacing: 4px;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.2rem;
}

.menu-item-header h4 {
    font-size: 1rem;
    letter-spacing: 1px;
    white-space: nowrap;
}

.menu-line {
    flex: 1;
    height: 1px;
    background-color: #333;
    /* Darker line */
}

.menu-price {
    color: var(--accent-color);
    font-weight: 600;
}

.menu-item p {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* Animations (Intersection Observer Targets) */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
}

.delay-5 {
    transition-delay: 1.0s;
}

.delay-6 {
    transition-delay: 1.2s;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    /* Hide menu on smaller screens for simplicity */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        background: none;
    }

    .about-text-box {
        background: var(--main-darker);
    }

    .special-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Custom Page Heroes */
.page-hero {
    height: 40vh;
    background-color: var(--main-darker);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    /* Offset for fixed header */
    position: relative;
    background-size: cover;
    background-position: center;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 30, 30, 0.7);
}

.page-hero h1 {
    font-size: 3rem;
    letter-spacing: 4px;
    position: relative;
    z-index: 10;
}

.page-content {
    padding: 5rem 5%;
}

/* Shop Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.shop-item {
    background: var(--main-darker);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid transparent;
    transition: border-color 0.3s;
}

.shop-item:hover {
    border-color: var(--accent-color);
}

.shop-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.shop-item h4 {
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.shop-item .price {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 1rem;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post {
    background: var(--main-darker);
}

.blog-post img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content-box {
    padding: 1.5rem;
}

.blog-content-box p.date {
    color: var(--accent-color);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.blog-content-box h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact layout */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media(max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--main-darker);
    border: 1px solid #333;
    color: var(--text-white);
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.contact-details p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

/* Footer Element Customization */
.footer {
    background-color: var(--main-darker);
    padding: 4rem 5% 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--text-white);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-col h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    color: var(--text-white);
    background-color: #333;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    transition: background 0.3s;
}

.social-icons a:hover {
    background-color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    color: var(--text-gray);
    font-size: 0.8rem;
}