/* ===== CSS Variables - Color Palette ===== */
:root {
    /* Primary Colors - High Contrast Pastels */
    --primary-coral: #f86d82;
    --primary-sage: #95b584;
    --primary-lavender: #adaccb;
    --primary-cream: #e6e0d9;
    --primary-slate: #4e555d;
    
    /* Light Shades */
    --light-coral: #f2b2b6;
    --light-sage: #d0f5c2;
    --light-lavender: #ded1f8;
    --light-cream: #FEFCF8;
    --light-slate: #c9c9c9;
    
    /* Dark Shades */
    --dark-coral: #e23c60;
    --dark-sage: #4b663c;
    --dark-lavender: #9981bc;
    --dark-cream: #aba495;
    --dark-slate: #394654;
    
    /* Typography */
    --font-size-base: 16px;
    --font-size-small: 18px;
    --font-size-large: 18px;
    --font-size-h1: 2.2rem;
    --font-size-h2: 1.8rem;
    --font-size-h3: 1.4rem;
    --font-size-h4: 1.2rem;
    --font-size-h5: 1.1rem;
    --font-size-h6: 1rem;
    
    /* Spacing */
    --section-padding: 80px 0;
    --card-padding: 2rem;
    --border-radius: 8px;
    
    /* Shadows */
    --box-shadow: 0 4px 20px rgba(99, 106, 114, 0.10);
    --box-shadow-hover: 0 8px 30px rgba(92, 114, 122, 0.15);
}

/* ===== Base Styles ===== */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--dark-slate);
    background-color: var(--light-cream);
    overflow-x: hidden;
}

/* Respect motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-slate);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }

p {
    margin-bottom: 1rem;
    color: var(--primary-slate);
}

a {
    color: var(--primary-coral);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-coral);
}

/* ===== Header Navigation ===== */
.navbar {
    background: linear-gradient(135deg, var(--primary-cream) 0%, var(--light-lavender) 100%);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.44rem;
    font-weight: 700;
    color: var(--dark-slate);
}

.navbar-nav .nav-link {
    color: var(--primary-slate);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-coral);
}

.navbar-toggler {
    border: 7px solid var(--primary-coral);
    color: var(--dark-slate);
    padding: 0.5rem;
    border-radius: var(--border-radius);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(248, 92, 87, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2861, 74, 82, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar scrolled state */
.navbar-scrolled {
    background: rgba(232, 224, 204, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 15px rgba(67, 85, 90, 0.15);
}

/* ===== Hero Section ===== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--light-sage) 50%, var(--light-lavender) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-pattern.webp') no-repeat center;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* ===== Section Styling ===== */
section {
    padding: var(--section-padding);
}

.about-section {
    background-color: var(--primary-cream);
}

.services-section {
    background: linear-gradient(135deg, var(--light-sage) 0%, var(--light-cream) 100%);
}

.features-section {
    background-color: var(--light-lavender);
}

.priceplan-section {
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--light-coral) 100%);
}

.team-section {
    background-color: var(--light-sage);
}

.reviews-section {
    background: linear-gradient(135deg, var(--light-lavender) 0%, var(--light-cream) 100%);
}

.casestudy-section {
    background-color: var(--primary-cream);
}

.process-section {
    background: linear-gradient(135deg, var(--light-coral) 0%, var(--light-sage) 100%);
}

.timeline-section {
    background-color: var(--light-lavender);
}

.career-section {
    background: linear-gradient(135deg, var(--light-sage) 0%, var(--light-cream) 100%);
}

.coreinfo-section {
    background-color: var(--light-coral);
}

.contact-section {
    background: linear-gradient(135deg, var(--light-lavender) 0%, var(--light-sage) 100%);
}

.blog-section {
    background-color: var(--primary-cream);
}

.faq-section {
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--light-lavender) 100%);
}

.gallery-section {
    background-color: var(--light-slate);
    padding: 2rem 0;
}

/* ===== Cards and Components ===== */
.feature-card, .service-card, .price-card, .review-card, .case-card, .blog-card {
    background: white;
    border-radius: var(--border-radius);
    padding: var(--card-padding);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--light-slate);
}

/* Additional component styles */
.artist-item, .theme-item, .technique-item, .region-item, .resource-item,
.guide-item, .investment-item, .care-item, .auth-item, .community-item,
.career-item, .info-item {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--light-slate);
    text-align: center;
    height: 100%;
}

.artist-item:hover, .theme-item:hover, .technique-item:hover, .region-item:hover, .resource-item:hover,
.guide-item:hover, .investment-item:hover, .care-item:hover, .auth-item:hover, .community-item:hover,
.career-item:hover, .info-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

/* Career items have different layout */
.career-item {
    text-align: left;
    padding: 2rem;
}

.career-item span {
    background: var(--light-coral);
    color: var(--dark-slate);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: var(--font-size-small);
    font-weight: 600;
}

.feature-card:hover, .service-card:hover, .price-card:hover, .review-card:hover, .case-card:hover, .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.price-card.featured {
    border: 2px solid var(--primary-coral);
    position: relative;
}

.price-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-coral);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: var(--font-size-small);
    font-weight: 600;
}

.price {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--primary-coral);
    margin-top: 1rem;
}

/* ===== Team Members ===== */
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* ===== Process Steps ===== */
.process-step {
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-coral);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* ===== Timeline ===== */
.timeline-item .year {
    font-size: 1.28rem;
    font-weight: 700;
    color: var(--primary-coral);
    margin-bottom: 0.60rem;
}

/* ===== Forms ===== */
.form-control {
    border: 2px solid var(--light-slate);
    border-radius: var(--border-radius);
    padding: 0.75rem;
    font-size: var(--font-size-base);
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-coral);
    box-shadow: 0 0 0 0.2rem rgba(254, 122, 115, 0.25);
}

.btn-primary {
    background: var(--primary-coral);
    border: 2px solid var(--primary-coral);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--dark-coral);
    border-color: var(--dark-coral);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-coral);
    border: 2px solid var(--primary-coral);
    background: transparent;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-coral);
    color: white;
}

/* ===== FAQ Accordion ===== */
.accordion-button {
    background: var(--light-cream);
    color: var(--dark-slate);
    border: none;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-coral);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(237, 85, 100, 0.25);
}

.accordion-body {
    background: white;
    color: var(--primary-slate);
}

/* ===== Gallery ===== */
.gallery-img {
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* ===== Contact Info ===== */
.contact-info {
    background: var(--light-cream);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--light-slate);
    height: 100%;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-info i {
    margin-right: 0.75rem;
    color: var(--primary-coral);
    width: 20px;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--primary-slate) 100%);
    color: var(--light-cream);
}

.footer h5, .footer h6 {
    color: var(--primary-coral);
    margin-bottom: 1rem;
}

.footer a {
    color: var(--light-cream);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-coral);
}

.footer ul {
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.58rem;
}

/* ===== Breadcrumb ===== */
.breadcrumb-container {
    padding: 1rem 0;
}

.breadcrumb-img {
    width: 24px;
    height: 24px;
}

/* ===== Space Section ===== */
#space {
    min-height: 60vh;
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--light-sage) 100%);
    margin-top: 80px;
}

/* ===== Utility Classes ===== */
.text-muted {
    color: var(--primary-slate);
}

.bg-light {
    background-color: var(--light-cream);
}

.bg-primary {
    background-color: var(--primary-coral);
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
    :root {
        --font-size-h1: 1.8rem;
        --font-size-h2: 1.5rem;
        --font-size-h3: 1.3rem;
    }
    
    .hero-section {
        min-height: 70vh;
        text-align: center;
    }
    
    .team-member img {
        width: 100px;
        height: 100px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .card-padding {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 1.32rem;
    }
} 

.hero-section h1 {
    padding-top: 150px;
}


/* 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;
    }
}
