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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #faf8f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Design Switcher */
.design-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.switch-link {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.95);
    color: #2c2c2c;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #e0ddd8;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.switch-link:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

/* Header */
header {
    background: white;
    padding: 4rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid #e0ddd8;
}

header h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: #2c2c2c;
}

.tagline {
    font-size: 1rem;
    font-style: italic;
    color: #8b7d6b;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 5rem 0 3rem;
}

.hero h2 {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.1rem;
    color: #8b7d6b;
    font-style: italic;
}

/* Gallery Grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 3rem;
    padding: 2rem 0 5rem;
}

.cake-card {
    background: white;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid #e0ddd8;
}

.cake-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #d4cfc7;
}

.cake-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: linear-gradient(135deg, #f5f1ed 0%, #e8e3dd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b7d6b;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.cake-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.02) 100%);
}

.cake-info {
    padding: 2rem;
}

.cake-info h3 {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.cake-info p {
    color: #6b6b6b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cake-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e0ddd8;
}

.price {
    font-size: 1.6rem;
    font-weight: 400;
    color: #8b7d6b;
    font-family: 'Georgia', serif;
}

.serves {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
}

/* Cake Detail Page */
.back-link {
    display: inline-block;
    margin: 3rem 0 2rem;
    color: #8b7d6b;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.back-link:hover {
    color: #2c2c2c;
}

.cake-detail {
    background: white;
    padding: 3rem;
    margin-bottom: 5rem;
    border: 1px solid #e0ddd8;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.detail-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    background: linear-gradient(135deg, #f5f1ed 0%, #e8e3dd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b7d6b;
    font-size: 7rem;
}

.detail-content h2 {
    font-size: 2.8rem;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.2;
}

.detail-content .price {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    display: block;
}

.detail-content .description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #6b6b6b;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0ddd8;
}

.detail-section {
    margin-bottom: 2.5rem;
}

.detail-section h3 {
    font-size: 1.1rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Arial', sans-serif;
}

.detail-section ul {
    list-style: none;
    padding-left: 0;
}

.detail-section li {
    padding: 0.6rem 0;
    color: #6b6b6b;
    font-size: 1.05rem;
    position: relative;
    padding-left: 1.5rem;
}

.detail-section li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b7d6b;
    font-size: 1.2rem;
}

.contact-cta {
    background: #f5f1ed;
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
    border: 1px solid #e0ddd8;
}

.contact-cta h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #2c2c2c;
}

.contact-cta p {
    font-size: 1.05rem;
    color: #6b6b6b;
}

/* Footer */
footer {
    background: #2c2c2c;
    color: #d4cfc7;
    text-align: center;
    padding: 3rem 0;
    margin-top: 5rem;
}

footer p {
    margin: 0.6rem 0;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .gallery {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    header h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .cake-detail {
        padding: 2rem;
    }
    
    .design-switcher {
        position: static;
        padding: 15px 20px;
        background: white;
        border-bottom: 1px solid #e0ddd8;
    }
}


/* Announcement Bar */
.announcement-bar {
    background: #f5f1ed;
    border-bottom: 1px solid #e0ddd8;
    padding: 12px 0;
    text-align: center;
}

.announcement-bar p {
    color: #8b7d6b;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

/* Hero Section */
.hero {
    padding: 6rem 0 5rem;
    text-align: center;
    border-bottom: 1px solid #e0ddd8;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8b7d6b;
    margin-bottom: 1.5rem;
    font-family: 'Arial', sans-serif;
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #6b6b6b;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 14px 32px;
    background: #8b7d6b;
    color: white;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #2c2c2c;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 14px 32px;
    background: transparent;
    color: #2c2c2c;
    text-decoration: none;
    border: 1px solid #e0ddd8;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: #8b7d6b;
    color: #8b7d6b;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    border-bottom: 1px solid #e0ddd8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.value-item {
    text-align: center;
}

.value-number {
    font-size: 3rem;
    font-weight: 400;
    color: #e0ddd8;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.value-item h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #2c2c2c;
    letter-spacing: 0.5px;
}

.value-item p {
    color: #6b6b6b;
    line-height: 1.7;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 1rem;
    color: #8b7d6b;
    font-style: italic;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: #faf8f5;
    border-top: 1px solid #e0ddd8;
    border-bottom: 1px solid #e0ddd8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border: 1px solid #e0ddd8;
}

.quote-mark {
    font-size: 4rem;
    color: #e0ddd8;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.testimonial-card p {
    color: #6b6b6b;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0ddd8;
}

.testimonial-author strong {
    color: #2c2c2c;
    font-weight: 600;
    font-style: normal;
}

.testimonial-author span {
    color: #8b7d6b;
    font-size: 0.9rem;
    font-style: normal;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border: 2px solid #e0ddd8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #8b7d6b;
    font-family: 'Georgia', serif;
}

.process-step h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.process-step p {
    color: #6b6b6b;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #f5f1ed;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #2c2c2c;
    letter-spacing: 1px;
}

.contact-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6b6b6b;
    margin-bottom: 2.5rem;
}

.contact-methods {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e0ddd8;
}

.contact-details p {
    color: #8b7d6b;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

/* Responsive */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        flex-direction: column;
    }
}
