@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #b83c82;
    --secondary-color: #4a90a4;
    --tertiary-color: #d4915c;
    --accent-color: #e8c547;
    --purple-party: #6b4493;
    --pink-party: #c1556b;
    --orange-party: #cc7a3a;
    --text-dark: #1a1a1a;
    --text-light: #a0a0a0;
    --text-white: #ffffff;
    --bg-dark: #0f1419;
    --bg-darker: #1a1f29;
    --bg-card: #252b36;
    --bg-nav: rgba(15, 20, 25, 0.95);
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-colorful: 0 8px 25px rgba(184, 60, 130, 0.3);
    --gradient-primary: linear-gradient(135deg, #b83c82, #4a90a4);
    --gradient-secondary: linear-gradient(135deg, #6b4493, #c1556b);
    --gradient-party: linear-gradient(135deg, #d4915c, #e8c547);
    --gradient-hero: linear-gradient(135deg, #6b4493, #b83c82, #4a90a4);
    --border-radius: 20px;
}

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

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

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

header {
    background-color: var(--bg-dark);
    box-shadow: none;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: none;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

header nav {
    padding: 1.2rem 0.25rem;
}

.logo {
    height: 60px;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.3s ease;
    position: relative;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    font-size: 1.1rem;
}

.nav-links a:hover {
    text-decoration: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 80%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    background: rgba(184, 60, 130, 0.1);
}

.hero {
    background: rgba(107, 68, 147, 0.4);
    color: var(--white);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    opacity: 1;
}

.carousel-track {
    display: flex;
    align-items: center;
    width: calc(440px * 30);
    height: 100%;
    animation: slideLeft 100s linear infinite;
}

.carousel-track img {
    width: 440px;
    height: 120%;
    object-fit: cover;
    flex-shrink: 0;
    margin-right: -40px;
    border-radius: 0;
    opacity: 1;
}

.carousel-track img:nth-child(2n) {
    transform: rotate(5deg) !important;
}
.carousel-track img:nth-child(2n+1) {
    transform: rotate(-5deg) !important;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 20 - 20px * 20));
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(184, 60, 130, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: sparkle 4s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.hero h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

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

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
    font-weight: 300;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    background: var(--gradient-party);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);;
    animation: fadeInUp 1s ease-out 0.6s both;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.lucide-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin: 0 6px;
    margin-top: -2px;
}

.filter-white {
    filter: brightness(0) invert(100%);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(184, 60, 130, 0.3);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(184, 60, 130, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(74, 144, 164, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.section .container {
    position: relative;
    z-index: 1;
}

.section:nth-child(even) {
    background: var(--bg-darker);
}

.section h2 {
    font-family: 'Fredoka', sans-serif;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--text-white);
    font-weight: 500;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transform: translateX(-50%);
}

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

.card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-party);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-colorful);
    border-color: var(--primary-color);
}

.card:hover::before {
    transform: translateX(0);
}

.card h3 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.contact-info {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
}

.contact-info h3 {
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

footer {
    background: var(--gradient-secondary);
    color: var(--white);
    text-align: center;
    padding: 3rem 0;
    position: relative;
}

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

a:hover {
    text-decoration: underline;
}

.mobile-nav {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-white);
    cursor: pointer;
    padding: 0.45rem 1rem 0.6rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-nav:hover {
    background: rgba(184, 60, 130, 0.1);
    color: var(--primary-color);
}

.nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-nav);
    backdrop-filter: blur(10px);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 15px 15px;
    gap: 1.5rem;
    animation: slideDown 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 1.3rem;
    z-index: 1001;
}


.testimonial {
    display: flex;
    flex-direction: row;
    max-width: 1080px;
    margin: 0 auto;
    gap: 40px;
    background: var(--bg-card);
    padding: 5rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.two-columns {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.two-columns.founder {
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.two-columns > * {
    flex: 50%;
}

.testimonial-single-column {
    display: flex;
    flex-direction: column;
    max-width: unset;
    margin: 0 auto;
    gap: 20px;
    background: var(--bg-card);
    padding: 2.5rem 5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.testimonial-first-item {
    flex: 40%;
    max-width: 40%;
    align-self: center;
}

.testimonial-second-item {
    flex: 60%;
    max-width: 60%;
    align-self: center;
}

.testimonial h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.testimonial blockquote {
    font-style: normal;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    line-height: 1.8;
    font-weight: 400;
    color: var(--text-white);
}

.testimonial-single-column blockquote {
    margin-bottom: 0;
}

.testimonial blockquote::before {
    content: '\201C';
    position: absolute;
    top: -30px;
    left: -40px;
    font-size: 4rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    font-family: serif;
}

.testimonial blockquote::after {
    content: '\201D';
    position: absolute;
    bottom: -50px;
    right: -10px;
    font-size: 4rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    font-family: serif;
}

.testimonial:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-colorful);
    background: linear-gradient(135deg, rgba(184, 60, 130, 0.08), rgba(74, 144, 164, 0.08));
}

.testimonial:hover .polaroid-photo {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.3);
}

cite {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    font-style: normal;
}

.polaroid-photo {
    margin: 0 50px;
    height: auto;
    background: #fff;
    padding: 12px 12px 60px 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.polaroid-photo img {
    width: 100%;
    height: auto;
    border-radius: 1px;
}

.polaroid-photo::after {
    position: absolute;
    bottom: 22px;
    right: 0;
    left: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #333;
    text-align: center;
    font-weight: 500;
}

.polaroid-photo-1 {
    transform: rotate(-5deg);
}

.polaroid-photo-2 {
    transform: rotate(5deg);
}

.polaroid-photo-3 {
    transform: rotate(-5deg);
}

.polaroid-photo-4 {
    transform: rotate(5deg);
}

.polaroid-photo-1:after {
    content: 'Miguel\'s Birthday Party';
}

.polaroid-photo-2:after {
    content: 'Antonella\'s Birthday Party';
}

.polaroid-photo-3:after {
    content: 'Fabiana\'s Birthday Party';
}

.polaroid-photo-4:after {
    content: 'Lara\'s Quinceañera';
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation right side */
.nav-right {
    display: flex;
    align-items: center;
    gap: 3rem;
}

/* Language switcher styles */
.language-switcher {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2px;
    gap: 2px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    padding: 0.5rem 0.7rem;
    font-size: 1.8rem;
    line-height: 1.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.lang-option:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.lang-option.active {
    background: var(--primary-color);
    opacity: 1;
    color: white;
    box-shadow: 0 2px 8px rgba(184, 60, 130, 0.3);
}


@media (max-width: 768px) {
    .container {
        margin: 0 8px;
    }
    .nav-links {
        display: none;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .language-switcher {
        scale: 0.9;
    }
    
    .lang-option {
        padding: -0.2rem 0.6rem;
        font-size: 1.8rem;
        line-height: 1.5rem;
        border-radius: 21px;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section h2 {
        font-size: 2.2rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card {
        padding: 2rem;
    }

    .testimonial {
        display: flex;
        flex-direction: column;
        padding: 4rem 0;
    }

    .two-columns {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .two-columns.founder {
        flex-direction: column-reverse;
    }

    .founder-profile-picture {
        max-width: 280px;
    }

    .two-columns > * {
        flex: 100%;
    }

    .testimonial-single-column {
        padding: 2rem;
    }

    .testimonial-first-item, .testimonial-second-item {
        flex: 100%;
    }

    .polaroid-photo {
        margin: 0 auto;
    }

    .nav-right {
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .founder-profile-picture {
        max-width: 230px;
    }
}

@media (max-width: 320px) {
    .founder-profile-picture {
        max-width: 180px;
    }
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--text-light);
    padding: 1rem;
    z-index: 10000;
    box-shadow: var(--shadow-lg);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-consent-text h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.cookie-consent-text p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.cookie-consent-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.consent-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.consent-accept {
    background: var(--gradient-primary);
    color: var(--text-white);
}

.consent-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-colorful);
}

.consent-decline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.consent-decline:hover {
    background: var(--text-light);
    color: var(--bg-dark);
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .cookie-consent-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .consent-btn {
        width: 100%;
        padding: 0.875rem;
    }
}

@media (max-width: 480px) {
    .cookie-consent-banner {
        padding: 1.5rem 1rem;
    }

    .cookie-consent-text h4 {
        font-size: 1rem;
    }

    .cookie-consent-text p {
        font-size: 0.85rem;
    }
}
