/* CSS Variables for Color Palette */
:root {
    --primary-blue: #2e54b0;
    --primary-blue-light: #6585d1;
    --primary-blue-dark: #243b65;
    
    --secondary-purple: #7668f3;
    --secondary-purple-light: #8b89e6;
    --secondary-purple-dark: #6953a9;
    
    --accent-gold: #d9ab2f;
    --accent-gold-light: #ecde59;
    --accent-gold-dark: #a47d12;
    
    --ink-black: #242424;
    --ink-black-light: #292929;
    --ink-black-dark: #000000;
    
    --paper-white: #fafafa;
    --paper-white-light: #ffffff;
    --paper-white-dark: #f0f0f0;
    
    --text-primary: #20303c;
    --text-secondary: #6e747a;
    --text-muted: #a6b7bc;
    
    --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    --gradient-secondary: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    --gradient-dark: linear-gradient(135deg, var(--ink-black), var(--ink-black-light));
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
    
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--paper-white-light);
    font-size: 16px;
}

/* Respect 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;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 {
    font-size: 2.56rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.59rem;
}

h4 {
    font-size: 1.37rem;
}

h5 {
    font-size: 1.19rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Links */
a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-blue-dark);
}

/* Utilities */
.section-padding {
    padding: 80px 0;
}

/* Header Styles */
.navbar {
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.58rem;
    font-weight: 700;
    color: var(--primary-blue) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary) !important;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Breadcrumbs */
.breadcrumb-nav {
    padding: 120px 0 20px;
    background: var(--paper-white-dark);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.breadcrumb-img {
    max-width: 24px;
    height: auto;
    opacity: 0.6;
    transition: var(--transition);
}

.breadcrumb-img:hover {
    opacity: 1;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 76px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('POS_assets/POS_images/hero-pattern.webp') no-repeat center;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    padding-top: 250px;
}

.hero-section h2 {
    font-size: 1.51rem;
    font-weight: 300;
    opacity: 0.9;
    color: white;
}

.hero-section p {
    font-size: 1.15rem;
    opacity: 0.8;
    color: white;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2.62rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--text-primary);
    margin-bottom: 0.71rem;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-card h4 {
    font-size: 1.26rem;
    margin-bottom: 0.66rem;
    color: var(--text-primary);
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-card li {
    padding: 0.25rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.price {
    font-size: 1.54rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-top: 1rem;
}

/* Feature Boxes */
.feature-box {
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-box .feature-icon {
    margin-bottom: 1.75rem;
}

/* Price Cards */
.price-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.price-card.featured {
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.price-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.89rem;
    font-weight: 600;
}

.price-card h4 {
    font-size: 1.54rem;
    margin-bottom: 1rem;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.price-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--paper-white-dark);
}

.price-card li:last-child {
    border-bottom: none;
}

.price-card .price {
    font-size: 2rem;
    margin-top: 1.65rem;
}

/* Team Members */
.team-member {
    text-align: center;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--accent-gold);
    transition: var(--transition);
}

.team-member:hover .team-photo {
    transform: scale(1.1);
}

.team-member h5 {
    font-size: 1.18rem;
    margin-bottom: 0.39rem;
}

.team-member p {
    color: var(--text-muted);
    font-size: 1.04rem;
}

/* Review Cards */
.review-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
    border-left: 4px solid var(--accent-gold);
}

.review-card p {
    font-style: italic;
    font-size: 1.16rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.review-card h6 {
    color: var(--primary-blue);
    font-weight: 600;
    text-align: right;
}

/* Case Study Cards */
.case-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.case-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-card h4,
.case-card p {
    padding: 0 1.5rem;
}

.case-card h4 {
    padding-top: 1.65rem;
    margin-bottom: 1rem;
}

.case-card p {
    padding-bottom: 1.60rem;
}

/* Process Steps */
.process-step {
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.60rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h5 {
    margin-bottom: 0.57rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 45%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 2rem;
}

.timeline-item:nth-child(even) {
    left: 55%;
    text-align: left;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent-gold);
    border-radius: 50%;
    top: 1rem;
}

.timeline-item:nth-child(odd)::before {
    right: -6px;
}

.timeline-item:nth-child(even)::before {
    left: -6px;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

/* Career Cards */
.career-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid var(--primary-blue);
}

.career-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.career-card h4 {
    margin-bottom: 0.59rem;
}

.career-card p:first-of-type {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1.01rem;
    margin-bottom: 1rem;
}

/* Info Cards */
.info-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    font-size: 2.63rem;
    color: var(--secondary-purple);
    margin-bottom: 1rem;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h4 {
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-blue-dark);
}

/* FAQ Accordion */
.accordion-item {
    border: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 0.59rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.accordion-button {
    background: white;
    color: var(--text-primary);
    font-weight: 600;
    border: none;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-blue);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(32, 102, 168, 0.25);
}

.accordion-body {
    padding: 1.5rem;
    background: var(--paper-white);
}

/* Gallery */
.gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    transition: var(--transition);
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-info {
    background: var(--paper-white-dark);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    height: fit-content;
}

.contact-info h5 {
    margin-bottom: 1.72rem;
    color: var(--text-primary);
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 0.75rem;
    color: var(--primary-blue);
    width: 20px;
}

/* Forms */
.form-control {
    border: 2px solid var(--paper-white-dark);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(58, 106, 165, 0.10);
}

/* Buttons */
.btn {
    border-radius: var(--border-radius);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--gradient-dark);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--gradient-dark) !important;
    margin-top: 4rem;
}

.footer h5,
.footer h6 {
    color: white;
}

.footer p {
    color: rgba(255,255,255,0.8);
}

.footer a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.footer a:hover {
    color: white;
}

/* Color Swatches for Additional Pages */
.color-swatch {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
}

.color-red { background: #dc4162; }
.color-blue { background: #0454ff; }
.color-green { background: #126f4d; }
.color-purple { background: #7033d2; }
.color-black { background: #1e2529; }

/* Additional page specific styles */
.feature-item,
.color-item,
.property-card,
.process-card,
.care-tip,
.artisan-card,
.collection-card,
.technique-card,
.studio-card,
.story-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.feature-item:hover,
.color-item:hover,
.property-card:hover,
.process-card:hover,
.care-tip:hover,
.artisan-card:hover,
.collection-card:hover,
.technique-card:hover,
.studio-card:hover,
.story-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.artisan-photo,
.collection-image,
.studio-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.artisan-photo {
    border-radius: 50%;
    width: 80px;
    height: 80px;
}

.property-icon,
.process-icon,
.care-icon,
.technique-icon,
.story-icon {
    font-size: 2rem;
    color: var(--secondary-purple);
    margin-bottom: 1rem;
}

/* Space div styling */
#space {
    min-height: 400px;
    background: var(--paper-white);
    margin-top: 76px;
    padding: 2rem 0;
}

/* Background sections */
.bg-light {
    background: var(--paper-white) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    padding-top: 250px;
}
    
    .hero-section h2 {
        font-size: 1.24rem;
    }
    
    .timeline::before {
        left: 2rem;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 4rem !important;
        padding-right: 0 !important;
    }
    
    .timeline-item::before {
        left: 1.5rem !important;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .price-card.featured {
        transform: none;
    }
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
