/* CSS Variables - Color Palette */
:root {
    /* Primary Colors */
    --ocean-blue: #1e3a8a;
    --surf-teal: #0891b2;
    --wave-cyan: #06b6d4;
    --sand-yellow: #fbbf24;
    --sunset-orange: #f97316;
    
    /* Light Shades */
    --ocean-blue-light: #3b82f6;
    --surf-teal-light: #22d3ee;
    --wave-cyan-light: #67e8f9;
    --sand-yellow-light: #fcd34d;
    --sunset-orange-light: #fb923c;
    
    /* Dark Shades */
    --ocean-blue-dark: #1e40af;
    --surf-teal-dark: #0e7490;
    --wave-cyan-dark: #0891b2;
    --sand-yellow-dark: #d97706;
    --sunset-orange-dark: #ea580c;
    
    /* Gradients */
    --ocean-gradient: linear-gradient(135deg, var(--ocean-blue), var(--surf-teal));
    --wave-gradient: linear-gradient(135deg, var(--surf-teal), var(--wave-cyan));
    --sunset-gradient: linear-gradient(135deg, var(--sunset-orange), var(--sand-yellow));
}

/* Global Styles */
body {
  overflow-x: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
}

/* Respect Motion Preferences */
@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;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

/* Conservative font sizes for specific elements */
.navbar-brand {
    font-size: 1.5rem !important;
    font-weight: 700;
}

/* Header */
.navbar {
    background: var(--ocean-gradient) !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0.75rem 0;
}

.navbar-brand, .nav-link {
    color: white !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--sand-yellow-light) !important;
}

/* Hero Section */
.hero-section {
    background: var(--wave-gradient);
    min-height: 100vh;
    color: white;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../HOS_images/hero-background.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.hero-section .container-fluid {
    position: relative;
    z-index: 2;
}

/* Cards */
.service-card, .price-card, .team-member, .feature-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover, .price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.price-card.featured {
    border: 3px solid var(--sunset-orange);
    position: relative;
}

.price-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sunset-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Team Photos */
.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--wave-cyan);
    margin-bottom: 1rem;
}

/* Reviews Slider */
.reviews-swiper {
    padding: 20px 0;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

/* Process Steps */
.process-step {
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--ocean-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-left: 4px solid var(--surf-teal);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-control {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--surf-teal);
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

/* Buttons */
.btn-primary {
    background: var(--ocean-gradient);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--ocean-gradient);
}

/* FAQ */
.accordion-button {
    background: var(--wave-cyan-light);
    border: none;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: var(--surf-teal);
    color: white;
}

/* Gallery */
#gallery img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: var(--ocean-blue-dark) !important;
}

footer a {
    color: var(--wave-cyan-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--sand-yellow-light);
}

/* Breadcrumbs */
.breadcrumb-section {
    padding-top: 80px;
}

.breadcrumb-img {
    height: 40px;
    width: auto;
}

/* Spacing Utilities */
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* Background Utilities */
.bg-light {
    background-color: #f8fafc !important;
}

/* Card Spacing */
.element-card, .info-card, .career-card, .case-study-card, .blog-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.element-card:hover, .info-card:hover, .career-card:hover {
    transform: translateY(-3px);
}

/* Blog Cards */
.blog-card img {
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

/* Feature Items */
.feature-item i {
    color: var(--surf-teal);
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
    }
    
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.5rem; }
    
    .team-photo {
        width: 100px;
        height: 100px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
} 