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

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

.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 #d4c5b9;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.switch-link:hover {
    background: #84a98c;
    color: white;
    border-color: #84a98c;
    transform: translateY(-2px);
}

/* Header */
header {
    background: #84a98c;
    padding: 2rem 0 1.5rem;
    border-bottom: 3px solid #52796f;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 2px;
    color: white;
}

.tagline {
    font-size: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
    position: relative;
}

.main-nav a:hover {
    opacity: 0.8;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

/* 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;
    }
}


/* Header Navigation */
.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    color: #6b6b6b;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

.main-nav a:hover {
    color: #2c2c2c;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #8b7d6b;
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

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

.announcement-bar p {
    color: #6b6b6b;
    font-size: 0.95rem;
    font-style: normal;
    margin: 0;
    font-weight: 500;
}

.announcement-bar a {
    color: #8b7d6b;
    text-decoration: underline;
    font-weight: 600;
    margin-left: 8px;
}

.announcement-bar a:hover {
    color: #2c2c2c;
}

/* Hero Enhancement */
.hero {
    padding: 5rem 0;
    border-bottom: 1px solid #e0ddd8;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: #faf8f5;
    border: 1px solid #e0ddd8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.placeholder-icon {
    font-size: 4rem;
    opacity: 0.3;
}

.placeholder-text {
    font-size: 0.85rem;
    color: #ccc;
    font-style: italic;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: #fafafa;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #6b6b6b;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-stats .stat-item {
    background: white;
    padding: 2rem;
    border: 1px solid #e0ddd8;
    text-align: center;
}

.about-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 400;
    color: #8b7d6b;
    margin-bottom: 0.5rem;
    font-family: 'Georgia', serif;
}

.about-stats .stat-label {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
}

/* Specialties Section */
.specialties-section {
    padding: 6rem 0;
}

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

.specialty-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border: 1px solid #e0ddd8;
    transition: all 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-color: #d4cfc7;
}

.specialty-image {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.specialty-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #2c2c2c;
    letter-spacing: 0.5px;
}

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

/* Responsive Updates */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .main-nav {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image-placeholder {
        aspect-ratio: 1;
    }
}


/* Image Gallery on Detail Page */
.detail-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    width: 100%;
    aspect-ratio: 4/5;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
}

.gallery-thumb {
    aspect-ratio: 1;
    background: #faf8f5;
    border: 2px solid #e0ddd8;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-thumb:hover {
    border-color: #8b7d6b;
}

.gallery-thumb.active {
    border-color: #8b7d6b;
    border-width: 3px;
}

.thumb-placeholder {
    font-size: 2rem;
    opacity: 0.3;
}
