/* Main CSS for MushroomMaster Pro */

/* Color Palette Variables */
:root {
    /* Primary Colors */
    --primary-green: #273f0e;
    --primary-brown: #a0401e;
    --primary-cream: #fefccf;
    --primary-orange: #d06b35;
    --primary-forest: #368d26;
    
    /* Light/Dark Shades */
    --light-green: #9adea1;
    --dark-green: #00580b;
    --light-brown: #dcc899;
    --dark-brown: #532b13;
    --light-cream: #fffef7;
    --dark-cream: #dcdcdc;
    --light-orange: #f4c897;
    --dark-orange: #a1572c;
    --light-forest: #3ed942;
    --dark-forest: #124611;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--primary-forest));
    --gradient-secondary: linear-gradient(135deg, var(--primary-brown), var(--primary-orange));
    --gradient-accent: linear-gradient(135deg, var(--primary-cream), var(--light-cream));
    
    /* Typography */
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-large: 18px;
    --font-size-h1: 2.5rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.5rem;
    --font-size-h4: 1.25rem;
    --font-size-h5: 1rem;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 16px;
}

/* Base Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: #232221;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1.13rem;
}

h1 {
    font-size: var(--font-size-h1);
    color: var(--primary-green);
}

h2 {
    font-size: var(--font-size-h2);
    color: var(--primary-brown);
}

h3 {
    font-size: var(--font-size-h3);
    color: var(--primary-forest);
}

h4 {
    font-size: var(--font-size-h4);
}

/* Navbar Styling */
.navbar-brand {
    font-size: 1.54rem !important;
    font-weight: 700;
    color: var(--primary-green) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--primary-brown) !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-forest) !important;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../ZUL_images/hero-bg.webp') center/cover;
    opacity: 0.2;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    color: white;
    font-size: 3.08rem;
    margin-bottom: 1.13rem;
}

.hero-section h2 {
    color: var(--light-cream);
    font-size: 1.54rem;
    margin-bottom: 1.72rem;
}

.hero-section p {
    font-size: var(--font-size-large);
    margin-bottom: 2.16rem;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 19px;
    box-shadow: 0 10px 17px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 14px 25px rgba(0,0,0,0.15);
}

.feature-card i {
    color: var(--primary-forest);
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-card ul li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-forest);
    position: absolute;
    left: 0;
}

.price {
    font-size: 1.54rem;
    font-weight: 700;
    color: var(--primary-orange);
    background: var(--gradient-accent);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    margin-top: 1.07rem;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Contact Form */
.contact-form {
    background: var(--gradient-accent);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form .form-control {
    border: 2px solid var(--light-green);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: var(--font-size-base);
}

.contact-form .form-control:focus {
    border-color: var(--primary-forest);
    box-shadow: 0 0 0 0.2rem rgba(47, 160, 62, 0.25);
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Section Backgrounds */
.bg-light {
    background: var(--light-cream) !important;
}

/* Footer */
footer {
    background: var(--dark-forest) !important;
}

footer h5 {
    color: var(--light-cream);
    margin-bottom: 1.13rem;
}

footer p {
    color: var(--light-green);
    margin-bottom: 0.62rem;
}

footer a {
    color: var(--light-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-cream);
}

/* Breadcrumb */
.breadcrumb-section {
    padding: 1rem 0;
}

.breadcrumb-icon {
    height: 20px;
    width: auto;
}

/* Additional Page Cards */
.item-card,
.condition-card,
.variety-card,
.problem-card,
.technique-card,
.harvest-card,
.nutrition-card,
.cooking-card,
.season-card,
.sustainability-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.item-card:hover,
.condition-card:hover,
.variety-card:hover,
.problem-card:hover,
.technique-card:hover,
.harvest-card:hover,
.nutrition-card:hover,
.cooking-card:hover,
.season-card:hover,
.sustainability-card:hover {
    transform: translateY(-3px);
}

/* Feature Boxes */
.feature-box {
    padding: 2rem 1rem;
}

.feature-box i {
    color: var(--primary-orange);
    margin-bottom: 1.13rem;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Utility Classes */
.text-primary-green {
    color: var(--primary-green) !important;
}

.text-primary-brown {
    color: var(--primary-brown) !important;
}

.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

.bg-gradient-secondary {
    background: var(--gradient-secondary) !important;
}

/* Space Page */
#space {
    background: var(--gradient-accent);
    color: var(--primary-green);
}

#space h1 {
    font-size: 3.08rem;
    margin-bottom: 1.13rem;
}

#space p {
    font-size: var(--font-size-large);
    color: var(--primary-brown);
} 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
