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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ffeef8 0%, #ffe0f0 25%, #ffd4ea 50%, #ffc8e4 75%, #ffb3de 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    color: #2d1b34;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
    position: relative;
    z-index: 10;
    min-height: 100vh;
}

/* Background Decorations - Removed */
/*
.bg-decoration {
    position: fixed;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.decoration-1 {
    width: 200px;
    height: 200px;
    background: #ff69b4;
    top: 10%;
    left: -50px;
    animation-delay: 0s;
}

.decoration-2 {
    width: 150px;
    height: 150px;
    background: #ff1493;
    top: 60%;
    right: -40px;
    animation-delay: 2s;
}

.decoration-3 {
    width: 100px;
    height: 100px;
    background: #ff69b4;
    bottom: 20%;
    left: 20px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}
*/

/* Header Section */
.header-section {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.logo-container {
    margin-bottom: 1.5rem;
}

.header-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #ff69b4;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d1b34;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(255, 105, 180, 0.2);
    font-family: 'Comfortaa', cursive;
    letter-spacing: 1px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #ff69b4;
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
}

/* About Section */
.about-section {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.about-text-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 105, 180, 0.3);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.2);
    position: relative;
    overflow: hidden;
}

/* Removed shimmer animation for cleaner look */

.cute-intro {
    margin-bottom: 2rem;
}

.intro-accent {
    display: block;
    font-family: 'Dancing Script', cursive;
    font-size: 1.6rem;
    font-weight: 600;
    color: #ff69b4;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(255, 105, 180, 0.3);
}

.brand-name {
    font-family: 'Comfortaa', cursive;
    font-weight: 600;
    color: #ff1493;
    font-size: 1.1em;
    text-shadow: 1px 1px 2px rgba(255, 105, 180, 0.2);
}

.about-intro, .about-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #2d1b34;
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    margin-bottom: 1rem;
}

.cute-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    gap: 1rem;
}

.divider-heart {
    font-size: 1.2rem;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.about-divider {
    flex: 1;
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff69b4, transparent);
    margin: 0;
}

.values-title {
    font-family: 'Comfortaa', cursive;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff69b4;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(255, 105, 180, 0.2);
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 182, 193, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 182, 193, 0.2);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
}

.value-icon-container {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
    flex-shrink: 0;
}

.value-icon-container i {
    color: white;
    font-size: 1.1rem;
}

.value-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.value-name {
    font-family: 'Comfortaa', cursive;
    font-weight: 600;
    font-size: 0.95rem;
    color: #2d1b34;
}

.value-desc {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.8rem;
    color: #6b4c75;
    font-weight: 400;
    line-height: 1.4;
}

/* About Visuals */
.about-visuals {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
    justify-content: space-between;
}

.main-photo {
    width: 100%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.3);
    border: 3px solid rgba(255, 105, 180, 0.3);
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-photo {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.2);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 105, 180, 0.2);
}

.about-photo:hover, .main-photo:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.4);
    border-color: #ff69b4;
}

.about-photo img, .main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-photo:hover img, .main-photo:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(255, 105, 180, 0.9));
    color: white;
    padding: 1rem 0.75rem 0.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-photo:hover .photo-overlay, .main-photo:hover .photo-overlay {
    transform: translateY(0);
}

/* Quote Section */
.quote-section {
    margin: 2rem 0 1rem 0;
    width: 100%;
}

.about-visuals .quote-section {
    margin-top: 2rem;
    margin-bottom: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.about-quote {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.15), rgba(255, 182, 193, 0.15));
    padding: 3.5rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    border: 2px solid rgba(255, 105, 180, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.quote-decoration {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff69b4;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4);
}

.quote-mark {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    font-family: serif;
}

.about-quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #2d1b34;
    margin: 1rem 0;
    line-height: 1.6;
    font-weight: 500;
    font-family: 'Dancing Script', cursive;
}

.about-quote cite {
    font-size: 1rem;
    color: #ff69b4;
    font-weight: 600;
    font-style: normal;
    font-family: 'Quicksand', sans-serif;
}

.quote-stars {
    margin-top: 1rem;
    font-size: 1.3rem;
    animation: twinkle 2s ease-in-out infinite;
}

.philosophy-text {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 105, 180, 0.3);
}

.philosophy-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #2d1b34;
    font-style: normal;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.quote-heart {
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* CTA Section */
.cta-section {
    text-align: center;
}

.cta-title {
    font-family: 'Comfortaa', cursive;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d1b34;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(255, 105, 180, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-family: 'Comfortaa', cursive;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #ff69b4;
    border: 2px solid #ff69b4;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.4);
}

.cta-btn.secondary:hover {
    background: #ff69b4;
    color: white;
}

.cta-btn i {
    font-size: 1rem;
    animation: heartPulse 2s ease-in-out infinite;
}

@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Footer */
.footer {
    text-align: center;
    color: #6b4c75;
    font-size: 0.85rem;
    font-weight: 300;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem 0.75rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text-section {
        padding: 2rem;
    }
    
    .main-photo {
        height: 200px;
    }
    
    .photos-grid {
        gap: 0.75rem;
    }
    
    .about-quote {
        padding: 2rem 1.5rem;
    }
    
    .about-quote blockquote {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        text-align: center;
    }
}
