/**
 * SweetTooth Gelato - Index Page Styles
 * Page-specific styles only. Header/nav/cart styles are in shared.css
 */

/* CSS Variables for SweetTooth Colors */
:root {
    --color-cream: #FFF6CC;
    --color-pink: #F37273;
    --color-light-cream: #FEFAE8;
    --color-peach: #FFDC9F;
    --color-orange: #F2BA72;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--color-light-cream);
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Custom fonts */
.dealerplate {
    font-family: 'Playfair Display', serif;
}

.poppins-bold {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.poppins-normal {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* Layout utility */
.blend-design {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--color-pink);
    text-align: center;
    margin-bottom: 2rem;
}

.highlight-text {
    background: linear-gradient(120deg, var(--color-peach), var(--color-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

/* CTA Button */
.cta-button {
    background-color: var(--color-pink);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e05a5b;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light-cream) 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--color-pink);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: 300px;
    background-color: var(--color-peach);
    border-radius: 20px;
    margin: 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--color-orange);
}

.hero-image-placeholder {
    font-size: 1.5rem;
    color: #777;
}

/* Philosophy Section */
.philosophy {
    padding: 5rem 2rem;
    background-color: white;
}

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

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

.philosophy-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.philosophy-image {
    width: 100%;
    height: 400px;
    background-color: var(--color-cream);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-image-placeholder {
    text-align: center;
    color: #777;
}

/* Products Section */
.products {
    padding: 5rem 2rem;
    background-color: var(--color-light-cream);
}

.products-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-header h2 {
    font-size: 2.5rem;
    color: var(--color-pink);
    margin-bottom: 1rem;
}

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

/* Pricing Section */
.pricing {
    padding: 5rem 2rem;
    background-color: white;
}

.pricing-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pricing h2 {
    font-size: 2.5rem;
    color: var(--color-pink);
    margin-bottom: 1rem;
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.price-card {
    background: var(--color-cream);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--color-orange);
}

.price-card h3 {
    color: var(--color-pink);
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-orange);
    margin: 1rem 0;
}

.price-description {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Events Section */
.events {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-peach) 100%);
}

.events-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.events h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.events-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.event-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    color: #333;
}

.event-card h3 {
    color: var(--color-pink);
    margin-bottom: 0.5rem;
}

/* Social Media Section */
.social-media {
    padding: 5rem 2rem;
    background-color: var(--color-light-cream);
}

.social-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.social-header h2 {
    font-size: 2.5rem;
    color: var(--color-pink);
    margin-bottom: 1rem;
}

.social-feeds {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feed-placeholder {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 2rem;
    background-color: var(--color-light-cream);
}

.testimonials .section-title {
    margin-bottom: 1rem;
}

.testimonials .section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: #555;
}

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

.testimonials .carousel-container {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: white;
}

.testimonials .carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 3rem 2rem;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-peach) 0%, var(--color-orange) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    font-family: 'Playfair Display', serif;
}

.testimonial-name {
    font-weight: 700;
    color: var(--color-pink);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
}

.testimonial-location {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.stars {
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    letter-spacing: 0.2rem;
}

.testimonial-text {
    font-size: 1rem;
    color: #555;
    max-width: 600px;
    line-height: 1.8;
    font-style: italic;
}

.testimonials .carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonials .carousel-btn {
    background: var(--color-cream);
    border: 2px solid var(--color-pink);
    color: var(--color-pink);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.testimonials .carousel-btn:hover {
    background: var(--color-pink);
    color: white;
}

/* Notification Styles */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--color-pink);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 10000;
    animation: slideIn 0.3s ease;
    display: none;
}

.notification.show {
    display: block;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .philosophy-container {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}
