/* Brand Story Page - 2025/2026 Modern Design */
/* Girly Pink Theme with Glassmorphism & Micro-animations */

:root {
    --brand-pink: #ff9ec7;
    --brand-pink-soft: #ffc1e0;
    --brand-pink-light: #ffe4f0;
    --brand-rose: #f48fb1;
    --brand-lavender: #e1bee7;
    --brand-peach: #ffccbc;
    --text-dark: #4a4a4a;
    --text-muted: #8e8e93;
    --bg-cream: #fff5f9;
    --bg-pink-light: #fef6fa;
    --shadow-soft: 0 8px 30px rgba(255, 158, 199, 0.15);
    --shadow-medium: 0 15px 50px rgba(255, 158, 199, 0.25);
}

/* Hero Section */
.brand-hero {
    background: linear-gradient(135deg, #ffe4f0 0%, #ffc1e0 50%, #ff9ec7 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.brand-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 65%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.brand-hero::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 204, 188, 0.3) 0%, transparent 60%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

/* Keywords Section - Glassmorphism */
.brand-keywords {
    background: linear-gradient(to bottom, #ffffff 0%, var(--bg-pink-light) 100%);
    padding: 100px 0;
    position: relative;
}

.brand-keywords::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ff9ec7" fill-opacity="0.04"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.5;
    pointer-events: none;
}

.keyword-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 50px 35px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.keyword-card:nth-child(1) { animation-delay: 0.1s; }
.keyword-card:nth-child(2) { animation-delay: 0.2s; }
.keyword-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.keyword-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-pink), var(--brand-lavender));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.keyword-card:hover::before {
    opacity: 1;
}

.keyword-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-medium);
    background: rgba(255, 255, 255, 0.85);
}

.keyword-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--brand-pink-light), var(--brand-lavender));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--brand-rose);
    transition: transform 0.4s ease;
}

.keyword-card:hover .keyword-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Story Sections - Asymmetric Layout */
.story-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.story-section:nth-child(odd) {
    background: #ffffff;
}

.story-section:nth-child(even) {
    background: var(--bg-pink-light);
}

.story-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    opacity: 0.05;
    pointer-events: none;
}

.story-section:nth-child(odd)::before {
    background: radial-gradient(circle, var(--brand-pink) 0%, transparent 70%);
    top: 10%;
    right: -10%;
}

.story-section:nth-child(even)::before {
    background: radial-gradient(circle, var(--brand-lavender) 0%, transparent 70%);
    bottom: 10%;
    left: -10%;
}

.story-content-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content-left {
    text-align: left;
}

.story-content-right {
    text-align: left;
    padding-left: 40px;
}

/* Visual Placeholders with Micro-animations */
.story-visual-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--brand-pink-light) 0%, var(--brand-lavender) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.story-visual-placeholder:hover {
    transform: scale(1.02);
}

.story-visual-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23ff9ec7" fill-opacity="0.08" fill-rule="evenodd"%3E%3Ccircle cx="3" cy="3" r="3"/%3E%3Ccircle cx="13" cy="13" r="3"/%3E%3C/g%3E%3C/svg%3E');
    animation: slidePattern 20s linear infinite;
}

@keyframes slidePattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.story-visual-placeholder::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
}

.story-visual-placeholder i {
    font-size: 80px;
    color: var(--brand-rose);
    opacity: 0.25;
    position: relative;
    z-index: 1;
}

/* Icon-specific Micro-animations */
/* Heart Icon - Heartbeat */
.story-visual-placeholder .fa-heart {
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.1); }
    20% { transform: scale(1); }
    30% { transform: scale(1.15); }
    40% { transform: scale(1); }
}

.story-visual-placeholder:hover .fa-heart {
    animation: heartbeatFast 0.6s ease-in-out 3;
}

@keyframes heartbeatFast {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Lightbulb Icon - Glow & Sway */
.story-visual-placeholder .fa-lightbulb {
    animation: glowSway 3s ease-in-out infinite;
}

@keyframes glowSway {
    0%, 100% { transform: rotate(-5deg); filter: brightness(1); }
    50% { transform: rotate(5deg); filter: brightness(1.3); }
}

.story-visual-placeholder:hover .fa-lightbulb {
    animation: lightFlash 0.5s ease-in-out;
}

@keyframes lightFlash {
    0%, 100% { opacity: 0.25; filter: brightness(1); }
    50% { opacity: 0.6; filter: brightness(1.8); }
}

/* Hands Icon - Wave Motion */
.story-visual-placeholder .fa-hands {
    animation: handWave 2.5s ease-in-out infinite;
}

@keyframes handWave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(15deg); }
}

.story-visual-placeholder:hover .fa-hands {
    animation: handClap 0.8s ease-in-out;
}

@keyframes handClap {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(0.9) rotate(-10deg); }
    75% { transform: scale(1.1) rotate(10deg); }
}

/* Gift Icon - Bounce */
.story-visual-placeholder .fa-gift {
    animation: giftBounce 2s ease-in-out infinite;
}

@keyframes giftBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.story-visual-placeholder:hover .fa-gift {
    animation: giftShake 0.6s ease-in-out;
}

@keyframes giftShake {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(-10px) rotate(-10deg); }
    75% { transform: translateX(10px) rotate(10deg); }
}

/* Box Icon - Float */
.story-visual-placeholder .fa-box-open {
    animation: boxFloat 3s ease-in-out infinite;
}

@keyframes boxFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.story-visual-placeholder:hover .fa-box-open {
    animation: boxPop 0.6s ease-in-out;
}

@keyframes boxPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.2) translateY(-20px); }
    100% { transform: scale(1); }
}

/* Typography & Content */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--brand-rose);
    margin-bottom: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.divider-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-pink), var(--brand-rose));
    margin: 30px 0;
    border-radius: 3px;
}

.section-content {
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    line-height: 2;
    color: var(--text-muted);
    text-align: left;
    margin-top: 30px;
}

.section-content p {
    margin-bottom: 1.5rem;
}

.icon-decorator {
    display: inline-block;
    margin: 25px 0;
    color: var(--brand-pink);
    opacity: 0.35;
}

.icon-decorator i {
    font-size: 32px;
    margin: 0 12px;
}

/* CTA Section - Premium */
.cta-section {
    background: linear-gradient(135deg, var(--brand-rose) 0%, var(--brand-pink) 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 1;
}

.cta-section p {
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
    background: white;
    color: var(--brand-rose);
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--brand-pink);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .story-content-asymmetric {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-content-right {
        padding-left: 0;
    }
    
    .section-heading { 
        font-size: 2.2rem; 
    }
}

@media (max-width: 768px) {
    .brand-hero {
        padding: 80px 0;
    }
    
    .section-heading { 
        font-size: 1.9rem; 
    }
    
    .story-section { 
        padding: 60px 0; 
    }
    
    .brand-keywords { 
        padding: 60px 0; 
    }
    
    .keyword-card {
        padding: 40px 25px;
    }
    
    .story-visual-placeholder {
        height: 300px;
    }
}
