:root {
    --primary: #FFB6C1;
    --secondary: #FFF5E6;
    --accent: #D4A59A;
    --text: #5C3A21;
    --light: #FFF9F2;
}

body {
    font-family: 'Georgia', serif;
    color: var(--text);
    background-color: var(--light);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header Styles */
custom-header {
    display: block;
    background-color: var(--primary);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), 
                url('http://static.photos/food/1200x630/4');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--text);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(255,255,255,0.8);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Featured Products */
.featured {
    padding: 4rem 2rem;
    background-color: var(--secondary);
    text-align: center;
}

.featured h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text);
    position: relative;
    display: inline-block;
}

.featured h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--accent);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.product-card h3 {
    margin: 1rem 0 0.5rem;
    padding: 0 1rem;
    font-size: 1.5rem;
}

.product-card p {
    padding: 0 1rem;
    color: #777;
    margin-bottom: 1rem;
}

.price {
    display: block;
    padding: 1rem;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--accent);
}
/* Reviews Section */
.reviews {
    padding: 4rem 2rem;
    background-color: white;
    text-align: center;
}

.reviews h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text);
    position: relative;
    display: inline-block;
}

.reviews h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--accent);
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: var(--secondary);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h3 {
    margin: 0;
    text-align: left;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-top: 0.3rem;
}

.review-card p {
    font-style: italic;
    text-align: left;
    margin: 0;
}
/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), 
                url('http://static.photos/food/1200x630/20');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

.about-hero h1 {
    font-size: 3rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.story {
    padding: 4rem 2rem;
    background-color: var(--secondary);
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.milestones {
    padding: 4rem 2rem;
    text-align: center;
    background-color: white;
}

.milestones h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text);
}

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

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background-color: var(--accent);
    transform: translateX(-50%);
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-date {
    padding: 0.5rem 1rem;
    background-color: var(--accent);
    color: white;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: bold;
}

.timeline-content {
    padding: 1.5rem;
    background-color: var(--secondary);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.team {
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--secondary);
}

.team h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text);
}

.team-member {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
    text-align: left;
}

.team-member img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.team-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.title {
    font-style: italic;
    color: var(--text);
    margin-bottom: 1rem;
}

.signature {
    margin-top: 2rem;
}

.signature img {
    width: 150px;
    height: auto;
    border: none;
}

@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .team-member {
        grid-template-columns: 1fr;
    }
}
/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--text);
    transform: scale(1.05);
}
/* Custom Cake Page */
.custom-hero {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), 
                url('http://static.photos/food/1200x630/40');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

.custom-hero h1 {
    font-size: 3rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.custom-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.form-section h2 {
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--text);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group input[type="color"] {
    width: 80px;
    height: 40px;
    padding: 2px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    width: 100%;
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), 
                url('http://static.photos/food/1200x630/30');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

.contact-hero h1 {
    font-size: 3rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.contact-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background-color: var(--secondary);
    padding: 2rem;
    border-radius: 10px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text);
}

.info-card {
    margin-bottom: 2rem;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.response-info {
    color: var(--text);
    margin-bottom: 2rem;
    font-style: italic;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

/* Menu Page */
.menu-hero {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), 
                url('http://static.photos/food/1200x630/5');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

.menu-hero h1 {
    font-size: 3rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.menu-filters {
    background-color: var(--secondary);
    padding: 2rem;
    text-align: center;
}

.filter-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background-color: white;
    border: 2px solid var(--accent);
    color: var(--text);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.menu-items {
    padding: 4rem 2rem;
}

/* Footer */
custom-footer {
    display: block;
    background-color: var(--text);
    color: white;
    padding: 2rem;
    text-align: center;
}
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
}