/* ASMR Commissions - Main CSS */

/* Color Variables */
:root {
    --primary-color: #694bac;
    --secondary-color: #15af91;
    --accent-color: #e57e19;
    --text-color: #0f181f;
    --light-bg: #F9FAFB;
    --primary-light: #af8dfb;
    --secondary-light: #3beca7;
    --accent-light: #ffe763;
    --text-light: #676b77;
    --primary-dark: #561ca1;
    --secondary-dark: #038f63;
    --accent-dark: #f29b00;
    --text-dark: #070910;
    --light-bg-dark: #d9d9d9;
}

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 17.00px;
}

/* Conservative font sizes */
.navbar-brand {
    font-size: 1.25rem !important;
}

h1 {
    font-size: 2.29rem;
}

h2 {
    font-size: 1.95rem;
}

h3 {
    font-size: 1.54rem;
}

p {
    font-size: 1.12rem;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    min-height: 100vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../HEZ_images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Feature Cards */
.feature-card, .service-card, .price-card, .review-card {
    background: white;
    border-radius: 14px;
    box-shadow: 0 8px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    padding: 1.5rem;
    height: 100%;
}

.feature-card:hover, .service-card:hover, .price-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    color: var(--primary-color);
    margin-bottom: 1.07rem;
}

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.service-card .card-body {
    padding: 1.5rem;
}

.service-card .price, .price-card .price {
    font-size: 1.63rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Price Cards */
.price-card.featured {
    border: 6px solid var(--primary-color);
    transform: scale(1.05);
}

.price-card ul {
    list-style: none;
    padding: 0;
}

.price-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-bg);
}

.price-card ul li:last-child {
    border-bottom: none;
}

/* Team Members */
.team-member {
    text-align: center;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

/* Review Cards */
.review-card {
    text-align: center;
}

.review-card p {
    font-style: italic;
    font-size: 1.16rem;
    margin-bottom: 1.07rem;
}

.review-card h5 {
    color: var(--primary-color);
    font-weight: bold;
}

/* Case Study Cards */
.case-study-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 9px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid var(--light-bg);
}

.case-study-card:hover {
    transform: translateY(-5px);
}

.case-study-card img {
    height: 200px;
    object-fit: cover;
}

.case-study-card h4 {
    padding: 1rem;
    margin: 0;
    color: var(--primary-color);
}

.case-study-card p {
    padding: 0 1rem 1rem;
    margin: 0;
}

/* Process Steps */
.process-step {
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 9px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 45%;
    border: 1px solid var(--light-bg);
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
}

.timeline-item:nth-child(even) {
    margin-left: 55%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd)::before {
    right: -35px;
}

.timeline-item:nth-child(even)::before {
    left: -35px;
}

/* Job Cards */
.job-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid var(--light-bg);
}

.job-card:hover {
    transform: translateY(-3px);
}

.job-card h4 {
    color: var(--primary-color);
    margin-bottom: 1.07rem;
}

.job-card span {
    background: var(--primary-light);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    font-size: 0.84rem;
}

/* Info Cards */
.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 1px solid var(--light-bg);
}

.info-card h5 {
    color: var(--primary-color);
    margin-bottom: 1.07rem;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 9px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid var(--light-bg);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h4 {
    color: var(--primary-color);
    margin-bottom: 1.07rem;
}

.blog-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.blog-content a:hover {
    color: var(--secondary-dark);
}

/* FAQ Accordion */
.accordion-button {
    background: var(--light-bg);
    color: var(--text-color);
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(100, 47, 179, 0.25);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    border: 2px solid var(--light-bg);
    border-radius: 8px;
    padding: 12px;
    font-size: 1.12rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(94, 64, 201, 0.25);
}

.contact-form .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
}

/* Footer */
footer {
    background: #1a2236 !important;
}

footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-light);
}

/* Breadcrumb */
.breadcrumb-nav {
    padding: 100px 0 20px;
    background: var(--light-bg);
    text-align: center;
}

.breadcrumb-img {
    width: 40px;
    height: 40px;
}

/* Gallery */
#gallery img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Swiper Customization */
.swiper-pagination-bullet {
    background: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color);
}

/* Utility Classes */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.border-primary-custom {
    border-color: var(--primary-color) !important;
}

/* Feature Items */
.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 1px solid var(--light-bg);
}

.feature-item i {
    color: var(--primary-color);
    margin-bottom: 1.07rem;
}

/* Content Cards for Additional Pages */
.content-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 1px solid var(--light-bg);
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-3px);
}

.content-card h4 {
    color: var(--primary-color);
    margin-bottom: 1.07rem;
}

/* Space page specific */
#space {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: calc(100% - 40px);
        margin-left: 40px !important;
    }
    
    .timeline-item::before {
        left: -35px !important;
    }
    
    .hero-section h1 {
        font-size: 1.95rem;
    }
    
    .price-card.featured {
        transform: none;
    }
    
    .team-photo {
        width: 100px;
        height: 100px;
    }
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
