/* Fresh Ocean - Community-Supported Fishery Delivery CSS */

/* Color Palette - 5 Primary Colors + Shades */
:root {
    /* Primary Pastel Colors */
    --ocean-blue: #78e2fc;
    --seafoam-green: #aaffa6;
    --coral-pink: #ff9fa1;
    --sandy-beige: #eed6b3;
    --pearl-white: #fffae7;
    
    /* Light Shades */
    --ocean-blue-light: #afe3e1;
    --seafoam-green-light: #a3d9d8;
    --coral-pink-light: #fbe2e0;
    --sandy-beige-light: #ecd9c6;
    --pearl-white-light: #FFFFFE;
    
    /* Dark Shades */
    --ocean-blue-dark: #3e82a1;
    --seafoam-green-dark: #27b3a8;
    --coral-pink-dark: #b45d65;
    --sandy-beige-dark: #d6b57e;
    --pearl-white-dark: #d9cd7c;
    
    /* Neutral Colors */
    --text-dark: #3d4f67;
    --text-light: #ECF0F1;
    --bg-light: #F8F9FA;
    --bg-dark: #44474d;
}

/* Base Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Conservative Font Sizes */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ocean-blue-dark);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ocean-blue-dark);
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--seafoam-green-dark);
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--coral-pink-dark);
}

p {
    font-size: 1rem;
    color: var(--text-dark);
}

/* Header Styles */
.navbar {
    background: linear-gradient(135deg, var(--pearl-white), var(--pearl-white-light));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--ocean-blue-light);
}

.navbar-nav .nav-link {
    color: var(--ocean-blue-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--seafoam-green-dark);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--ocean-blue-light), var(--seafoam-green-light));
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="30" r="1.5" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="70" r="1" fill="%23ffffff" opacity="0.1"/></svg>');
    pointer-events: none;
}

/* Section Styling */
section {
    padding: 4rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Card Components */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Feature Cards */
.feature-card {
    background: var(--pearl-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--pearl-white-light);
    transform: translateY(-5px);
}

.feature-card i {
    color: var(--ocean-blue-dark);
    margin-bottom: 1rem;
}

/* Service Cards */
.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.service-card .price {
    color: var(--seafoam-green-dark);
    font-weight: 700;
    font-size: 1.5rem;
}

/* Team Section */
.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid var(--ocean-blue-light);
}

/* Custom Grid for Team (5 columns) */
.col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
}

@media (max-width: 991.98px) {
    .col-lg-2-4 {
        width: 50%;
    }
}

@media (max-width: 575.98px) {
    .col-lg-2-4 {
        width: 100%;
    }
}

/* Reviews Section */
.review-card {
    background: var(--coral-pink-light);
    border-left: 4px solid var(--coral-pink-dark);
}

/* Timeline */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--ocean-blue-dark);
    border-radius: 50%;
    border: 3px solid var(--pearl-white);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 12px;
    width: 2px;
    height: calc(100% + 2rem);
    background: var(--ocean-blue-light);
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-content {
    background: var(--pearl-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Process Steps */
.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--seafoam-green-dark);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Statistics */
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--ocean-blue-dark);
    display: block;
}

/* Pricing Cards */
.pricing-card.featured {
    border: 2px solid var(--seafoam-green-dark);
    position: relative;
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--seafoam-green-dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card .price {
    color: var(--ocean-blue-dark);
    font-size: 2.5rem;
    font-weight: 700;
}

/* Contact Form */
.contact-form .form-control {
    border: 2px solid var(--ocean-blue-light);
    border-radius: 8px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--seafoam-green-dark);
    box-shadow: 0 0 0 0.2rem rgba(35, 189, 192, 0.25);
}

/* Buttons */
.btn-primary {
    background: var(--ocean-blue-dark);
    border-color: var(--ocean-blue-dark);
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--seafoam-green-dark);
    border-color: var(--seafoam-green-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--ocean-blue-dark);
    border-color: var(--ocean-blue-dark);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--ocean-blue-dark);
    border-color: var(--ocean-blue-dark);
}

/* Footer */
.footer {
    background: var(--coral-pink-dark);
    color: var(--text-light);
}

.footer h5 {
    color: var(--ocean-blue-light);
    margin-bottom: 1rem;
}

.footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--seafoam-green-light);
}

.footer hr {
    border-color: var(--ocean-blue-dark);
    margin: 2rem 0 1rem;
}

/* Gallery */
.gallery img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* FAQ Cards */
.faq-card {
    background: var(--sandy-beige-light);
    border-left: 4px solid var(--sandy-beige-dark);
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--bg-light);
    border-bottom: 1px solid var(--ocean-blue-light);
}

.breadcrumb-icon {
    height: 30px;
    width: auto;
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .card:hover {
        transform: none;
    }
    
    .feature-card:hover {
        transform: none;
    }
    
    .btn-primary:hover {
        transform: none;
    }
}

/* Utility Classes */
.text-ocean {
    color: var(--ocean-blue-dark);
}

.text-seafoam {
    color: var(--seafoam-green-dark);
}

.text-coral {
    color: var(--coral-pink-dark);
}

.bg-ocean {
    background-color: var(--ocean-blue-light);
}

.bg-seafoam {
    background-color: var(--seafoam-green-light);
}

.bg-coral {
    background-color: var(--coral-pink-light);
} 

.hero-section h1 {
    padding-top: 125px;
}


/* 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);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 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;
    }
}
