/* 1. Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Times New Roman', serif;
    background-color: #dfd7cc;
}

/* 2. Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #dfd7cc; 
    height: 80px;
    padding: 0 40px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    font-size: 1.1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #5b4a3a;
}

.button-group button {
    background: transparent;
    border: none;
    padding: 10px 15px;
    font-size: 0.9rem;
    cursor: pointer;
    color: #5b4a3a;
    font-family: inherit;
}

.button-group button:hover {
    color: #000;
}

.book-btn {
    background-color: #2d6aa3dc;
    color: white;
    border: none;
    height: 50px;
    padding: 0 35px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
}

/* 3. Hero Section & Video Area */
.hero {
    height: 100vh;
    width: 100%;
    position: relative; 
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 40px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover; 
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); 
    z-index: 0;
}

/* Hero Overlay Text */
.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 5;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.welcome-label {
    letter-spacing: 6px;
    font-size: 1rem;
    margin-bottom: 10px;
}

.hero-brand {
    font-size: 6.5rem;
    font-style: italic;
    font-weight: 100;
    line-height: 0.8;
}

.hero-tagline {
    letter-spacing: 4px;
    font-size: 1.2rem;
    margin-top: 15px;
    text-transform: uppercase;
}

/* 4. Scroll & Back to Top Buttons */
.scroll-link {
    text-decoration: none;
    display: inline-block;
    z-index: 1; 
}

.scroll-arrow {
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.scroll-arrow:hover {
    transform: scale(1.2);
}

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background-color: white;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 100;
}

.back-to-top span {
    font-size: 2rem;
    color: #333;
}

/* 5. Project Grid Section */
.project-grid {
    background-color: #a2a5a6;
    padding: 80px 10%;
    color: rgba(53, 41, 41, 0.865);
}

.main-title {
    font-size: 3.5rem;
    margin-bottom: 60px;
    font-weight: normal;
}

.project-row {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 100px;
}

.project-row.reverse {
    flex-direction: row-reverse;
}

.project-text {
    flex: 1;
    padding-top: 20px;
}

.project-text h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
}

.project-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 400px;
}

.project-image {
    flex: 1.5;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.project-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-image:hover {
    outline: 3px solid #3e6d73; 
    outline-offset: 10px;
    transform: translateY(-5px);
}

.project-image:hover img {
    transform: scale(1.08);
}

/* 6. Footer Styling */
.contact-footer {
    background-color: #5d3a2a; 
    color: white;
    padding: 80px 10%;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.contact-box {
    flex: 1;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-box h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: normal;
}

.contact-box p, .contact-box a {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.tag-us-pill {
    margin-top: 30px;
    padding: 10px 20px;
    border: 1px solid white;
    border-radius: 50px;
    display: inline-block;
    font-style: italic;
}

/* 7. Sub-page & Dynamic Content Styling */
#contentHolder {
    width: 100%;
    min-height: 100vh;
    background-color: #c5bfb7;
}

.full-page-section, .about-page-container {
    min-height: 100vh;
    width: 100%;
    padding: 120px 10% 80px 10%;
    display: flex;
    flex-direction: column;
}

.back-home-btn {
    margin-top: 30px;
    padding: 12px 25px;
    background-color: #5b4a3a;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.back-home-btn:hover {
    background-color: #2d6aa3;
}

/* 8. Media Queries */
@media (max-width: 768px) {
    .project-row, .project-row.reverse {
        flex-direction: column;
    }
    .main-title {
        font-size: 2.5rem;
    }
    .hero-brand {
        font-size: 4rem;
    }
    .contact-container {
        flex-direction: column;
    }
}
.content-holder {
    font-size: 20px;
    margin-bottom: 60px;
    font-weight: normal;
}
/* menu.ccs */
/* style.css */
body { 
    font-family: 'Georgia', serif; 
    background-color: #d2cdc1; 
    margin: 0; 
    padding: 0; 
    color: #333; 
}

/* style.css - Updated Header Section */
.header-banner {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 60px 15px;
    text-align: center;
    margin-bottom: 40px;
    /* This ensures vertical alignment */
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
}

.main-title {
    font-size: 4rem; /* Slightly larger for impact */
    letter-spacing: 10px; /* Wider spacing for a luxury feel */
    margin: 0;
    color: #2c3e50;
    text-transform: uppercase;
   line-height: 1.2;
}

.sub-title {
    font-size: 1.2rem;
    letter-spacing: 6px;
    color: #555;
    text-transform: uppercase;
    margin-top: 15px;
    border-top: 1px solid #2c3e50; /* Adds a nice divider line */
    padding-top: 10px;
    width: fit-content; /* Centers the border line */
}
.menu-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* Category Headers */
.category-section { margin-bottom: 70px; }

.category-title { 
    font-size: 1.8rem; 
    border-bottom: 2px solid #2c3e50; 
    display: inline-block;
    margin-bottom: 30px;
    padding-right: 50px;
    color: #2c3e50;
    text-transform: uppercase;
}

/* Card Grid Layout */
.menu-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 40px; 
}

.menu-card { 
    background: #fff; 
    border-radius: 8px; 
    overflow: hidden; 
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.menu-card:hover { transform: translateY(-5px); }

.food-image { 
    width: 100%; 
    height: 220px; 
    object-fit: cover; 
    background-color: #eee;
}

.card-body { 
    padding: 25px; 
    display: flex; 
    flex-direction: column; 
    flex-grow: 1; 
}

.item-name { 
    font-size: 1.3rem; 
    margin: 0 0 10px 0; 
    color: #111; 
    font-weight: bold;
}

.description { 
    font-size: 0.95rem; 
    color: #666; 
    margin-bottom: 20px; 
    font-style: italic;
    flex-grow: 1; /* Aligns price to bottom */
}

.price-tag { 
    font-size: 1.2rem; 
    color: #b38b59; 
    font-weight: bold;
    text-align: right;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}
.main-title-text{
    padding-top: 100px;
    font-size: 3.5rem; 
    line-height: 1.2;
    color:  #2c3e50;
}
/* Location Page Styles */
.location-section {
    padding: 40px 20px;
    animation: fadeIn 0.5s ease-in;
    color: #333;
}

.location-header {
    text-align: center;
    margin-bottom: 40px;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-wrapper {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.direction-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #007BFF;
}

.info-card h3 {
    margin-top: 0;
    color: #222;
}

.info-card ul {
    padding-left: 20px;
    line-height: 1.6;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .direction-details {
        grid-template-columns: 1fr;
    }
}