/* Celebration Boxes - Main CSS */

/* Color Variables */
:root {
    --primary-color: #6d7ad2;
    --primary-light: #b0c3eb;
    --primary-dark: #546ebc;
    
    --secondary-color: #6a4a8d;
    --secondary-light: #9c7fd1;
    --secondary-dark: #4b2d6b;
    
    --accent-color: #ed8bf6;
    --accent-light: #deb1e8;
    --accent-dark: #f982ff;
    
    --success-color: #3fdac0;
    --success-light: #7dccbb;
    --success-dark: #43a09b;
    
    --warning-color: #fff852;
    --warning-light: #fffba0;
    --warning-dark: #e6c84f;
    
    --light-bg: #f8f9fa;
    --dark-bg: #315266;
    --text-dark: #364b5a;
    --text-light: #6f767a;
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 21.00px;
}

/* Conservative font sizes */
.navbar-brand {
    font-size: 1.33rem !important;
    font-weight: 600;
}

h1, .display-1, .display-2, .display-3, .display-4 {
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

h1 { font-size: 2.55rem; }
h2 { font-size: 2.08rem; }
h3 { font-size: 1.87rem; }
h4 { font-size: 1.51rem; }
h5 { font-size: 1.33rem; }
h6 { font-size: 1.08rem; }

p {
    font-size: 1.08rem;
    margin-bottom: 1.16rem;
}

.lead {
    font-size: 1.17rem;
    font-weight: 400;
}

/* Prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Header Styles */
.navbar {
    backdrop-filter: blur(19px);
    transition: all 0.3s ease;
}

.navbar-brand {
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--primary-dark), var(--secondary-dark));
    transform: translateY(-5px);
    box-shadow: 0 9px 19px rgba(92, 130, 242, 0.40);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Card Styles */
.card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 11px 25px rgba(0,0,0,0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

/* Pricing Cards */
.pricing-card {
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-11px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Section Spacing */
section {
    padding: 5rem 0;
}

.py-5 {
    padding: 3rem 0 !important;
}

/* Background Variants */
.bg-light {
    background-color: var(--light-bg) !important;
}

.bg-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light)) !important;
}

.bg-success {
    background: linear-gradient(45deg, var(--success-color), var(--success-light)) !important;
}

.bg-info {
    background: linear-gradient(45deg, #28b2b3, #5ec5eb) !important;
}

.bg-warning {
    background: linear-gradient(45deg, var(--warning-color), var(--warning-light)) !important;
}

.bg-danger {
    background: linear-gradient(45deg, #d52e35, #ea5e4d) !important;
}

/* Text Colors */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-success { color: var(--success-color) !important; }
.text-warning { color: var(--warning-color) !important; }

/* Form Styles */
.form-control {
    border-radius: 10px;
    border: 2px solid #dadee5;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(92, 139, 235, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.65rem;
}

/* Accordion Styles */
.accordion-button {
    border-radius: 10px !important;
    background-color: var(--light-bg);
    border: none;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(102, 134, 231, 0.25);
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2f3c53 100%);
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-light) !important;
}

/* Icon Styles */
.fas, .far {
    transition: all 0.3s ease;
}

/* Team Images */
.rounded-circle {
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.rounded-circle:hover {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

/* Gallery Images */
.img-fluid.rounded {
    border-radius: 15px !important;
    transition: all 0.3s ease;
}

.img-fluid.rounded:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Support Cards */
.support-card {
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--primary-color) !important;
}

/* Badges */
.badge {
    font-size: 1.02rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* Timeline Items */
.timeline-item {
    position: relative;
}

/* Process Steps */
.process-step {
    position: relative;
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item img {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.breadcrumb-item img:hover {
    filter: none;
}

/* Utilities */
.shadow-sm {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

.shadow {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

.rounded-3 {
    border-radius: 15px !important;
}

/* Custom Gradient Backgrounds */
.gradient-bg-1 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.gradient-bg-2 {
    background: linear-gradient(135deg, var(--success-color) 0%, var(--warning-color) 100%);
}

.gradient-bg-3 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 { font-size: 2.08rem; }
    h2 { font-size: 1.87rem; }
    .display-4 { font-size: 2.55rem; }
    
    .hero-section {
  padding-top: 50px;
        padding: 2rem 0;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .py-5 {
        padding: 2rem 0 !important;
    }
}

/* Celebration-specific styles */
.celebration-box {
    position: relative;
    overflow: hidden;
}

.celebration-box::before {
    content: 'ðŸŽ‰';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.51rem;
    opacity: 0.7;
}

.pricing-highlight {
    position: relative;
}

.pricing-highlight::after {
    content: 'Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 1.02rem;
    font-weight: 600;
} 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
