/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Afacad', serif;
}

body {
    background-color: #ede0d4;
    color: #333;
    line-height: 1.6;
    font-size: 1rem;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-image{
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: relative; 
    z-index: 1;        
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; 
    height: 100%;          
    box-sizing: border-box;  
}

.hero-title {
    font-size: clamp(50px, 8vw, 100px);
    line-height: 1.1;
    color: #ffffff;
    position: absolute;
    padding-right: 10px;
    text-align: right;
    top: 15%;
    right: 3%;
}

.hero-subtitle {
    font-size: clamp(20px, 6vw, 40px);
    color: #ffffff;
    position: absolute;
    padding-right: 10px;
    text-align: right;
    top: 25%;
    right: 5%;
}

.hero-tagline {
    font-size: clamp(14px, 3vw, 20px);
    line-height: 1.1;
    width: 30%;
    color: #ffffff;
    position: absolute;
    bottom: 10%;
    text-align: right;
    right: 5%;
    text-shadow: 2px 2px #4A3828;
}
/* Container */

.content-wrapper {
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 20px;

}

/* Header Section */
.restaurant-header {
    position: relative;
    text-align: center;
    color: white;
    height: 500px; /* Fixed hero height */
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-content p {
    position: relative;
    z-index: 1;
    font-size: clamp(14px, 3vw, 23px);
    text-align: justify;
    margin-bottom: 15px;
    color: #000000;
}

.cont-text p {
    position: relative;
    z-index: 1;
    font-size: clamp(14px, 3vw, 23px);
    text-align: justify;
    margin-bottom: 15px;
    color: #302f2f;
}


/* Content Wrapper */
.content-wrapper {
    padding: 40px 20px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

.restaurant-image {
    width: 100%;
    height: 100%;
}

.image-content{
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-position: bottom;
}

.main-cont {
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: justify;

}

.left-column .restaurant-image {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.image-caption {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 5px;
    font-style: italic;
    text-align: left;

}

.right-column .main-content {
    text-align: justify;
    font-size: 1.1rem;
    color: #444;
}

/* Footer Section */
.right-column-section {
    padding: 40px 20px;
    padding-bottom: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    padding-bottom: 30px;
}

.footer-grid .description-text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #555;
}

.footer-grid .restaurant-image {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.footer-grid .image-caption {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 5px;
    font-style: italic;
    text-align: right;
    
}

/* Responsive Design */
@media (max-width: 1024px) {
    .restaurant-header {
        height: 400px;
    }

    .content-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .restaurant-header {
        height: 300px;
    }

    .restaurant-header h1 {
        font-size: 2rem;
    }

    .content-wrapper,
    .footer-section {
        padding: 20px;
    }
}
