/* F&S Collections Silver - Premium Enhancements */

/* Gold Gradient Text */
.text-gold-gradient {
    background: linear-gradient(135deg, #C9A962 0%, #E5D4A1 50%, #C9A962 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Cream Gradient Background */
.cream-gradient {
    background: linear-gradient(180deg, #FDF8F3 0%, #F7F0E8 100%);
}

/* Badge Component */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    background: rgba(201, 169, 98, 0.1);
    color: var(--primary-gold);
}

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

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Enhanced Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--fs-blue) 0%, var(--fs-blue-light) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(201, 169, 98, 0.08) 0%,
        rgba(250, 248, 245, 0.95) 40%,
        rgba(250, 248, 245, 0.98) 60%,
        rgba(229, 212, 161, 0.08) 100%
    );
    z-index: -1;
}

.hero-bg-decoration {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    pointer-events: none;
    background: 
        radial-gradient(circle at 20% 30%, var(--primary-gold) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--primary-gold) 0%, transparent 50%);
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-image-circle {
    position: relative;
    aspect-ratio: 1;
    max-width: 500px;
    margin: 0 auto;
}

.hero-image-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(60px);
    animation: pulse 2s ease-in-out infinite;
}

.hero-image-circle img {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(201, 169, 98, 0.3);
}

/* Stats Section */
.stats-section {
    padding: 2rem 0;
    background: var(--text-dark);
    color: var(--bg-cream);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-icon {
    width: 2rem;
    height: 2rem;
    margin: 0 auto;
    color: var(--primary-gold);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-cream);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(250, 248, 245, 0.7);
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* Testimonials */
.testimonials-section {
    padding: 4rem 0;
}

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

.testimonial-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.testimonial-rating i {
    fill: currentColor;
}

.testimonial-content {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Occasion Cards Enhancement */
.occasion-card {
    transition: all 0.3s;
}

.occasion-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.occasion-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: var(--bg-cream);
}

.cta-card {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #fdfcfb 100%);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
}

.cta-card h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.cta-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

/* Enhanced Buttons */
.btn-outline {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-2px);
}

/* Product Card Enhancements */
.product-card {
    background: linear-gradient(135deg, #ffffff 0%, #fdfcfb 100%);
    transition: all 0.3s;
}

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

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-card .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}
