/* Ricon Carpa - Hobby & Creativity Center */
/* Mobile-first, Flexbox only */

:root {
    --primary: #7B4B94;
    --secondary: #D4A574;
    --accent: #E8B4B8;
    --dark: #2D2A32;
    --light: #FAF7F5;
    --cream: #F5EFE6;
    --text: #3D3A42;
    --muted: #6B6770;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--light);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
}

/* Navigation */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: 0.3s;
}

.nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    padding: 2rem;
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.nav-menu.active {
    display: flex;
}

.nav-menu a {
    color: var(--text);
    font-weight: 500;
    font-size: 1.1rem;
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-align: center;
}

/* Editorial Content Wrapper */
.editorial-wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.full-width {
    max-width: 100%;
    padding: 0;
}

/* Hero Section - Editorial Style */
.hero-editorial {
    padding: 8rem 1.5rem 4rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
    text-align: center;
}

.hero-editorial .kicker {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-editorial h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-editorial .lead {
    font-size: 1.15rem;
    color: var(--muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image {
    margin: 2rem -1.5rem 0;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Article Sections */
.article-section {
    padding: 3rem 1.5rem;
}

.article-section.bg-cream {
    background: var(--cream);
}

.article-section.bg-dark {
    background: var(--dark);
    color: white;
}

.article-section.bg-dark h2,
.article-section.bg-dark h3 {
    color: white;
}

.article-section.bg-dark p {
    color: rgba(255,255,255,0.85);
}

.section-kicker {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
}

.article-section h2 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.article-section h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.article-section p {
    margin-bottom: 1.5rem;
    color: var(--text);
}

.article-section p.highlight {
    font-size: 1.2rem;
    color: var(--primary);
    border-left: 3px solid var(--secondary);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

/* Inline Images */
.inline-image {
    margin: 2rem -1.5rem;
    position: relative;
}

.inline-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.inline-image figcaption {
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center;
    padding: 0.8rem 1.5rem;
    font-style: italic;
}

.image-float {
    margin: 1.5rem 0;
}

.image-float img {
    width: 100%;
    border-radius: 8px;
}

/* CTA Buttons */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary:hover {
    background: var(--dark);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-accent {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background: var(--dark);
}

.cta-inline {
    text-align: center;
    margin: 2.5rem 0;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem 1.5rem;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.1);
    z-index: 999;
    display: flex;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta .btn-primary {
    width: 100%;
    max-width: 400px;
}

/* Services Cards */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card-image {
    height: 180px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-content {
    padding: 1.5rem;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.8rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.price small {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--muted);
}

/* Testimonials */
.testimonial-block {
    background: var(--cream);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    position: relative;
}

.testimonial-block::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent);
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-block p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text);
    padding-left: 2.5rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 2.5rem;
}

.testimonial-author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info strong {
    display: block;
    color: var(--dark);
}

.testimonial-author-info span {
    font-size: 0.85rem;
    color: var(--muted);
}

/* Benefits List */
.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.benefits-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: var(--dark);
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

/* Form Styles */
.form-section {
    background: var(--cream);
    padding: 3rem 1.5rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-container .btn-primary {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem 1.5rem;
    text-align: center;
}

.urgency-banner p {
    font-weight: 600;
    margin: 0;
}

/* Stats Section */
.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--muted);
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 3rem 1.5rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-col h4 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
}

.footer-col a:hover {
    color: white;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

.cookie-accept {
    background: var(--secondary);
    color: white;
}

.cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

/* Thanks Page */
.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
}

.thanks-content h1 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.thanks-content p {
    color: var(--muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* About Page */
.page-header {
    padding: 8rem 1.5rem 3rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--muted);
    font-size: 1.1rem;
}

.content-section {
    padding: 3rem 1.5rem;
}

.content-section.alt {
    background: var(--cream);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--muted);
    margin: 0;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin: 2rem 0 1rem;
}

.legal-content h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin: 1.5rem 0 0.8rem;
}

.legal-content p,
.legal-content li {
    color: var(--text);
    margin-bottom: 1rem;
}

.legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Responsive - Tablet */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        gap: 2rem;
        align-items: center;
    }

    .hero-editorial {
        padding: 10rem 2rem 5rem;
    }

    .hero-editorial h1 {
        font-size: 3rem;
    }

    .hero-image {
        margin: 3rem auto 0;
        max-width: 900px;
        border-radius: 12px;
        overflow: hidden;
    }

    .hero-image img {
        height: 450px;
    }

    .article-section {
        padding: 4rem 2rem;
    }

    .editorial-wrapper {
        padding: 0 2rem;
    }

    .inline-image {
        margin: 2.5rem auto;
        max-width: 800px;
        border-radius: 8px;
        overflow: hidden;
    }

    .inline-image img {
        height: 350px;
    }

    .image-float {
        float: right;
        width: 45%;
        margin: 0 0 1.5rem 2rem;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: 300px;
        max-width: calc(50% - 0.75rem);
    }

    .stats-row {
        gap: 3rem;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .footer-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1;
        min-width: 200px;
    }

    .sticky-cta {
        display: none;
    }
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
    .hero-editorial h1 {
        font-size: 3.5rem;
    }

    .article-section h2 {
        font-size: 2.2rem;
    }

    .service-card {
        max-width: calc(33.333% - 1rem);
    }

    .form-container {
        padding: 3rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Service Selection Highlight */
.service-select-highlight {
    background: var(--accent);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.service-select-highlight p {
    margin: 0;
    font-weight: 500;
    color: var(--dark);
}
