/* Base Styles */
:root {
    --primary-color: #9e1b1b;
    --primary-light: #c54f4f;
    --primary-dark: #7a1414;
    --secondary-color: #d4af37;
    --secondary-light: #e8c874;
    --light-color: #f9f5f0;
    --dark-color: #2a2a2a;
    --gray-color: #777;
    --light-gray: #e8e8e8;
    --white: #fff;
    --black: #000;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.1), 0 6px 6px rgba(0,0,0,0.1);
    --shadow-xl: 0 14px 28px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.08);
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(158, 27, 27, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--primary-dark) 0%, var(--primary-color) 100%);
    box-shadow: 0 6px 20px rgba(158, 27, 27, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
}

.btn-outline:hover {
    color: var(--white);
    background: var(--primary-color);
    box-shadow: 0 4px 15px rgba(158, 27, 27, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-color);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header .container {
    display: flex;
    align-items: center;
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    order: 1;
    margin-right: auto;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
}

.main-nav {
    order: 2;
}

.main-nav ul {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.main-nav ul li {
    margin-right: 30px;
    position: relative;
}

.main-nav ul li:last-child {
    margin-right: 0;
}

.main-nav ul li a {
    font-weight: 500;
    color: var(--dark-color);
}

.main-nav ul li a:hover {
    color: var(--primary-color);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(15px);
    z-index: 1001;
    border-top: 3px solid var(--secondary-color);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
    transition: var(--transition);
}

.dropdown-menu li:hover {
    background-color: var(--light-color);
}

.dropdown-menu li a {
    display: block; /* Ensure vertical layout */
    align-items: center;
    padding: 12px 25px;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    color: var(--primary-color);
    padding-left: 30px;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    z-index: 1001;
    margin-left: 20px;
}

.hamburger {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn.active .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive CSS */
@media (max-width: 768px) {
    .header .container {
        padding: 0 20px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between; /* Ensure space between logo and button */
    }
    
    .logo {
        order: 1;
        margin: 0;
        flex-grow: 1; /* Allow logo to take space but not push button */
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background-color: var(--white);
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .main-nav ul li {
        margin: 15px 0;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 10px 0 0 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .has-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        position: absolute;
        top: 15px; /* Align with header padding */
        right: 20px; /* Move to top right corner */
        order: 3; /* Ensure it’s last in flex order */
    }
}

/* Hero Slider */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    margin-top: 0;
    padding-top: 80px;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease, transform 8s ease;
    z-index: 1;
    transform: scale(1);
}

.slide.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 100%;
    padding: 0 20px;
    max-width: 800px;
    z-index: 3;
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.slider-controls button {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-controls button:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--white);
    transform: scale(1.2);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

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

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
}

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

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.allergy-info {
    margin: 30px 0;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.allergy-info h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.allergy-info ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.allergy-info ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.highlight {
    font-weight: 500;
    color: var(--primary-color);
    font-style: italic;
}

/* Featured Menus */
.featured-menus {
    padding: 100px 0;
}

.menu-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-image {
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.card-content p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

/* Instagram Section */
.instagram-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.instagram-section .section-header h2 a {
    color: var(--primary-color);
}

.instagram-feed {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.insta-item {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.insta-item img {
    width: 50%;
    height: 50%;
    object-fit: cover;
    transition: var(--transition);
}

.insta-item:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-info ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.contact-info ul li i {
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(158, 27, 27, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 10px;
}

.disclaimer-link {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-content,
    .contact-content {
        flex-direction: column;
    }
    
    .about-image,
    .about-text,
    .contact-info,
    .contact-form {
        flex: none;
        width: 100%;
    }
    
    .instagram-feed {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header .container {
        padding: 0 20px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .logo {
        order: 1;
        margin: 0;
        flex-grow: 1;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background-color: var(--white);
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .main-nav ul li {
        margin: 15px 0;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 10px 0 0 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .has-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        position: absolute;
        top: 15px;
        right: 20px;
        order: 3;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .instagram-feed {
        grid-template-columns: 1fr;
    }
}

/* Menu Page Specific Styles */
.menu-hero {
    height: 400px;
    background-image: url('../images/menu-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
    position: relative;
}

.menu-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.menu-hero .container {
    position: relative;
    z-index: 1;
}

.menu-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.menu-hero p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

.menu-categories {
    background-color: var(--primary-color);
    position: sticky;
    top: 80px;
    z-index: 900;
}

.menu-categories ul {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.menu-categories li {
    list-style: none;
}

.menu-categories a {
    display: block;
    padding: 20px 30px;
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.menu-categories a:hover {
    background-color: var(--primary-dark);
}

.menu-categories a.active {
    background-color: var(--primary-dark);
}

.menu-categories a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--secondary-color);
}

.menu-section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-color);
}

.menu-header {
    text-align: center;
    margin-bottom: 50px;
}

.menu-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.menu-notice {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.notice-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.notice-item i {
    color: var(--primary-color);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.menu-category {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.menu-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.category-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-header i {
    font-size: 1.5rem;
}

.category-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.menu-items {
    padding: 20px;
}

.menu-items li {
    padding: 15px 0;
    border-bottom: 1px dashed var(--light-gray);
}

.menu-items li:last-child {
    border-bottom: none;
}

.item-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.item-desc {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.pricing-section {
    margin-top: 60px;
}

.pricing-section h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border: 2px solid var(--secondary-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h4 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.price {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-color);
}

.pricing-features {
    margin: 0;
    padding: 0;
}

.pricing-features li {
    list-style: none;
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    margin-right: 10px;
}

/* Tabbed Menu Styles */
.tabs-container {
    margin-top: 40px;
}

.tabs {
    display: flex;
    border-bottom: 2px solid var(--light-gray);
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 25px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    color: var(--gray-color);
    position: relative;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.menu-table-container {
    overflow-x: auto;
}

.menu-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.menu-table th {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px;
    text-align: left;
}

.menu-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--light-gray);
}

.menu-table tr:hover {
    background-color: rgba(158, 27, 27, 0.05);
}

/* Cake Menu Styles */
.cake-categories {
    margin-bottom: 60px;
}

.cake-category {
    margin-bottom: 50px;
}

.cake-category h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.cake-table-container {
    overflow-x: auto;
}

.cake-table {
    width: 100%;
    border-collapse: collapse;
}

.cake-table th {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 10px;
    text-align: center;
    font-weight: 500;
}

.cake-table td {
    padding: 12px 10px;
    border-bottom: 1px solid var(--light-gray);
    text-align: center;
}

.cake-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--primary-color);
}

.cake-table tr:hover {
    background-color: rgba(158, 27, 27, 0.05);
}

.special-options {
    margin-bottom: 60px;
}

.special-options h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

.option-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.option-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.option-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.disclaimer-box {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.disclaimer-box h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-box ul {
    margin: 0;
    padding-left: 20px;
}

.disclaimer-box li {
    margin-bottom: 10px;
}

/* Menu CTA */
.menu-cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.menu-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.menu-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Styles for Menu Page */
@media (max-width: 992px) {
    .menu-hero {
        height: 350px;
    }
    
    .menu-hero h1 {
        font-size: 3rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-hero {
        height: 300px;
        margin-top: 70px;
    }
    
    .menu-hero h1 {
        font-size: 2.5rem;
    }
    
    .menu-categories ul {
        flex-wrap: wrap;
    }
    
    .menu-categories a {
        padding: 15px 20px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .menu-hero {
        height: 250px;
    }
    
    .menu-hero h1 {
        font-size: 2rem;
    }
    
    .menu-hero p {
        font-size: 1rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-notice {
        flex-direction: column;
        gap: 15px;
    }
    
    .notice-item {
        justify-content: center;
    }
}

/* Gallery Page Styles */
.gallery-hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background-image: url('images/hero1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.gallery-hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-hero p {
    font-size: 1.5rem;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery-filters {
    padding: 40px 0;
    background-color: var(--light-gray);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.gallery-grid {
    padding: 60px 0;
}

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

.grid-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.grid-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(158, 27, 27, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.grid-item:hover .overlay {
    opacity: 1;
}

.overlay i {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.overlay p {
    color: var(--white);
    font-weight: 500;
    text-align: center;
    padding: 0 20px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-color);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 0 20px;
}

.testimonial.active {
    display: block;
}

.testimonial-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.rating {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.testimonial p::before,
.testimonial p::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
}

.testimonial p::before {
    top: -20px;
    left: -10px;
}

.testimonial p::after {
    bottom: -30px;
    right: -10px;
}

.client {
    margin-top: 30px;
}

.client img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--primary-color);
}

.client h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.client span {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 30px;
}

.testimonial-controls button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-controls button:hover {
    background-color: var(--primary-dark);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Lightbox Overrides */
.lightbox .lb-image {
    border: 15px solid var(--white);
    border-radius: 4px;
    box-shadow: var(--shadow-xl);
}

.lb-data .lb-close {
    color: var(--white);
    font-size: 2rem;
}

/* Responsive Styles for Gallery */
@media (max-width: 992px) {
    .gallery-hero {
        height: 60vh;
    }
    
    .gallery-hero h1 {
        font-size: 2.5rem;
    }
    
    .gallery-hero p {
        font-size: 1.2rem;
    }
    
    .grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .gallery-hero {
        height: 60vh;
        margin-top: 70px;
    }
    
    .gallery-hero h1 {
        font-size: 2.5rem;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .gallery-hero {
        height: 50vh;
    }
    
    .gallery-hero h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .gallery-hero p {
        font-size: 1rem;
    }
    
    .filter-buttons {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-controls {
        gap: 15px;
    }
    
    .testimonial-controls button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Offers Page Styles */
.offers-hero {
    height: 400px;
    background-image: url('../images/offers-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.offers-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.offers-hero p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.current-offers {
    padding: 80px 0;
}

.offer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.offer-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: var(--transition);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    z-index: 1;
}

.offer-image {
    height: 200px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.offer-card:hover .offer-image img {
    transform: scale(1.1);
}

.offer-content {
    padding: 25px;
}

.offer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.offer-content p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.offer-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.offer-details p {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 0.9rem;
}

.offer-details i {
    margin-right: 5px;
    color: var(--primary-color);
}

.upcoming-events {
    padding: 80px 0;
}

.event-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.event-card {
    display: flex;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    min-width: 80px;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-image {
    width: 150px;
    overflow: hidden;
}

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

.event-content {
    flex: 1;
    padding: 20px;
}

.event-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.event-location, .event-time {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.event-location i, .event-time i {
    margin-right: 8px;
    color: var(--primary-color);
}

.event-content p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.newsletter {
    padding: 80px 0;
    background-image: url('../images/newsletter-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    position: relative;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.newsletter .container {
    position: relative;
    z-index: 1;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form button {
    border-radius: 0 4px 4px 0;
}

.small-text {
    font-size: 0.8rem;
    margin-top: 15px;
    opacity: 0.8;
}

/* Responsive Styles for Offers Page */
@media (max-width: 992px) {
    .offers-hero {
        height: 350px;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .offers-hero {
        height: 300px;
        margin-top: 70px;
    }
    
    .offers-hero h1 {
        font-size: 2.5rem;
    }
    
    .offer-cards, .event-cards {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 4px;
    }
}

@media (max-width: 576px) {
    .offers-hero {
        height: 250px;
    }
    
    .offers-hero h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .offers-hero p {
        font-size: 1rem;
    }
    
    .newsletter h2 {
        font-size: 2rem;
    }
    
    .newsletter p {
        font-size: 1rem;
    }
}

/* Bakery Showcase */
.bakery-showcase {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--light-color) 0%, var(--white) 100%);
}

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

.bakery-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    padding: 20px;
}

.bakery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.bakery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

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

.bakery-item:hover img {
    transform: scale(1.05);
}

.bakery-content {
    padding: 25px;
    position: relative;
    z-index: 2;
    background: var(--white);
}

.bakery-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.bakery-item h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
}

.bakery-item p {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Update Menu Categories for More Items */
.menu-categories ul {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.menu-categories a {
    padding: 15px 20px;
}

/* Home Gallery Section - With Visible Text */
.home-gallery {
    padding: 80px 0;
    background-color: #fff9f7;
}

.home-gallery .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.home-gallery .section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-top: 15px;
    display: inline-block;
    position: relative;
}

.home-gallery .section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--secondary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
}

.gallery-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.card-content {

    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: white;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    z-index: 2;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.card-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    opacity: 0.9;
}

.gallery-cta {
    text-align: center;
    margin-top: 50px;
    grid-column: 1 / -1;
    justify-self: center;
}

.gallery-cta .btn {
    padding: 12px 30px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
}

.gallery-cta .btn i {
    transition: transform 0.3s ease;
}

.gallery-cta .btn:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .home-gallery {
        padding: 60px 0;
    }
    
    .card-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .home-gallery .section-subtitle {
        font-size: 1rem;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
    }
    
    .gallery-cta .btn {
        padding: 10px 25px;
    }
}

/* Gallery Preview Section */
.gallery-preview {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fff9f5 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.gallery-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/gallery-pattern.png') repeat;
    opacity: 0.03;
    z-index: 0;
}

.gallery-preview .container {
    position: relative;
    z-index: 1;
}

.gallery-preview .subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.gallery-preview .subtitle::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gallery-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
    opacity: 0.7;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    color: white;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.gallery-caption p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

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

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

.gallery-cta .btn {
    padding: 14px 36px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
}

.gallery-cta .btn i {
    transition: transform 0.3s ease;
}

.gallery-cta .btn:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-image-container {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .gallery-preview {
        padding: 80px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-image-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .gallery-preview {
        padding: 60px 0;
    }
    
    .gallery-preview .subtitle {
        font-size: 1rem;
    }
    
    .gallery-caption h3 {
        font-size: 1.3rem;
    }
    
    .gallery-caption p {
        font-size: 0.9rem;
    }
}


.bakery-item-link {
    text-decoration: none;
    color: inherit; /* Keeps text colors as styled */
    display: block; /* Makes the entire area clickable */
}
.bakery-item {
    padding: 20px;
    transition: background-color 0.3s ease;
}
.bakery-item-link:hover .bakery-item {
    background-color: #f5f5f5; /* Light hover effect for the box */
}
.btn.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #333;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.bakery-item-link:hover .btn.btn-outline {
    background-color: #333;
    color: #fff;
}


/* Hover effect for menu cards */
.menu-card:hover .card-content h3,
.menu-card:hover .card-content p {
    color: #ffffff; /* White text on hover */
}



/* Featured Creations Section */
.featured-creations {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--white) 0%, var(--light-color) 100%);
}

.creations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.creation-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.creation-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.creation-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.creation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.creation-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.creation-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.creation-content p {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Hover effect for gallery cards in Our Bakery Creations */
.gallery-card:hover .card-content h3,
.gallery-card:hover .card-content p {
    color: #ffffff; /* White text on hover */
}


/* Footer Enhancements */
.footer-content {
    padding-bottom: 40px; /* More space for readability */
}

.footer-col {
    padding: 20px 10px; /* Better spacing for each column */
}

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

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

.footer-col ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-col ul li i {
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

.footer-cta {
    margin-top: 20px;
    padding: 10px 25px;
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-col {
        padding: 15px 0;
    }
    .footer-content {
        gap: 20px;
    }
    .footer-col iframe {
        height: 150px;
    }
}


/* WhatsApp Sticky Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.05);
    color: #FFF;
}

.whatsapp-float i {
    margin-top: 3px;
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

.card-content10 {
   
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    z-index: 2;
}

.main-nav {
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.main-nav li {
  position: relative;
}

.main-nav > ul > li > a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav > ul > li > a:hover {
  background-color: #f0f0f0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  flex-direction: column;
  background-color: #fff;
  min-width: 200px;
  padding: 0;
  margin: 0;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 6px;
  z-index: 1000;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s;
}

.dropdown-menu li a:hover {
  background-color: #f7f7f7;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

/* Fix dropdown positioning and hover effects */
.has-dropdown {
    position: relative;
}

.has-dropdown > a::after {
    content: ' ▼';
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(15px);
    z-index: 1001;
    border-top: 3px solid var(--secondary-color);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
    transition: var(--transition);
    display: block;
    width: 100%;
}

.dropdown-menu li:hover {
    background-color: var(--light-color);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    width: 100%;
}

.dropdown-menu li a:hover {
    color: var(--primary-color);
    padding-left: 30px;
}

/* Mobile dropdown fixes */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 10px 0 0 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background-color: var(--light-color);
        border-top: 1px solid var(--light-gray);
        margin-top: 10px;
    }

    .has-dropdown.active .dropdown-menu {
        display: block;
    }

    .has-dropdown > a::after {
        float: right;
    }
}

/* Catering Services Section */
.catering-services {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
    position: relative;
}

.catering-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%239e1b1b" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23d4af37" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
    z-index: 0;
}

.catering-services .container {
    position: relative;
    z-index: 1;
}

.catering-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.catering-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure equal heights */
}

.catering-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(158, 27, 27, 0.15);
}

.catering-card .card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    flex-shrink: 0; /* Prevent image from shrinking */
}

.catering-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.catering-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(158, 27, 27, 0.8) 0%, rgba(212, 175, 55, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.catering-card:hover .card-overlay {
    opacity: 1;
}

.overlay-content i {
    font-size: 3rem;
    color: var(--white);
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

.catering-card .card-content {
    padding: 35px;
    flex-grow: 1; /* Allow content to fill remaining space */
    display: flex;
    flex-direction: column;
}

.catering-card .card-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    text-shadow: none; /* Remove any text shadows */
}

.catering-card .card-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.catering-card .card-content p {
    color: #fff;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1rem;
    text-shadow: none; /* Remove text shadow for better clarity */
    font-weight: 400; /* Normal font weight for better readability */
    flex-grow: 1; /* Allow paragraph to grow and push other elements down */
}

.catering-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    margin-top: auto; /* Push features to bottom of flex container */
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: var(--light-color);
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    text-shadow: none; /* Remove text shadow */
}

.feature-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.feature-item i {
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-item:hover i {
    color: var(--white);
}

.catering-card .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    align-self: flex-start; /* Align button to start */
    margin-top: auto; /* Push button to bottom */
    text-shadow: none; /* Remove text shadow from button text */
}

.catering-card .btn i {
    transition: transform 0.3s ease;
}

.catering-card .btn:hover i {
    transform: translateX(5px);
}

/* CTA Banner */
.catering-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.catering-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.catering-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: none; /* Remove text shadow */
}

.catering-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: none; /* Remove text shadow */
}

.catering-cta .btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    font-weight: 700;
    padding: 15px 35px;
    font-size: 1.1rem;
    text-shadow: none; /* Remove text shadow */
}

.catering-cta .btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .catering-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .catering-card .card-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .catering-services {
        padding: 80px 0;
    }
    
    .catering-card .card-image {
        height: 250px;
    }
    
    .catering-card .card-content h3 {
        font-size: 1.5rem;
    }
    
    .catering-features {
        justify-content: center;
    }
    
    .catering-cta {
        padding: 40px 25px;
        margin: 0 20px;
    }
    
    .catering-cta h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .catering-cards {
        grid-template-columns: 1fr;
    }
    
    .catering-card .card-content {
        padding: 25px;
    }
    
    .catering-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        justify-content: center;
        min-width: 150px;
    }
    
    .catering-cta {
        margin: 0 10px;
    }
    
    .catering-cta h3 {
        font-size: 1.5rem;
    }
    
    .catering-cta p {
        font-size: 1rem;
    }
}



/* Improved Dropdown Menu Styles - Stable Hover Version */
.has-dropdown {
    position: relative;
}

.has-dropdown > a::after {
    content: ' ▼';
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease; /* Faster transition */
    transform: translateY(10px); /* Smaller transform distance */
    z-index: 1001;
    border-top: 3px solid var(--secondary-color);
    margin-top: -5px; /* Close the gap between parent and dropdown */
}

/* Create invisible bridge to prevent dropdown from disappearing */
.has-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px; /* Bridge height to cover the gap */
    background: transparent;
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
    transition: var(--transition);
    display: block;
    width: 100%;
}

.dropdown-menu li:hover {
    background-color: var(--light-color);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    width: 100%;
}

.dropdown-menu li a:hover {
    color: var(--primary-color);
    padding-left: 30px;
}

/* Mobile dropdown styles remain the same */
@media (max-width: 768px) {
    .has-dropdown::before {
        display: none; /* Remove bridge on mobile */
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 10px 0 0 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background-color: var(--light-color);
        border-top: 1px solid var(--light-gray);
        margin-top: 10px;
    }

    .has-dropdown.active .dropdown-menu {
        display: block;
    }

    .has-dropdown > a::after {
        float: right;
    }
}

/* Click-based dropdown styles for desktop */
@media (min-width: 769px) {
    .has-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    /* Remove hover effect when using click */
    .has-dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
    }
    
    .has-dropdown.active:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Fix for Menu Cards - Equal Heights */
.menu-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch; /* This ensures equal heights */
}

.menu-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%; /* Force equal heights */
}

.menu-card .card-image {
    height: 250px;
    overflow: hidden;
    flex-shrink: 0; /* Prevent image from shrinking */
}

.menu-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.menu-card .card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Make content area expand to fill space */
    justify-content: space-between; /* Distribute content evenly */
}

.menu-card .card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.menu-card .card-content p {
    margin-bottom: 20px;
    color: var(--gray-color);
    flex-grow: 1; /* Allow paragraph to grow and push button down */
}

.menu-card .btn {
    margin-top: auto; /* Push button to bottom */
    align-self: flex-start; /* Don't stretch the button */
}


/* Fix for Bakery Grid - Equal Heights */
.bakery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: stretch; /* Force equal heights */
}

.bakery-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%; /* Force full height */
}

.bakery-item img {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    transition: transform 0.5s ease;
    flex-shrink: 0; /* Prevent image shrinking */
}

.bakery-item:hover img {
    transform: scale(1.05);
}

.bakery-content {
    padding: 25px;
    position: relative;
    z-index: 2;
    background: var(--white);
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Fill remaining space */
    justify-content: space-between; /* Distribute content evenly */
}

.bakery-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.bakery-item h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
}

.bakery-item p {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1; /* Allow paragraph to expand and push button down */
}

.bakery-item .btn {
    margin-top: auto; /* Push button to bottom */
    align-self: flex-start; /* Don't stretch the button */
}

/* Remove the ::before pseudo-element that might be causing issues */
.bakery-item::before {
    display: none;
}

/* === Custom Navbar & Logo Styling === */
.rayu-navbar {
    background-color: #000 !important; /* Black background for golden logo */
    padding: 5px 20px; /* Minimal padding */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rayu-logo img.logo-img {
    max-height: 45px; /* Ensure clarity but keep sleek */
    width: auto;
    display: block;
    object-fit: contain;
}

/* Adjust padding for very small screens */
@media (max-width: 480px) {
    .rayu-navbar {
        padding: 5px 10px;
    }
    .rayu-logo img.logo-img {
        max-height: 38px;
    }
}

/* Make entire header background black */
#rayu-header,
#rayu-header .rayu-navbar {
    background-color: #000 !important;
}

/* Bigger, sleek logo */
.rayu-logo img.logo-img {
    max-height: 85px; /* increased from 45px */
    width: auto;
    display: block;
    object-fit: contain;
}


#rayu-header {
    padding: 5px 20px !important;
}


/* Slim header with bigger logo */
#rayu-header {
    padding: 0 !important; /* remove extra padding */
}

.rayu-navbar {
    background-color: #000 !important;
    padding: 3px 15px !important; /* minimal vertical padding */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rayu-logo img.logo-img {
    max-height: 105px; /* bigger logo */
    width: auto;
    display: block;
    object-fit: contain;
    margin: 0; /* remove extra space */
}

/* On small screens, keep it sleek */
@media (max-width: 480px) {
    .rayu-logo img.logo-img {
        max-height: 55px;
    }
}


/* ===== About Section — Updated styling (paste at end of styles.css) ===== */
.about-section-updated {
  padding: 80px 0;
  background: linear-gradient(180deg, #fffaf7 0%, #feffff 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Left visual column */
.about-image-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.about-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  transition: transform .6s ease;
}

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

/* small badge on image */
.about-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  text-align: left;
  font-weight: 600;
  line-height: 1;
}
.about-badge span { display:block; font-size:0.85rem; font-weight:400; opacity:0.9; }

/* quick facts below image */
.about-quick-facts {
  display:flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap:wrap;
}
.about-quick-facts .fact {
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  flex: 1 1 48%;
}
.about-quick-facts .fact h4 { margin-bottom:6px; color: var(--primary-color); }

/* Right text column */
.about-copy .section-header.small h2 {
  font-size: 2rem;
  margin-bottom:6px;
  color: var(--primary-color);
}
.about-copy .section-header.small .sub {
  color: var(--gray-color);
  margin-bottom: 18px;
}

/* paragraphs */
.about-text-block p {
  margin-bottom: 14px;
  color: #333;
  font-size: 1rem;
  line-height: 1.65;
}

/* team mini-cards */
.team-cards {
  display:flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap:wrap;
}
.team-card {
  display:flex;
  gap:12px;
  align-items:center;
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  flex: 1 1 48%;
}
.team-avatar {
  width:56px;
  height:56px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
}
.chef-avatar { background: linear-gradient(135deg,#d32f2f,#ffb74d); color:#fff; }
.manager-avatar { background: linear-gradient(135deg,#25d366,#128c7e); color:#fff; }
.team-card h4 { margin:0 0 4px; font-size:1rem; color:var(--primary-color); }
.team-card .muted { margin:0; color:var(--gray-color); font-size:0.92rem; }

/* quote + cta */
.about-cta-row {
  display:flex;
  gap:18px;
  align-items:center;
  margin-top:20px;
  flex-wrap:wrap;
}
.about-quote {
  flex: 1 1 auto;
  margin: 0;
  padding: 14px 18px;
  background: linear-gradient(90deg,#fff,#fff);
  border-left: 4px solid var(--secondary-color);
  border-radius: 8px;
  color: #444;
  font-style: italic;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

/* smaller CTA button style (uses existing .btn .btn-primary) */
.about-cta {
  white-space:nowrap;
  padding: 12px 26px;
  border-radius: 50px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-card { min-height: 320px; }
  .about-quick-facts .fact { flex-basis: 48%; }
  .about-cta-row { flex-direction: column-reverse; align-items: stretch; }
  .about-cta { align-self:flex-start; }
}

@media (max-width: 480px) {
  .about-image-card { min-height: 220px; }
  .about-badge { top: 10px; left: 10px; padding: 8px 10px; }
  .team-card { flex-basis: 100%; }
  .about-quick-facts .fact { flex-basis: 100%; }
  .about-copy .section-header.small h2 { font-size: 1.6rem; }
  .about-text-block p { font-size: 0.96rem; }
}



/* ===== About section: justified text ===== */
.about-text-block,
.about-text-block p {
    text-align: justify;
    text-justify: inter-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent headings and badges from being justified */
.about-copy .section-header.small,
.about-badge,
.team-card,
.about-quick-facts {
    text-align: left;
}
@media (max-width: 480px) {
    .about-text-block,
    .about-text-block p { text-align: justify; text-justify: inter-word; }
}
