/**
 * The Moving Canvas - Stylesheet
 * Elegant Black & White Design with Pink Accents
 */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --accent-color: #ff69b4;
    --pink-color: #ff1493;
    --pink-hover: #ff007f;
    --text-color: #000000;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--pink-color);
}

/* Header - Elegant Black and White */
.header {
    background: #ffffff;
    color: var(--primary-color);
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.logo {
    margin-bottom: 10px;
    display: inline-block;
}

.logo a {
    display: inline-block;
}

.logo-image {
    max-height: 120px;
    width: auto;
    margin: 0 auto;
    display: inline-block;
    transition: var(--transition);
}

.logo-image:hover {
    opacity: 0.8;
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

/* Social Proof Badge */
.social-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 2px solid var(--border-color);
    padding: 12px 24px;
    margin-top: 15px;
    transition: var(--transition);
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

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

.social-badge:hover::before {
    left: 100%;
}

.social-badge:hover {
    border-color: var(--pink-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.2);
    color: var(--pink-color);
}

.social-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    transition: var(--transition);
}

.social-badge:hover .social-icon {
    transform: scale(1.1);
    color: var(--pink-color);
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.badge-count {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.social-badge:hover .badge-count {
    color: var(--pink-color);
}

.badge-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.badge-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.6;
    transition: var(--transition);
}

.social-badge:hover .badge-arrow {
    opacity: 1;
    transform: translateX(3px);
    color: var(--pink-color);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: var(--bg-color);
}

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

.hero-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.hero-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(20%);
}

.hero-item:hover .hero-image {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 30px;
}

.hero-overlay h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-overlay p {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: var(--bg-gray);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

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

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: var(--bg-gray);
    cursor: zoom-in;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-image-wrapper:hover .product-image {
    transform: scale(1.1);
}

.product-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Navigation */
.main-nav {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 0;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Page Header (for dedicated pages) */
.page-header {
    background: var(--bg-gray);
    padding: 60px 0 40px;
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Personalized Callout */
.personalized-callout {
    background: linear-gradient(135deg, var(--pink-color) 0%, var(--pink-hover) 100%);
    padding: 40px 0;
    margin-bottom: 40px;
}

.callout-content {
    text-align: center;
    color: white;
}

.callout-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.callout-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.callout-content .btn {
    background: white;
    color: var(--pink-color);
    font-weight: 700;
}

.callout-content .btn:hover {
    background: var(--bg-gray);
    transform: translateY(-2px);
}

/* Product Variant Selector */
.variant-selector {
    padding: 15px 20px;
    background: var(--bg-gray);
    border-bottom: 1px solid var(--border-color);
}

.variant-dropdown {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 600;
    background: white;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23000000' d='M1.41 0L6 4.58 10.59 0 12 1.42l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.variant-dropdown:hover {
    border-color: var(--primary-color);
}

.variant-dropdown:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-stock {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

/* Pink Buy Button */
.btn-buy {
    width: 100%;
    margin-top: 15px;
    background: var(--pink-color);
    color: white;
    font-size: 1.1rem;
    padding: 15px;
    font-weight: 700;
}

.btn-buy:hover {
    background: var(--pink-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 20, 147, 0.3);
}

.btn-buy:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
}

.btn-buy:disabled:hover {
    background: #cccccc;
    transform: none;
    box-shadow: none;
}

/* Loading & Error States */
.loading {
    text-align: center;
    padding: 60px 20px;
}

.spinner {
    border: 4px solid var(--bg-gray);
    border-top: 4px solid var(--pink-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

.error-message {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Footer - Black */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmin(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.8;
}

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

.footer-section a:hover {
    opacity: 1;
    color: var(--pink-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    opacity: 0.9;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--pink-color);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.8;
    margin: 5px 0;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    transition: var(--transition);
    cursor: pointer;
    user-select: none;
}

.lightbox-close:hover {
    color: var(--pink-color);
}

#lightbox-caption {
    text-align: center;
    color: white;
    padding: 20px;
    font-size: 1.2rem;
}

/* Success Page */
.success-page {
    min-height: 60vh;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-message,
.error-message {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 0;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--pink-color);
    color: white;
    font-size: 50px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.success-message h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.success-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.order-details {
    background: var(--bg-gray);
    padding: 30px;
    border-radius: 0;
    margin: 30px 0;
    text-align: left;
}

.order-details h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.order-info p {
    margin: 10px 0;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.order-info p:last-child {
    border-bottom: none;
}

.order-confirmation {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.order-confirmation p {
    margin: 10px 0;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-image {
        max-height: 90px;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .social-badge {
        font-size: 0.9rem;
        padding: 10px 18px;
        gap: 10px;
    }
    
    .social-icon {
        width: 24px;
        height: 24px;
    }
    
    .badge-count {
        font-size: 1rem;
    }
    
    .badge-label {
        font-size: 0.7rem;
    }
    
    .badge-arrow {
        width: 16px;
        height: 16px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .product-name {
        font-size: 1.2rem;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-image {
        max-height: 70px;
    }
    
    .social-badge {
        font-size: 0.85rem;
        padding: 8px 14px;
        gap: 8px;
    }
    
    .social-icon {
        width: 20px;
        height: 20px;
    }
    
    .badge-count {
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 30px 0;
    }
    
    .products {
        padding: 40px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image-wrapper {
        height: 250px;
    }
}

/* Personalized Search Section */
.personalized-search-section {
    background-image: url('../images/personalized-promo-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0;
    margin: 3rem 0;
    position: relative;
}

/* Dark overlay for better text readability */
.personalized-search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.personalized-search-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.search-promo-text {
    margin-bottom: 2rem;
}

.promo-title {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.promo-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.arrow-down {
    color: white;
    animation: bounce 2s infinite;
    margin: 0 auto;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.search-box-container {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.name-search-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.name-search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    outline: none;
    transition: all 0.3s;
}

.name-search-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.name-search-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.name-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.search-helper-text {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.popular-names {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.popular-label {
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

.popular-name-link {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #f5f5f5;
    color: #667eea;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.popular-name-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Styles for Personalized Search */
@media (max-width: 768px) {
    .personalized-search-section {
        padding: 3rem 0;
        margin: 2rem 0;
    }
    
    .promo-title {
        font-size: 1.8rem;
    }
    
    .promo-subtitle {
        font-size: 1.1rem;
    }
    
    .search-box-container {
        padding: 1.5rem 1rem;
    }
    
    .name-search-form {
        flex-direction: column;
    }
    
    .name-search-input,
    .name-search-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .promo-title {
        font-size: 1.5rem;
    }
    
    .promo-subtitle {
        font-size: 1rem;
    }
    
    .popular-names {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn,
    .personalized-search-section {
        display: none;
    }
}

/* ============================================
   SHARE YOUR STORY PAGE STYLES
   ============================================ */

/* Story Hero Section */
.story-hero {
    background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg-color) 100%);
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.story-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.story-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Story Form Section */
.story-form-section {
    padding: 60px 0;
    background-color: var(--bg-color);
}

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

.story-intro {
    text-align: center;
    margin-bottom: 50px;
}

.story-intro h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.story-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.story-note {
    background-color: var(--bg-gray);
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    margin-top: 30px;
}

/* Form Styles */
.story-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-group .required {
    color: var(--pink-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    transition: var(--transition);
    background-color: var(--bg-color);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 200px;
    line-height: 1.6;
}

.form-help {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 6px;
}

/* Form Actions */
.form-actions {
    margin-top: 40px;
    text-align: center;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--pink-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

.btn-submit .btn-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

/* Success Message */
.story-success-message {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    stroke: var(--accent-color);
}

.story-success-message h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.story-success-message p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

/* Error Messages */
.error-messages {
    background-color: #fee;
    border: 2px solid #fcc;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
}

.error-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke: #c00;
}

.error-messages ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.error-messages li {
    color: #c00;
    font-weight: 500;
    margin-bottom: 8px;
}

.error-messages li:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Story Form */
@media (max-width: 768px) {
    .story-hero {
        padding: 60px 0 40px;
    }
    
    .story-hero-title {
        font-size: 2rem;
    }
    
    .story-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .story-form-section {
        padding: 40px 0;
    }
    
    .story-form {
        padding: 30px 20px;
    }
    
    .story-intro h2 {
        font-size: 1.75rem;
    }
    
    .story-intro p {
        font-size: 1rem;
    }
    
    .story-success-message {
        padding: 40px 25px;
    }
    
    .story-success-message h2 {
        font-size: 1.75rem;
    }
    
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}

/* Testimonials Section */
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
}
