/* HoneyFlow - Main CSS */

/* Color Palette - 5 primary colors with light/dark shades */
:root {
    --primary-color: #db8a42;
    --primary-light: #ecb078;
    --primary-dark: #f0693c;
    
    --secondary-color: #e8c95c;
    --secondary-light: #ffe081;
    --secondary-dark: #dea055;
    
    --accent-color: #2aada6;
    --accent-light: #50b5a1;
    --accent-dark: #338e7c;
    
    --neutral-color: #1f333c;
    --neutral-light: #38485a;
    --neutral-dark: #152c35;
    
    --light-color: #f1f3f4;
    --light-light: #ffffff;
    --light-dark: #f5f5f5;
    
    --text-dark: #1c1c1c;
    --text-muted: #83878a;
    --border-color: #d6d6d6;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-light);
    overflow-x: hidden;
}

/* Conservative typography */
.navbar-brand {
    font-size: 1.61rem;
    font-weight: 600;
    color: var(--primary-color);
}

h1, .display-4 {
    font-size: 2.56rem;
    font-weight: 700;
    color: var(--neutral-color);
}

h2, .h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--neutral-color);
}

h3, .h3 {
    font-size: 1.52rem;
    font-weight: 500;
}

h4, .h4 {
    font-size: 1.30rem;
    font-weight: 500;
}

h5, .h5 {
    font-size: 1.16rem;
    font-weight: 500;
}

p, .lead {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.24rem;
    font-weight: 300;
    color: var(--text-muted);
}

/* Header Styles */
#header {
    background-color: var(--light-light) !important;
    box-shadow: 0 5px 4px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.57s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--light-color) 0%, var(--light-light) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(100px, -100px);
}

#hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(-50px, 50px);
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 1.02s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Card Styles */
.card {
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.55s ease, box-shadow 0.76s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.card-img-top {
    border-radius: 0.75rem 0.75rem 0 0;
    height: 200px;
    object-fit: cover;
}

/* Services Section */
#services {
    background-color: var(--light-color);
}

#services .card.border-primary {
    border-color: var(--primary-color);
    position: relative;
}

#services .card.border-primary::before {
    content: 'Most Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.94rem;
    font-weight: 500;
}

/* Team Section */
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid var(--light-color);
    transition: transform 0.92s ease;
}

.team-member img:hover {
    transform: scale(1.05);
}

/* Reviews Section */
#reviews {
    background-color: var(--light-color);
}

#reviews .card {
    background-color: var(--light-light);
}

/* Gallery Section */
#gallery img {
    border-radius: 0.5rem;
    transition: transform 0.66s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* FAQ Section */
#faq {
    background-color: var(--light-color);
}

#faq .card {
    background-color: var(--light-light);
    border-left: 4px solid var(--accent-color);
}

/* Contact Section */
#contacts .form-control {
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    transition: border-color 1.05s ease;
}

#contacts .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 167, 91, 0.25);
}

/* Footer */
#footer {
    background-color: var(--neutral-color);
    color: var(--light-light);
}

#footer h5 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

#footer a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 1.11s ease;
}

#footer a:hover {
    color: var(--secondary-color);
}

/* Price Plan Section */
#priceplan {
    background-color: var(--light-color);
}

#priceplan .display-6 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Features Section */
#f9f2actures .fa-2x {
    color: var(--accent-color);
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-light {
    background-color: var(--light-color) !important;
}

/* Animation Classes for Sal.js */
[data-sal] {
    transition-duration: 1.45s;
    transition-timing-function: ease-out;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    [data-sal] {
        transition: none !important;
    }
}

/* Additional Page Styles */
.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.breadcrumb img {
    opacity: 0.7;
    transition: opacity 1.05s ease;
}

.breadcrumb img:hover {
    opacity: 1;
}

/* Alert Styles */
.alert-info {
    background-color: var(--accent-light);
    border-color: var(--accent-color);
    color: var(--neutral-dark);
}

/* Icon Colors */
.text-success {
    color: var(--accent-color) !important;
}

.text-warning {
    color: var(--secondary-color) !important;
}

.text-info {
    color: var(--accent-light) !important;
}

.text-danger {
    color: var(--primary-dark) !important;
} 

.hero-section h1 {
    padding-top: 175px;
}


/* Team Social Links - Neon Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.social-icons-grid {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
