/* ===== ETHICAL FASHION TEMPLATE - MAIN STYLES ===== */

/* Color Variables - Pastel High-Contrast Colors */
:root {
    /* Primary Colors */
    --primary-sage: #a2c1a1;
    --primary-cream: #dfe0c8;
    --primary-terracotta: #e08968;
    --primary-lavender: #fbfbff;
    --primary-mint: #99ff8f;
    
    /* Light Shades */
    --light-sage: #dae5da;
    --light-cream: #fafafa;
    --light-terracotta: #ff8c80;
    --light-lavender: #f0f0ff;
    --light-mint: #c0fec4;
    
    /* Dark Shades */
    --dark-sage: #779478;
    --dark-cream: #e7ebbe;
    --dark-terracotta: #c74f38;
    --dark-lavender: #b5b1cf;
    --dark-mint: #80e386;
    
    /* Text Colors */
    --text-primary: #232b2c;
    --text-secondary: #5e6e79;
    --text-light: #89caf7;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-accent: var(--primary-cream);
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    
    /* Animations */
    --transition-default: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: 2.58rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.62rem;
}

p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Sections */
section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--primary-sage);
    font-size: 0.94rem;
    text-transform: uppercase;
    letter-spacing: 7px;
    font-weight: 600;
}

/* Header */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-default);
}

.navbar-brand {
    font-size: 1.28rem;
    font-weight: 700;
    color: var(--primary-sage);
}

.navbar-nav .nav-link {
    color: var(--text-primary);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition-default);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-sage);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--light-lavender) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    padding-top: 150px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.69rem;
}

.hero-subtitle {
    font-size: 1.36rem;
    color: var(--primary-sage);
    margin-bottom: 2rem;
}

.hero-desc {
    font-size: 1.18rem;
    color: var(--text-secondary);
    margin-bottom: 2.57rem;
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary-mint);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 1;
}

.hero-decoration.top-right {
    top: 10%;
    right: 10%;
}

.hero-decoration.bottom-left {
    bottom: 10%;
    left: 10%;
    background: var(--primary-lavender);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-sage);
    border-color: var(--primary-sage);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition-default);
}

.btn-primary:hover {
    background-color: var(--dark-sage);
    border-color: var(--dark-sage);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-sage);
    border-color: var(--primary-sage);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition-default);
}

.btn-outline-primary:hover {
    background-color: var(--primary-sage);
    border-color: var(--primary-sage);
    transform: translateY(-2px);
}

/* Cards */
.card {
    border: none;
    border-radius: 19px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-default);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 17px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-sage), var(--dark-sage));
    color: white;
    border: none;
    padding: 1.5rem;
}

.card-body {
    padding: 2rem;
}

/* Services Section */
.services-section {
    background-color: var(--bg-secondary);
}

.service-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 17px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-default);
    margin-bottom: 2rem;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 17px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-sage), var(--dark-sage));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-price {
    font-size: 1.59rem;
    font-weight: 700;
    color: var(--primary-sage);
    margin-top: 1rem;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, var(--light-cream) 0%, white 100%);
}

.feature-item {
    padding: 2rem;
    text-align: center;
    transition: var(--transition-default);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--primary-terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.63rem;
    color: white;
}

/* Team Section */
.team-section {
    background-color: var(--bg-secondary);
}

.team-card {
    text-align: center;
    background: white;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-default);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    border: 4px solid var(--primary-sage);
}

.team-role {
    color: var(--primary-sage);
    font-weight: 600;
    font-size: 0.96rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, var(--light-lavender) 0%, white 100%);
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: var(--transition-default);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.review-author {
    font-weight: 600;
    color: var(--primary-sage);
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-secondary);
}

.faq-card {
    background: white;
    border-radius: 11px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.65rem;
    transition: var(--transition-default);
}

.faq-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 11px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, var(--light-mint) 0%, white 100%);
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-default);
    margin-bottom: 2rem;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--light-lavender) 100%);
}

.form-control {
    border-radius: 10px;
    border: 2px solid #fefefe;
    padding: 12px 15px;
    transition: var(--transition-default);
}

.form-control:focus {
    border-color: var(--primary-sage);
    box-shadow: 0 0 0 0.2rem rgba(154, 182, 149, 0.25);
}

.contact-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.70rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
}

/* Footer */
.footer {
    background-color: var(--text-primary);
    color: white;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--primary-sage);
    margin-bottom: 1.63rem;
}

.footer a {
    color: #a9b8c4;
    text-decoration: none;
    transition: var(--transition-default);
}

.footer a:hover {
    color: var(--primary-sage);
}

.footer-bottom {
    border-top: 1px solid #485361;
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    color: #b1b8c8;
}

/* Breadcrumbs */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
}

.breadcrumb-item img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Utility Classes */
.text-sage {
    color: var(--primary-sage);
}

.bg-sage {
    background-color: var(--primary-sage);
}

.text-terracotta {
    color: var(--primary-terracotta);
}

.bg-terracotta {
    background-color: var(--primary-terracotta);
}

.section-padding {
    padding: var(--section-padding);
}

.rounded-15 {
    border-radius: 15px;
}

.shadow-custom {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hover-lift {
    transition: var(--transition-default);
}

.hover-lift:hover {
    transform: translateY(-5px);
} 


/* 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;
    }
}
