/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', 'Comfortaa', sans-serif;
    line-height: 1.6;
    color: #4a5568;
    background: linear-gradient(135deg, #fef7f0 0%, #f0f9ff 25%, #f0e6ff 50%, #e6fff0 75%, #ffe6f0 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Main Content */
.main {
    margin-top: 80px;
}

/* Hero About Section */
.hero-about {
    padding: 8rem 0 6rem;
    background: radial-gradient(circle at 30% 20%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(236, 72, 153, 0.3);
    font-family: 'Comfortaa', sans-serif;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #718096;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.hero-decoration {
    position: relative;
    height: 100px;
}

.floating-element {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.8;
    animation: float-gentle 6s ease-in-out infinite;
}

.floating-element.heart {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.floating-element.star {
    top: 10%;
    right: 20%;
    animation-delay: 1s;
}

.floating-element.egg {
    bottom: 20%;
    left: 25%;
    animation-delay: 2s;
}

.floating-element.sparkle {
    bottom: 10%;
    right: 15%;
    animation-delay: 3s;
}

/* Hero Clouds */
.hero-clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    opacity: 0.7;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
}

.cloud-1 {
    width: 100px;
    height: 40px;
    top: 20%;
    left: 10%;
    animation: drift-slow 20s linear infinite;
}

.cloud-1::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 10px;
}

.cloud-1::after {
    width: 60px;
    height: 40px;
    top: -15px;
    right: 10px;
}

.cloud-2 {
    width: 80px;
    height: 30px;
    top: 60%;
    right: 15%;
    animation: drift-slow 25s linear infinite reverse;
}

.cloud-2::before {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 15px;
}

.cloud-2::after {
    width: 50px;
    height: 30px;
    top: -10px;
    right: 15px;
}

.cloud-3 {
    width: 120px;
    height: 50px;
    top: 40%;
    right: 5%;
    animation: drift-slow 30s linear infinite;
}

.cloud-3::before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 20px;
}

.cloud-3::after {
    width: 70px;
    height: 50px;
    top: -20px;
    right: 20px;
}

/* About Sections */
.about-section {
    padding: 6rem 0;
    position: relative;
}

.about-section:nth-child(even) {
    background: rgba(255, 255, 255, 0.4);
}

.about-section:nth-child(odd) {
    background: rgba(236, 72, 153, 0.03);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    text-shadow: 0 0 25px rgba(236, 72, 153, 0.2);
    font-family: 'Comfortaa', sans-serif;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

.section-content {
    display: grid;

    gap: 4rem;
    align-items: center;
}

.section-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.section-content.reverse .content-visual {
    order: -1;
}

/* Story Section */
.story-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2.5rem;
    border-radius: 25px;
    margin-bottom: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(236, 72, 153, 0.2);
}

.story-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.story-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    font-family: 'Comfortaa', sans-serif;
}

.story-card p {
    color: #4a5568;
    line-height: 1.7;
}

.mission-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ec4899;
    font-style: italic;
    text-align: center;
    padding: 1rem;
    background: rgba(236, 72, 153, 0.1);
    border-radius: 15px;
    margin: 1rem 0;
}

/* Story Illustration */
.story-illustration {
    position: relative;
    text-align: center;
}

.story-image {
    width: 100%;
    max-width: 500px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.story-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(236, 72, 153, 0.2);
}

.story-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #ffd700, #ffed4e);
    border-radius: 50%;
    animation: sparkle-twinkle 2s ease-in-out infinite;
}

.sparkle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 30%;
    right: 20%;
    animation-delay: 0.5s;
}

.sparkle-3 {
    bottom: 30%;
    left: 25%;
    animation-delay: 1s;
}

.sparkle-4 {
    bottom: 20%;
    right: 15%;
    animation-delay: 1.5s;
}

/* Special Features */
.special-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-card:hover {
    transform: translateX(15px);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-family: 'Comfortaa', sans-serif;
}

.feature-content p {
    color: #4a5568;
    line-height: 1.6;
}

.special-image {
    width: 100%;
    max-width: 500px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.special-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(236, 72, 153, 0.2);
}

/* Design Section */
.design-process {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-family: 'Comfortaa', sans-serif;
}

.step-content p {
    color: #4a5568;
    line-height: 1.6;
}

.design-quote {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(139, 92, 246, 0.1));
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border-left: 4px solid #ec4899;
}

.quote-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.design-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.quote-author {
    font-weight: 600;
    color: #ec4899;
}

.design-image {
    width: 100%;
    max-width: 500px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.design-tools {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.tool-item {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tool-item:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2);
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    font-family: 'Comfortaa', sans-serif;
}

.value-card p {
    color: #4a5568;
    line-height: 1.6;
}

.values-image {
    width: 100%;
    max-width: 500px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.values-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.value-bubble {
    position: absolute;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: bubble-float 4s ease-in-out infinite;
}

.bubble-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.bubble-2 {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.bubble-3 {
    bottom: 30%;
    left: 25%;
    animation-delay: 2s;
}

.bubble-4 {
    bottom: 20%;
    right: 15%;
    animation-delay: 3s;
}

.partnership-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    border-left: 4px solid #10b981;
    color: #065f46;
}

.partnership-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

/* Team Section */
.team-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.team-intro p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(236, 72, 153, 0.2);
}

.member-egg {
    position: relative;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.member-egg img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

}

.egg-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.member-pet {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: pet-bounce 2s ease-in-out infinite;
}

.member-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-family: 'Comfortaa', sans-serif;
}

.member-role {
    font-size: 1rem;
    color: #ec4899;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.6;
    font-style: italic;
}

.team-message {
    text-align: center;
}

.message-card {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(139, 92, 246, 0.1));
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.message-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.message-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-family: 'Comfortaa', sans-serif;
}

.message-card p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.message-signature {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.message-signature span {
    color: #718096;
}

.signature-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ec4899;
    font-family: 'Comfortaa', sans-serif;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    font-family: 'Comfortaa', sans-serif;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.cta-btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-btn.primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn.primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
    background: white;
    color: #ec4899;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}



/* Animations */
@keyframes float-gentle {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes drift-slow {
    0% {
        transform: translateX(-100px);
    }

    100% {
        transform: translateX(calc(100vw + 100px));
    }
}

@keyframes sparkle-twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes bubble-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pet-bounce {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
  

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-content,
    .section-content.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-content.reverse .content-visual {
        order: 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-stats {
        flex-direction: column;
        gap: 2rem;
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

  

    .social-links {
        justify-content: center;
    }
}

/* Scroll animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}