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

:root {
    --primary: #395144;
    --secondary: #c0a080;
    --accent: #395144;
    --light: #f8f5f0;
    --dark: #3e2723;
    --text: #5a4a42;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h3, h4 {
    font-family: 'Playfair Display', serif;
    color:#395144;
    font-weight: 700;
}
h2 {
    font-family:Arial, Helvetica, sans-serif;
    color:#395144;
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    font-size: 1.4rem;
    font-family:Arial, Helvetica, sans-serif;
}

.btn:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}


/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;;
    background: #395144;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: White;
    text-decoration: none;
}
.logo-img {
    width: 250px; /* Set the width of the SVG image */
    height: 80px; /* Maintain aspect ratio */
    margin-right: 5px; /* Add spacing between the image and text */
}
.logo-img2 {
    margin-top: 100px;
    width: 700px; /* Set the width of the image */
    height: auto; /* Maintain aspect ratio */
}

.logo span {
    color: white;
}

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

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: white;
}

nav ul li a:hover:after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
.catering-offerings {
padding: 60px 5%;
background-color: #f9f9f9;
text-align: center;
}


.section-title {
font-size: 2.5rem;
color: #395144;
margin-bottom: 20px;
}

.section-description {
font-size: 1.2rem;
color: #333;
margin-bottom: 40px;
}

.offerings-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}

.offering-item {
background-color: white;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
overflow: hidden;
text-align: center;
padding: 20px;
}

.offering-item img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 10px;
margin-bottom: 15px;
}

.offering-item h3 {
font-size: 1.5rem;
color: #395144;
margin-bottom: 10px;
font-family: Arial, Helvetica, sans-serif;
}

.offering-item p {
font-size: 1rem;
color: #555;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(23, 23, 23, 0.4), rgba(47, 47, 47, 0.4)), url('background.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    font-family: Arial, Helvetica, sans-serif;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: Arial, Helvetica, sans-serif;
}

/* About Section */
.about {
    padding: 150px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--accent);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

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

.about-text {
    flex: 1;
}

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

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}


.experiences {
padding: 60px 5%;
background-color: #f9f9f9;
text-align: center;
}

.section-title {
font-size: 2.5rem;
color: #395144;
margin-bottom: 20px;
}

.section-description {
font-size: 1.2rem;
color: #333;
margin-bottom: 40px;
}

.experiences-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}

.experience-item {
background-color: white;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
overflow: hidden;
text-align: center;
padding: 20px;
}

.experience-item img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 10px;
margin-bottom: 15px;
}

.experience-item h3 {
font-size: 1.5rem;
color: #395144;
margin-bottom: 10px;
font-family: Arial, Helvetica, sans-serif;
}

.experience-item p {
font-size: 1rem;
color: #555;
}


.choice-cards {
display: grid; /* Use CSS Grid for two-column layout */
grid-template-columns: repeat(2, 1fr); /* Two equal columns */
gap: 20px; /* Add spacing between cards */
margin-top: 20px;
}

.choice-card {
background-color: white;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
padding: 20px;
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add hover effect */
}

.choice-card:hover {
transform: translateY(-5px); /* Slight lift effect on hover */
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.choice-card img {
width: 100%;
height: 150px;
object-fit: cover; /* Ensure the image fits within the card */
border-radius: 10px;
margin-bottom: 15px;
}

.choice-card h3 {
font-size: 1.5rem;
color: #395144;
margin-bottom: 10px;
}

.choice-card p {
font-size: 1rem;
color: #555;
margin-bottom: 20px;
}

.btn-select {
background-color: #395144;
color: white;
padding: 10px 20px;
font-size: 1rem;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}

.btn-select:hover {
background-color: #ffc845; /* Change button color on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
.choice-cards {
grid-template-columns: 1fr; /* Stack cards vertically on smaller screens */
}
}


/* Menu Section */
.menu {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--light) 70%, #f0e6d8 100%);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.menu-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.menu-item-img {
    height: 350px;
    overflow: hidden;
}

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

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

.menu-item-content {
    padding: 25px;
}

.menu-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.menu-item p {
    margin-bottom: 15px;
    color: #777;
}
.menu-item p2 {
    margin-bottom: 15px;
    color: #0fae31;
    font-weight: 900;
}

.price {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.3rem;
}

.catering-orders {
padding: 60px 5%;
background-color: #f9f9f9;
text-align: center;
}

.section-title {
font-size: 2.5rem;
color: #395144;
margin-bottom: 20px;
}

.section-description {
font-size: 1.2rem;
color: #333;
margin-bottom: 40px;
}

.order-form {
max-width: 600px;
margin: auto;
text-align: left;
}

.order-form label {
font-size: 1rem;
color: #333;
display: block;
margin-bottom: 8px;
}

.order-form input,
.order-form select,
.order-form textarea {
width: 100%;
padding: 10px;
margin-bottom: 20px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 1rem;
}

.order-form button {
background-color: #395144;
color: white;
padding: 12px 20px;
font-size: 1.2rem;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}

.order-form button:hover {
background-color: #ffc845;
}



.confirmation-box {
display: none; /* Hidden by default */
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
text-align: center;
z-index: 1000;
}

.confirmation-box p {
font-size: 1.2rem;
color: #395144;
margin-bottom: 20px;
}

.confirmation-box button {
background-color: #395144;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 1rem;
}

.confirmation-box button:hover {
background-color: #ffc845;
}
/* Location Section */
.location {
    padding: 100px 0;
}

.location-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.location-info {
    flex: 1;
}

.hours {
    margin: 30px 0;
}

.hours li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
}

.map {
    flex: 1;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background: #395144;
    color: white;
    padding: 70px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    padding: 0 20px;
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

.newsletter form {
    display: flex;
    margin-top: 20px;
}

.newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter button {
    background: var(--accent);
    color: var(--dark);
    border: none;
    padding: 0 20px;
    font-weight: 600;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter button:hover {
    background: #ffc845;
}

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


.back-button {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    background-color: #395144;
    padding: 10px 20px;
    border: 1px solid #395144;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    display:grid; /* Correctly positioned semicolon */
    
}

.back-button:hover {
    background-color: #ffffff;
    color: #395144;
}


.social-links img {
    width: 40px;
    height: 40px;
    border-radius: 50%; /* optional: makes it circular */
    transition: transform 0.3s ease;
}

.social-links a:hover img {
    transform: scale(1.1); /* zoom on hover */
}


/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    .logo-img {
        width: 150px; /* Reduce width for smaller screens */
        height: auto; /* Maintain aspect ratio */
    }

    .logo-img2 {
        margin-top: 50px; /* Reduce margin for smaller screens */
        width: 400px; /* Reduce width for smaller screens */
        height: auto; /* Maintain aspect ratio */
    }

    
    .about-content, .location-content {
        flex-direction: column;
    }
    
    .footer-content {
        flex-wrap: wrap;
    }
    
    .footer-col {
        flex: 0 0 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--light);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
    }
    nav ul li {
        margin: 10px 0;
    }
    nav ul li a {
        font-size: 1.2rem;
    }
    
    nav ul.active {
        transform: translateY(0);
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .footer-col {
        flex: 0 0 100%;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {
.experiences-grid {
grid-template-columns: 1fr; /* Stacks items vertically on smaller screens */
}

.experience-item img {
height: auto; /* Adjust image height for smaller screens */
}

.experience-item h3 {
font-size: 1.2rem; /* Reduce font size for smaller screens */
}

.experience-item p {
font-size: 0.9rem; /* Reduce font size for smaller screens */
}
}



/* Responsive: Catering Form & Offerings */
@media (max-width: 768px) {
    .catering-offerings,
    .catering-orders {
      padding: 40px 5%;
    }
  
    .offerings-grid {
      grid-template-columns: 1fr; /* stack service cards */
    }
  
    .offering-item img {
      height: auto;
    }
  
    .choice-cards {
      grid-template-columns: 1fr; /* stack event-type cards */
    }
  
    .order-form {
      padding: 0 10px;
    }
  
    .order-form label,
    .order-form input,
    .order-form select,
    .order-form textarea,
    .order-form button {
      font-size: 1rem;
    }
  
    .btn {
      font-size: 1rem;
      padding: 10px 20px;
    }
  
    .back-button {
      font-size: 0.9rem;
      padding: 8px 16px;
      text-align: center;
      display: inline-block;
    }
  }
  
  @media (max-width: 576px) {
    .section-title {
      font-size: 2rem;
    }
  
    .section-description {
      font-size: 1rem;
    }
  
    .offering-item h3,
    .experience-item h3,
    .choice-card h3 {
      font-size: 1.2rem;
    }
  
    .offering-item p,
    .choice-card p {
      font-size: 0.95rem;
    }
  
    .choice-card img {
      height: 180px;
    }
  
    .order-form textarea {
      height: 60px;
    }
  }
  

  #photo-quote {
    background: #395144;
    background-size: cover;
    background-position: center;
    color: #395144;
    text-align: center;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.photo-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    color: white
}
.custom-text {
    color: #395144; /* Set the text color to #395144 */
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-family: Arial, Helvetica, sans-serif;
}

.camera-section {
    margin-bottom: 40px;
}

#video, #canvas {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    margin: 0 auto 20px;
    display: block;
    background-color: #000;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

.camera-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.quote-result {
    display: none;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    margin-top: 30px;
}

.customer-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 25px;
    border: 5px solid #d4a76a;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.quote-text {
    font-size: 28px;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.4;
    color: #395144
}

.quote-author {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}