/* Reset y variables CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #59206c;
    --secondary-color: #4ECDC4;
    --accent-color: #45B7D1;
    --warning-color: #FFA726;
    --success-color: #66BB6A;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 15px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo-image {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo-image:hover {
    transform: scale(1.05);
}

.brand-name {
    font-family: 'Comfortaa', cursive;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #59206c 0%, #7B2CBF 30%, #4ECDC4 70%, #45B7D1 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: none;
}

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

.hero-title {
    font-family: 'Fredoka', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.hero-seo-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-seo-text strong {
    font-weight: 600;
}

.highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    display: inline-block;
    margin-bottom: 0.5rem;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: var(--border-radius);
    color: white;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.feature-item i {
    font-size: 1.2rem;
}

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

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

#doodle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-image {
    display: none;
}

/* Section Titles */
.section-title {
    font-family: 'Fredoka', cursive;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-icon:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

.service-card h3 {
    font-family: 'Fredoka', cursive;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
}

.tag:hover {
    background: #4a1a5c;
    transform: scale(1.05);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    max-width: 100%;
}

.about-text {
    min-width: 0;
}

.about-text h2 {
    font-family: 'Fredoka', cursive;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.3;
    text-align: left;
    white-space: nowrap;
}


.brand-name-inline {
    white-space: nowrap;
    display: inline;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
    padding: 0 15px;
}

.about-text p .brand-name {
    font-size: 1.1rem;
    font-family: 'Comfortaa', cursive;
    font-weight: 600;
    display: inline;
}

.about-illustration {
    position: relative;
    width: 320px;
    height: 380px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drop-photo {
    width: 260px;
    height: 320px;
    position: relative;
    overflow: hidden;
    /* Fallback aproximado con polígonos: dos lóbulos unidos (uno grande + uno pequeño) */
    clip-path: polygon(
        48% 0%, 60% 3%, 70% 7%, 78% 14%, 85% 22%,
        90% 30%, 93% 38%, 92% 46%, 88% 54%, 92% 64%,
        90% 72%, 84% 82%, 74% 90%, 60% 96%, 48% 100%,
        36% 97%, 26% 92%, 18% 86%, 12% 78%, 9% 68%,
        8% 58%, 10% 48%, 14% 38%, 20% 30%, 28% 22%,
        38% 14%, 44% 9%, 48% 6%
    );
    /* Mancha orgánica con dos gotas pegadas: lóbulo grande y lóbulo pequeño superior-derecha */
    -webkit-clip-path: path('M48% 2% C58% 0%, 70% 4%, 78% 12% C84% 18%, 90% 26%, 93% 36% C95% 42%, 94% 47%, 90% 54% C96% 62%, 95% 72%, 88% 82% C80% 92%, 66% 99%, 50% 100% C36% 100%, 24% 94%, 16% 86% C10% 80%, 6% 70%, 6% 58% C6% 46%, 10% 36%, 18% 28% C26% 20%, 38% 12%, 46% 8% C47% 7%, 48% 6%, 48% 2% Z');
    clip-path: path('M48% 2% C58% 0%, 70% 4%, 78% 12% C84% 18%, 90% 26%, 93% 36% C95% 42%, 94% 47%, 90% 54% C96% 62%, 95% 72%, 88% 82% C80% 92%, 66% 99%, 50% 100% C36% 100%, 24% 94%, 16% 86% C10% 80%, 6% 70%, 6% 58% C6% 46%, 10% 36%, 18% 28% C26% 20%, 38% 12%, 46% 8% C47% 7%, 48% 6%, 48% 2% Z');
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.drop-photo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.drop-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pedagogue-functions {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
}

.pedagogue-functions h3 {
    font-family: 'Fredoka', cursive;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.functions-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.functions-list {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.functions-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.functions-bullets li {
    position: relative;
    padding: 0.8rem 0 0.8rem 2rem;
    color: var(--text-dark);
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
}

.functions-bullets li:last-child {
    border-bottom: none;
}

.functions-bullets li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.functions-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.8rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.pedagogue-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pedagogue-photo {
    width: 100%;
    max-width: 350px;
    height: 450px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.pedagogue-photo:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* Common Problems Section */
.common-problems {
    padding: 5rem 0;
    background: linear-gradient(135deg, #59206c 0%, #4ECDC4 100%);
    color: white;
}

.common-problems .section-title {
    color: white;
}

.common-problems .section-title::after {
    background: white;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.problem-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    text-align: center;
}

.problem-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.problem-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.problem-card h3 {
    font-family: 'Fredoka', cursive;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.problem-card p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Location Section */
.location {
    padding: 5rem 0;
    background: var(--bg-light);
}

.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.map-container {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.location-info {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.location-info h3 {
    font-family: 'Fredoka', cursive;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.location-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.location-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.location-photo {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.location-photo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.btn-route {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-route:hover {
    background: #4a1a5c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: white;
}

.btn-route i {
    font-size: 1.1rem;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(123, 44, 191, 0.12);
}

.faq-question h3 {
    font-family: 'Fredoka', cursive;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    min-width: 30px;
}

.contact-item h3 {
    font-family: 'Fredoka', cursive;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E9ECEF;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

.footer-logo-image:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) opacity(0.8);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #E8F4FD;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design - Tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-container {
        gap: 3rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .about-content {
        gap: 3rem;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .hero {
        padding-top: 70px;
        min-height: auto;
    }

    /* Ocultar elementos decorativos blancos en móvil */
    .hero-image,
    .doodle-container,
    .doodle-svg {
        display: none !important;
    }

    .hero::before {
        display: none;
    }

    /* Ocultar partículas flotantes en móvil */
    .floating-particle {
        display: none !important;
    }

    /* Asegurar que "Cristina Talavera" sea visible */
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-seo-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .highlight {
        display: block;
        width: 100%;
        margin-bottom: 0.8rem;
        font-size: 1.1rem;
        padding: 0.6rem 1.2rem;
    }

    .brand-name {
        display: block;
        font-size: 2.5rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .feature-item {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .about .container {
        padding: 0 10px;
        max-width: 100%;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }

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

    .about-text h2 {
        width: 100%;
        max-width: 100%;
        padding: 0 5px;
        text-align: center;
        font-family: 'Fredoka', cursive;
        font-size: 2rem;
        margin-bottom: 2rem;
        white-space: normal;
    }

    .about-text p .brand-name {
        font-family: inherit;
        font-weight: 400;
    }

    .about-illustration {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 0 auto;
    }

    .drop-photo {
        width: 100%;
        max-width: 260px;
        height: auto;
        aspect-ratio: 260/320;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .services-grid,
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .functions-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pedagogue-image {
        order: -1;
    }

    .pedagogue-photo {
        max-width: 100%;
        height: auto;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-photos {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        height: 300px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .nav-container {
        padding: 0 15px;
    }

    .container {
        padding: 0 15px;
    }

    .faq-container {
        padding: 0;
    }

    .faq-question {
        padding: 1.2rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .pedagogue-functions {
        padding: 2rem 1.5rem;
    }

    .pedagogue-functions h3 {
        font-size: 1.8rem;
    }

    .functions-list {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 3rem;
    }

    .hero-container {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .highlight {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        margin-bottom: 0.6rem;
    }

    .brand-name {
        font-size: 2rem;
    }

    .feature-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .feature-item i {
        font-size: 1rem;
    }

    .service-card,
    .problem-card {
        padding: 1.5rem;
    }

    .service-card h3,
    .problem-card h3 {
        font-size: 1.3rem;
    }

    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about .container {
        padding: 0 8px;
    }

    .about-text h2 {
        font-size: 1.8rem;
        padding: 0 2px;
        text-align: center;
        font-family: 'Fredoka', cursive;
        margin-bottom: 2rem;
        white-space: normal;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-text p .brand-name {
        font-size: 1rem;
        font-family: inherit;
        font-weight: 400;
    }

    .logo-image {
        height: 40px;
    }

    .nav-container {
        height: 60px;
    }

    .location-info h3 {
        font-size: 1.5rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .contact-item h3 {
        font-size: 1.1rem;
    }

    .footer-logo-image {
        height: 50px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}
