/* Shannon's Sweet Treats - Elegant Chocolate Theme */

:root {
    --chocolate-dark: #3d2314;
    --chocolate-medium: #6b4423;
    --chocolate-light: #8b5a2b;
    --cream: #f5f0e8;
    --gold: #c9a227;
    --white: #fffef9;
    --text: #3d2914;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(61, 35, 20, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--chocolate-dark);
    text-decoration: none;
}

.logo-icon { font-size: 1.8rem; margin-right: 0.5rem; }
.logo span { color: var(--gold); }

.nav-links { display: flex; list-style: none; gap: 2.5rem; }
.nav-links a {
    text-decoration: none;
    color: var(--chocolate-medium);
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content { animation: fadeIn 1s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-badge {
    background: var(--gold);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--chocolate-dark);
    margin-bottom: 1.5rem;
}

.hero h1 span { color: var(--gold); display: block; }

.hero-description {
    font-size: 1.15rem;
    color: var(--chocolate-medium);
    margin-bottom: 2rem;
}

.hero-images { display: flex; justify-content: center; }

.hero-image, .about-image {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(61, 35, 20, 0.2);
    object-fit: cover;
}

.hero-image {
    aspect-ratio: 4/5;
}

.about-image {
    aspect-ratio: 3/4;
}

.hero-image-placeholder, .about-image-placeholder {
    background: linear-gradient(135deg, var(--chocolate-light), var(--chocolate-medium));
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 6rem;
    text-align: center;
    box-shadow: 0 30px 60px rgba(61, 35, 20, 0.2);
}

.hero-image-placeholder p, .about-image-placeholder p {
    font-size: 1rem;
    margin-top: 1rem;
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #9a7b1a);
    color: white;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(201, 162, 39, 0.5); }

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

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

/* Trust Badges */
.trust-badges { background: var(--chocolate-dark); padding: 3rem 0; }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item { color: var(--cream); }
.trust-icon { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }
.trust-item h4 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 0.25rem; }
.trust-item p { font-size: 0.9rem; opacity: 0.8; margin: 0; }

/* Section Header */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-subtitle { color: var(--gold); font-size: 1rem; text-transform: uppercase; letter-spacing: 3px; }
.section-header h2 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--chocolate-dark); }

/* Products */
.featured-products { background: var(--cream); padding: 5rem 0; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(61, 35, 20, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(61, 35, 20, 0.15);
}

.product-image { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.product-image img { width: 100%; height: 100%; object-fit: cover; }

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: white;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.product-info { padding: 1.5rem; }
.product-info h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 0.5rem; }
.product-info p { color: var(--chocolate-medium); font-size: 0.95rem; margin-bottom: 1rem; }
.product-price { font-family: var(--font-heading); font-size: 1.4rem; color: var(--gold); font-weight: 700; }

.section-cta { text-align: center; }

/* About Preview */
.about-preview { background: var(--white); padding: 5rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-images { display: flex; justify-content: center; }
.about-content .lead { font-size: 1.2rem; color: var(--chocolate-medium); font-style: italic; margin-bottom: 1.5rem; }

/* Footer */
.footer { background: var(--chocolate-dark); color: var(--cream); padding: 4rem 0 2rem; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 1rem; }
.footer-brand h3 span { color: var(--gold); }
.footer-brand p { opacity: 0.8; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 1rem; }
.social-links a { font-size: 1.5rem; transition: transform 0.3s; }
.social-links a:hover { transform: translateY(-3px); }
.footer-links h4 { color: var(--gold); font-size: 1.1rem; margin-bottom: 1.5rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--cream); opacity: 0.8; text-decoration: none; transition: opacity 0.3s; }
.footer-links a:hover { opacity: 1; color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 2rem; text-align: center; opacity: 0.7; }

/* Page Header */
.page-header { background: linear-gradient(135deg, var(--chocolate-dark), var(--chocolate-medium)); color: var(--white); padding: 10rem 0 5rem; text-align: center; }
.page-header h1 { font-family: var(--font-heading); font-size: 3rem; color: var(--white); margin-bottom: 1rem; }
.page-header p { font-size: 1.2rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }

/* About Page */
.about-story { padding: 5rem 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 4rem; }
.story-grid.reverse { direction: rtl; }
.story-grid.reverse > * { direction: ltr; }
.story-content h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 1.5rem; }
.story-content .lead { font-size: 1.2rem; color: var(--chocolate-medium); font-style: italic; }

.values-section { background: var(--chocolate-dark); color: var(--white); padding: 5rem 0; }
.values-section .section-header { color: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.value-icon { font-size: 3rem; margin-bottom: 1rem; }
.value-item h3 { color: var(--white); font-family: var(--font-heading); margin-bottom: 0.5rem; }
.value-item p { opacity: 0.8; }

/* Products Page */
.products-full { background: var(--cream); padding: 5rem 0; }
.category-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 2px solid var(--chocolate-light); }
.category-header h3 { font-family: var(--font-heading); display: flex; align-items: center; gap: 0.75rem; }
.category-icon { font-size: 1.8rem; }

.pricing-table { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 40px rgba(61, 35, 20, 0.08); margin-top: 3rem; }
.pricing-header { background: var(--chocolate-dark); color: white; padding: 1.5rem 2rem; }
.pricing-header h3 { color: white; margin: 0; }
.pricing-content { padding: 2rem; }
.pricing-item { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--cream); }
.pricing-item:last-child { border-bottom: none; }
.pricing-item-name { font-weight: 600; }
.pricing-item-desc { font-size: 0.9rem; color: var(--chocolate-medium); }
.pricing-item-price { font-family: var(--font-heading); font-size: 1.3rem; color: var(--gold); font-weight: 700; }

/* Order Page */
.order-section { background: var(--white); padding: 5rem 0; }
.order-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; }
.order-form-container { background: white; padding: 3rem; border-radius: 20px; box-shadow: 0 20px 60px rgba(61, 35, 20, 0.1); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; color: var(--chocolate-dark); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 1rem; border: 2px solid var(--cream); border-radius: 8px; font-family: var(--font-body); font-size: 1rem; transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.order-info-card { background: var(--cream); padding: 2rem; border-radius: 16px; }
.order-info-card h4 { color: var(--chocolate-dark); margin-bottom: 1rem; }
.order-info-card ul { list-style: disc; padding-left: 1.5rem; }
.order-info-card li { margin-bottom: 0.5rem; }

/* Contact Page */
.contact-section { background: var(--white); padding: 5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info-card { background: var(--cream); padding: 3rem; border-radius: 20px; }
.contact-method { display: flex; gap: 1.5rem; margin-bottom: 2rem; }
.contact-icon { width: 60px; height: 60px; background: var(--gold); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.contact-details h4 { margin-bottom: 0.5rem; }
.social-section { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--chocolate-light); }
.social-section h4 { margin-bottom: 1rem; }
.social-large { display: flex; gap: 1rem; }
.social-large a { width: 60px; height: 60px; background: var(--chocolate-dark); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: white; transition: background 0.3s; }
.social-large a:hover { background: var(--gold); }

.contact-form-container { background: white; padding: 3rem; border-radius: 20px; box-shadow: 0 20px 60px rgba(61, 35, 20, 0.1); }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-container, .about-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; }
    .trust-grid, .products-grid, .values-grid { grid-template-columns: 1fr; }
    .order-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
}
