/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f5f0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #d4a76a;
    margin: 1rem auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #d4a76a;
    color: #fff;
}

.btn-primary:hover {
    background: #c09255;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 167, 106, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #d4a76a;
    border: 2px solid #d4a76a;
}

.btn-secondary:hover {
    background: #d4a76a;
    color: #fff;
    transform: translateY(-3px);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 10px 20px;
    background: #fff;
    border: 2px solid #d4a76a;
    color: #d4a76a;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(212, 167, 106, 0.1);
    transition: width 0.3s ease;
    z-index: 0;
}

.filter-btn:hover::before {
    width: 100%;
}

.filter-btn:hover,
.filter-btn.active {
    background: #d4a76a;
    color: #fff;
    z-index: 1;
}

.filter-btn span {
    position: relative;
    z-index: 2;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h2 {
    color: #d4a76a;
    font-family: 'Playfair Display', serif;
}

.nav-menu ul {
    display: flex;
    list-style: none;
}

.nav-menu ul li {
    margin-left: 2rem;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: #d4a76a;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4a76a;
    transition: width 0.3s ease;
}

.nav-menu ul li a:hover::after,
.nav-menu ul li a.active::after {
    width: 100%;
}

.cta-button .btn {
    margin-left: 2rem;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1705972018470-a89eda1c6ce4?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1yZWxhdGVkfDV8fHxlbnwwfHx8fHw%3D');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons .btn {
    margin: 0 1rem;
}

/* Daily Specials / Freshness Clock */
.daily-specials {
    padding: 4rem 0;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://images.unsplash.com/photo-1558315992-4513390e3a20?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
}

.specials-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.freshness-clock h3,
.todays-specials h3 {
    color: #d4a76a;
    margin-bottom: 1rem;
}

.countdown {
    font-size: 2rem;
    font-weight: 700;
    color: #d4a76a;
}

.special-text {
    font-size: 1.2rem;
    font-style: italic;
}

/* Featured Products */
.featured-products {
    padding: 5rem 0;
    background: #f9f5f0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #d4a76a;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #d4a76a;
    margin-bottom: 1rem;
}

/* About Preview */
.about-preview {
    padding: 5rem 0;
    background: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.about-image img {
    flex: 1;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Events & Catering */
.events-catering {
    padding: 5rem 0;
    background: #f9f5f0;
}

.events-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.events-image {
    flex: 1;
}

.events-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.events-text {
    flex: 1;
}

.events-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.events-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

/* Gallery */
.gallery {
    padding: 5rem 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Newsletter */
.newsletter {
    padding: 5rem 0;
    background: linear-gradient(rgba(212, 167, 106, 0.9), rgba(212, 167, 106, 0.9)), url('https://images.unsplash.com/photo-1558315992-4513390e3a20?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
}

.newsletter-form .btn {
    padding: 15px 30px;
}

.sidebar-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-form input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.sidebar-form .btn {
    padding: 12px;
    width: 100%;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer h3 {
    color: #d4a76a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #d4a76a;
}

.footer-contact p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: #d4a76a;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #444;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #d4a76a;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #aaa;
}

/* Menu Page Styles */
.menu-filters {
    padding: 2rem 0;
    background: #fff;
}

.menu-items {
    padding: 3rem 0;
    background: #f9f5f0;
}

.menu-grid {
    display: grid;
    gap: 3rem;
}

.category-title {
    font-size: 1.8rem;
    color: #d4a76a;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #d4a76a;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px dashed #ddd;
}

.menu-item:last-child {
    border-bottom: none;
}

.item-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.item-info p {
    color: #666;
    font-size: 0.9rem;
}

.item-price {
    font-weight: 600;
    color: #d4a76a;
    font-size: 1.1rem;
    align-self: center;
}

.highlight {
    background: rgba(212, 167, 106, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #d4a76a;
}

.daily-specials-board {
    padding: 4rem 0;
    background: #fff;
}

.specials-board {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.special-item {
    background: #f9f5f0;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.special-item h3 {
    color: #d4a76a;
    margin-bottom: 1rem;
}

.menu-cta {
    padding: 4rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1509440159596-0249088772ff?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Page Styles */
.our-story {
    padding: 4rem 0;
    background: #fff;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.story-text {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.our-mission {
    padding: 4rem 0;
    background: #f9f5f0;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-text {
    flex: 1;
}

.mission-list {
    list-style-type: none;
    margin-top: 1.5rem;
}

.mission-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.mission-list li::before {
    content: '✓';
    color: #d4a76a;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.team {
    padding: 4rem 0;
    background: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #666;
}

.values {
    padding: 4rem 0;
    background: #f9f5f0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 2.5rem;
    color: #d4a76a;
    margin-bottom: 1rem;
}

.about-cta {
    padding: 4rem 0;
    background: linear-gradient(rgba(212, 167, 106, 0.9), rgba(212, 167, 106, 0.9)), url('https://images.unsplash.com/photo-1558315992-4513390e3a20?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

/* Order Page Styles */
.order-process {
    padding: 2rem 0;
    background: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: #d4a76a;
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: #d4a76a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(212, 167, 106, 0.3);
    transition: all 0.3s ease;
}

.process-step.active .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 167, 106, 0.5);
    animation: pulse 2s infinite;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

.product-selection {
    padding: 3rem 0;
    background: #f9f5f0;
}

.order-content {
    display: flex;
    gap: 2rem;
}

.products-section {
    flex: 3;
}

.cart-section {
    flex: 1;
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: fit-content;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.cart-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #d4a76a;
    border-radius: 10px 10px 0 0;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.category-filter .filter-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.product-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    display: flex;
    transition: all 0.3s ease;
}

.product-item.added-to-cart {
    box-shadow: 0 5px 15px rgba(212, 167, 106, 0.3);
    border: 1px solid #d4a76a;
}

.product-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
    flex: 1;
}

.product-info h3 {
    margin-bottom: 0.5rem;
}

.product-info p {
    color: #666;
    margin-bottom: 1rem;
}

.product-price {
    font-weight: 600;
    color: #d4a76a;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #d4a76a;
    background: #fff;
    color: #d4a76a;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-items {
    min-height: 200px;
    margin-bottom: 2rem;
}

.empty-cart {
    text-align: center;
    padding: 2rem;
    color: #999;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item-details h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.cart-item-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.cart-item-price {
    color: #d4a76a;
    font-weight: 500;
    min-width: 80px;
}

.cart-quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #d4a76a;
    background: #fff;
    color: #d4a76a;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cart-qty-btn:hover {
    background: #d4a76a;
    color: #fff;
}

.cart-qty {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-item-total {
    font-weight: 600;
    color: #333;
    min-width: 70px;
    text-align: right;
}

.cart-item-actions {
    display: flex;
    gap: 0.5rem;
}

.remove-item {
    background: none;
    border: none;
    color: #d4a76a;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.remove-item:hover {
    color: #c09255;
    background: rgba(212, 167, 106, 0.1);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.summary-row.total {
    font-weight: bold;
    font-size: 1.2rem;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid #eee;
    color: #d4a76a;
}

.cart-summary {
    background: #f9f5f0;
    padding: 1rem;
    border-radius: 8px;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.continue-shopping {
    padding: 15px;
    text-align: center;
}

.checkout-btn {
    padding: 15px;
    text-align: center;
}

.delivery-options {
    padding: 4rem 0;
    background: #fff;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.delivery-option {
    text-align: center;
    padding: 2rem;
    border: 2px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.delivery-option:hover {
    border-color: #d4a76a;
    transform: translateY(-5px);
}

.option-icon {
    font-size: 2.5rem;
    color: #d4a76a;
    margin-bottom: 1rem;
}

/* Catering Page Styles */
.catering-intro {
    padding: 4rem 0;
    background: #f9f5f0;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.catering-services {
    padding: 4rem 0;
    background: #f9f5f0;
}

.catering-menu {
    padding: 4rem 0;
    background: #fff;
}

.menu-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.menu-category h3 {
    color: #d4a76a;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #d4a76a;
    font-size: 1.4rem;
}

.menu-category ul {
    list-style-type: none;
}

.menu-category li {
    padding: 0.75rem 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    justify-content: space-between;
}

.menu-category li:last-child {
    border-bottom: none;
}

.catering-process {
    padding: 4rem 0;
    background: #f9f5f0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step .step-number {
    width: 50px;
    height: 50px;
    background: #d4a76a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
    font-size: 1.2rem;
}

.booking-cta {
    padding: 4rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1551214280-06c103964d52?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.cta-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
}

.cta-info p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.cta-info i {
    margin-right: 10px;
    color: #d4a76a;
}

/* Blog Page Styles */
.blog-content {
    padding: 3rem 0;
    background: #f9f5f0;
}

.blog-layout {
    display: flex;
    gap: 2rem;
}

.blog-posts {
    flex: 3;
}

.blog-sidebar {
    flex: 1;
}

.blog-post {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.post-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #999;
    font-size: 0.9rem;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.sidebar-widget {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 1.3rem;
    color: #d4a76a;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

.category-list {
    list-style: none;
}

.category-list li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed #eee;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: #d4a76a;
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post {
    display: flex;
    gap: 1rem;
}

.recent-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.recent-post-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.recent-post-content h4 a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.recent-post-content h4 a:hover {
    color: #d4a76a;
}

.post-date {
    font-size: 0.8rem;
    color: #999;
}

.pagination {
    padding: 2rem 0;
    background: #fff;
}

.pagination-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.pagination-links a {
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pagination-links a:hover,
.pagination-links a.active {
    background: #d4a76a;
    color: #fff;
    border-color: #d4a76a;
}

/* Contact Page Styles */
.contact-content {
    padding: 3rem 0;
    background: #f9f5f0;
}

.contact-layout {
    display: flex;
    gap: 2rem;
}

.contact-info {
    flex: 1;
}

.contact-form-section {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: #d4a76a;
    min-width: 40px;
}

.contact-text h3 {
    margin-bottom: 0.5rem;
}

.social-links {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

/* Order Notes */
.order-notes {
    padding: 3rem 0;
    background: #f9f5f0;
}

.order-notes .container {
    max-width: 800px;
}

.order-notes h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.order-notes textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    min-height: 120px;
    resize: vertical;
}

.order-notes textarea:focus {
    outline: none;
    border-color: #d4a76a;
    box-shadow: 0 0 0 2px rgba(212, 167, 106, 0.2);
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.checkbox-container input {
    width: auto;
}

.checkbox-container a {
    color: #d4a76a;
    text-decoration: none;
}

.map-section {
    padding: 4rem 0;
    background: #fff;
}

.map-container {
    height: 400px;
}

.map-placeholder {
    height: 100%;
    background: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #666;
}

.contact-testimonials {
    padding: 4rem 0;
    background: #f9f5f0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    position: relative;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: #d4a76a;
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -15px;
    font-family: serif;
}

.testimonial-author h4 {
    margin-bottom: 0.5rem;
}

.rating {
    color: #ffc107;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .about-content,
    .events-content,
    .story-content,
    .mission-content,
    .intro-content,
    .contact-layout,
    .blog-layout,
    .order-content {
        flex-direction: column;
    }
    
    .specials-content {
        flex-direction: column;
        text-align: center;
    }
    
    .product-item {
        flex-direction: column;
    }
    
    .product-item img {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        order: 3;
        width: 100%;
        display: none;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
    }
    
    .nav-menu ul li {
        margin: 0.5rem 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 1rem auto;
        width: 80%;
        max-width: 250px;
    }
    
    .newsletter-form,
    .sidebar-form {
        flex-direction: column;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
    
    .process-step:last-child {
        margin-bottom: 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-info {
        text-align: center;
    }
    
    .cta-info p {
        justify-content: center;
    }
    
    .cart-item-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .cart-item-price,
    .cart-item-total {
        min-width: auto;
    }
    
    .cart-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .product-card {
        padding: 1rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Responsive styles for intro section */
@media (max-width: 768px) {
    .intro-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .intro-text,
    .intro-image {
        flex: none;
        width: 100%;
    }
    
    .intro-text h2 {
        font-size: 2rem;
    }
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: #d4a76a;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cart-item {
    animation: fadeIn 0.3s ease-in-out;
}

/* Notifications */
#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.notification {
    background: #d4a76a;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.3s, slideIn 0.3s;
    max-width: 300px;
}

.notification.error {
    background: #e74c3c;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
