/* Fairy Garden Website - Main CSS */

/* CSS Variables - Color Palette */
:root {
    /* Primary Colors */
    --primary-purple: #a174ae;
    --secondary-green: #60be82;
    --accent-gold: #d3a031;
    --warm-pink: #fda4b0;
    --deep-teal: #408f8e;
    
    /* Light Shades */
    --light-purple: #bc7ab8;
    --light-green: #95d3a0;
    --light-gold: #ceb75a;
    --light-pink: #f5b1bf;
    --light-teal: #59a397;
    
    /* Dark Shades */
    --dark-purple: #603d63;
    --dark-green: #46734f;
    --dark-gold: #c8ae20;
    --dark-pink: #d5919d;
    --dark-teal: #224c50;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6e7f8b;
    --dark-gray: #3d444e;
    --black: #000000;
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

/* Header Styles */
.navbar {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-green));
    backdrop-filter: blur(13px);
    box-shadow: 0 7px 18px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.65rem;
    font-weight: bold;
    color: var(--white) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-gold) !important;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
    background: linear-gradient(135deg, var(--light-purple), var(--light-teal));
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-section h1 {
    font-size: 2.60rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 1.21rem;
}

.hero-section h2 {
    font-size: 1.65rem;
    color: var(--light-gold);
    margin-bottom: 1.21rem;
}

.hero-section p {
    font-size: 1.28rem;
    color: var(--white);
    margin-bottom: 2.13rem;
}

/* Section Styles */
section {
    padding: 60px 0;
}

h2 {
    font-size: 2.11rem;
    font-weight: bold;
    color: var(--primary-purple);
    margin-bottom: 1.21rem;
}

h3 {
    font-size: 1.28rem;
    color: var(--secondary-green);
    margin-bottom: 1.21rem;
}

h4 {
    color: var(--primary-purple);
    margin-bottom: 1.21rem;
}

/* Card Styles */
.feature-card, .service-card, .price-card, .team-member, .review-card, 
.case-study-card, .process-step, .career-card, .info-card, .blog-card, .contact-form {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1.5rem;
    height: 100%;
}

.feature-card:hover, .service-card:hover, .price-card:hover, .team-member:hover,
.review-card:hover, .case-study-card:hover, .process-step:hover, 
.career-card:hover, .info-card:hover, .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Service Cards */
.service-card {
    overflow: hidden;
    padding: 0;
}

.service-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.service-card .card-body {
    padding: 1.5rem;
}

.service-card .price {
    font-size: 1.65rem;
    font-weight: bold;
    color: var(--accent-gold);
    margin-top: 1.14rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    padding: 0.25rem 0;
    color: var(--gray);
}

.service-card ul li:before {
    content: 'âœ“';
    color: var(--secondary-green);
    margin-right: 0.5rem;
    font-weight: bold;
}

/* Price Cards */
.price-card {
    text-align: center;
}

.price-card.featured {
    border: 3px solid var(--accent-gold);
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.price-tag {
    font-size: 2.11rem;
    font-weight: bold;
    color: var(--accent-gold);
    margin-top: 1.65rem;
}

.price-card ul li {
    padding: 0.5rem 0;
    color: var(--gray);
}

.price-card ul li i {
    color: var(--secondary-green);
    margin-right: 0.5rem;
}

/* Team Section */
.col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 1.21rem;
}

/* Reviews Section */
.reviewsSwiper {
    padding: 2rem 0;
}

.review-card {
    text-align: center;
    margin: 0 1rem;
}

.review-card p {
    font-size: 1.28rem;
    font-style: italic;
    color: var(--gray);
    margin-bottom: 1.71rem;
}

.stars {
    color: var(--accent-gold);
}

/* Case Study and Blog Cards */
.case-study-card, .blog-card {
    overflow: hidden;
    padding: 0;
}

.case-study-card img, .blog-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.case-study-card .card-body, .blog-content {
    padding: 1.5rem;
}

/* Process Steps */
.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--secondary-green);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.13rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 0;
    width: 14px;
    height: 14px;
    background: var(--accent-gold);
    border-radius: 50%;
}

/* Career Cards */
.role-type {
    background: var(--secondary-green);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.95rem;
    display: inline-block;
    margin-top: 0.60rem;
}

/* Info Cards */
.info-card {
    text-align: center;
}

.info-card i {
    color: var(--secondary-green);
    margin-bottom: 1.21rem;
}

/* Blog Content */
.blog-content a {
    color: var(--secondary-green);
    text-decoration: none;
    font-weight: 500;
}

.blog-content a:hover {
    color: var(--dark-green);
}

/* Forms */
.form-control {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-green);
    box-shadow: 0 0 0 0.2rem rgba(130, 195, 159, 0.25);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-green));
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--dark-purple), var(--dark-green));
}

/* FAQ Section */
.accordion-item {
    border: none;
    margin-bottom: 1.21rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.accordion-button {
    background: var(--white);
    border: none;
    padding: 1.25rem 1.5rem;
    font-weight: 500;
    color: var(--primary-purple);
}

.accordion-button:not(.collapsed) {
    background: var(--light-purple);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--secondary-green);
}

.accordion-body {
    padding: 1.5rem;
    background: var(--light-gray);
}

/* Gallery */
.gallery-section img {
    border-radius: 15px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-section img:hover {
    transform: scale(1.05);
}

/* Footer */
.footer-section {
    background: linear-gradient(135deg, var(--dark-purple), var(--dark-teal));
}

.footer-section h4, .footer-section h5 {
    color: var(--white);
    margin-bottom: 1.21rem;
}

.footer-section p {
    color: var(--light-gray);
    margin-bottom: 0.60rem;
}

.footer-section a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.60rem;
}

/* Background Variations */
.bg-light {
    background: linear-gradient(135deg, var(--light-gray), rgba(255,255,255,0.8)) !important;
}

/* Icons */
.fas {
    color: var(--secondary-green);
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .col-lg-2-4 {
        width: 50%;
    }
    
    .hero-section h1 {
        font-size: 2.11rem;
    }
    
    .hero-section h2 {
        font-size: 1.28rem;
    }
}

@media (max-width: 575.98px) {
    .col-lg-2-4 {
        width: 100%;
    }
    
    .hero-section h1 {
        font-size: 1.78rem;
    }
    
    .hero-section h2 {
        font-size: 1.28rem;
    }
    
    .price-card.featured {
        transform: none;
        border: 2px solid var(--accent-gold);
    }
}



/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
