/* 
  Theme: Organic Soft-Tech
  Brand: Zelo
*/

:root {
    /* Brand Colors */
    --color-primary: #DC143C; /* Crimson Red */
    --color-secondary: #FF8C00; /* Dark Orange */
    --color-accent: #FFFFFF;
    
    /* Gradients from Mockup */
    --grad-header: linear-gradient(90deg, #DC143C, #FF8C00);
    --grad-hero: linear-gradient(135deg, #FFDAB9 0%, #FFC0CB 50%, #FF69B4 100%); /* Soft orange to pink */
    --grad-card: linear-gradient(180deg, #FFF0F5, #FFFFFF);
    --grad-story: linear-gradient(135deg, #FFE4B5, #FF8C00);
    --grad-cta: linear-gradient(135deg, #DC143C, #FF8C00); /* Wavy feel via CSS or just smooth */
    
    /* Typography */
    --font-primary: 'Dancing Script', cursive;
    --font-secondary: 'Roboto Slab', serif;
    
    /* Shapes & Spacing */
    --radius-pill: 50px;
    --radius-box: 40px;
    --radius-card: 24px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-colored: 0 10px 20px rgba(220, 20, 60, 0.15);
}

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

body {
    font-family: var(--font-secondary);
    color: #333;
    background-color: #FAFAFA; /* Very light grey to make white cards pop */
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .hero-title, .section-title {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-family: var(--font-secondary);
    font-weight: 400;
}

.text-center { text-align: center; }
.text-white { color: #FFFFFF; }

.section-title {
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 30px;
}

/* Page Container (Mandatory) */
.page-container, #page {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.25rem;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .page-container, #page {
        padding: 1.5rem 2rem;
    }
}

/* Buttons (Organic Soft-Tech Style) */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-pill);
    font-family: var(--font-secondary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

/* Header (Mockup Clone) */
.main-header {
    background: var(--grad-header);
    border-radius: var(--radius-pill);
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: var(--shadow-colored);
    position: relative;
    z-index: 100;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    background: transparent !important;
    object-fit: contain;
    max-height: 40px; /* Adjusted to fit nicely in pill header */
    width: auto;
    height: auto;
    display: block;
    z-index: 10;
}

@media (min-width: 768px) {
    .logo {
        max-height: 48px;
    }
}

.desktop-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.desktop-nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    transition: opacity 0.3s ease;
}

.desktop-nav a:hover, .desktop-nav a.active {
    opacity: 0.8;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section (Mockup Clone) */
.hero-section {
    background: var(--grad-hero);
    border-radius: var(--radius-box);
    padding: 60px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 50%;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    color: #333; /* Dark text as per mockup */
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}

.hero-img {
    max-width: 120%; /* Let it bleed a bit */
    height: auto;
    object-fit: contain;
    transform: scale(1.1) translateX(20px); /* Adjust positioning to match mockup */
}

/* Features Section */
.features-section {
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--grad-card);
    border-radius: var(--radius-card);
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(255, 192, 203, 0.4); /* Soft pink shadow */
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.8);
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #555;
}

/* Story Section */
.story-section {
    background: var(--grad-story);
    border-radius: var(--radius-box);
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-soft);
}

.story-content {
    flex: 1;
}

.story-content .section-title {
    color: var(--color-primary);
    margin-bottom: 20px;
}

.story-content p {
    color: #333;
    font-weight: 500;
}

.story-image-wrapper {
    flex: 1;
    border-radius: var(--radius-box);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CTA Section */
.cta-section {
    background: var(--grad-cta);
    border-radius: var(--radius-box);
    padding: 60px 40px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-colored);
    position: relative;
    overflow: hidden;
}

/* Add a subtle wave effect using pseudo element if desired, or keep gradient smooth */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

/* Contact/Footer Section (Mockup Bottom Block) */
.contact-footer-section {
    background: linear-gradient(135deg, #FF8C00, #DC143C);
    border-radius: var(--radius-box);
    padding: 50px 40px 20px 40px;
    box-shadow: var(--shadow-colored);
}

/* Forms - Base styles (Inline !important used in HTML) */
input::placeholder, textarea::placeholder {
    color: rgba(255,255,255,0.8);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section, .story-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .hero-content, .story-content {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .hero-image-wrapper {
        justify-content: center;
    }
    
    .hero-img {
        transform: scale(1) translateX(0);
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none; /* Hide desktop nav */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--grad-header);
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
        box-shadow: var(--shadow-colored);
        margin-top: 10px;
    }
    
    .desktop-nav.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-header .btn {
        display: none; /* Hide shop button on mobile header to save space */
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-footer-section form {
        flex-direction: column !important;
    }
    
    .contact-footer-section form input, 
    .contact-footer-section form button,
    .contact-footer-section form div {
        width: 100% !important;
        flex: 1 1 100% !important;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}