/**
 * Custom Bootstrap Overrides for Eagle Creek Theme
 * Add this file to override Bootstrap default styles
 * Place in: /wp-content/themes/eagle-creek-theme/css/custom-bootstrap-overrides.css
 */

/* ===================================
   Button Overrides - Fix Bootstrap Conflicts
   =================================== */

/* Primary Button - Orange CTA */
a {
  text-decoration: none !important;
}
.sub-menu {
  width: 310px;
  padding: 30px 0px !important;
}
.sub-menu li {
  line-height: 0px !important;
  padding-top: 5px !important;
}
.main-navigation .sub-menu li a {
  display: inline !important;
}
.btn-primary,
a.btn-primary,
button.btn-primary,
input[type="submit"].btn-primary {
    background-color: #d97706 !important;
    border-color: #d97706 !important;
    color: #ffffff !important;
    padding: 14px 32px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 5px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

.btn-primary:hover,
a.btn-primary:hover,
button.btn-primary:hover,
input[type="submit"].btn-primary:hover {
    background-color: #b45309 !important;
    border-color: #b45309 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3) !important;
}

.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
    background-color: #b45309 !important;
    border-color: #b45309 !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 0.2rem rgba(217, 119, 6, 0.25) !important;
}

/* Secondary Button - Green */
.btn-secondary,
a.btn-secondary,
button.btn-secondary {
    background-color: #2d5016 !important;
    border-color: #2d5016 !important;
    color: #ffffff !important;
    padding: 14px 32px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 5px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.btn-secondary:hover,
a.btn-secondary:hover,
button.btn-secondary:hover {
    background-color: #4a7c2f !important;
    border-color: #4a7c2f !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

/* Outline Button */
.btn-outline,
a.btn-outline,
button.btn-outline {
    background-color: transparent !important;
    border: 2px solid #2d5016 !important;
    color: #2d5016 !important;
    padding: 12px 30px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 5px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.btn-outline:hover,
a.btn-outline:hover,
button.btn-outline:hover {
    background-color: #2d5016 !important;
    border-color: #2d5016 !important;
    color: #ffffff !important;
}

/* Large Buttons */
.btn-lg {
    padding: 16px 40px !important;
    font-size: 18px !important;
}

/* Small Buttons */
.btn-sm {
    padding: 10px 24px !important;
    font-size: 14px !important;
}

/* ===================================
   Hero Section Button Fixes
   =================================== */

.hero-content .btn-primary {
    background-color: #d97706 !important;
    border: none !important;
}

.hero-content .btn-outline {
    background-color: transparent !important;
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
}

.hero-content .btn-outline:hover {
    background-color: #ffffff !important;
    color: #2d5016 !important;
}

/* ===================================
   Header CTA Button
   =================================== */

.header-cta .btn-primary {
    padding: 12px 28px !important;
    font-size: 15px !important;
}

/* ===================================
   Form Elements Overrides
   =================================== */

.form-control,
.form-select {
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 15px 20px !important;
    font-size: 1rem !important;
    transition: border-color 0.3s ease !important;
}

.form-control:focus,
.form-select:focus {
    border-color: #2d5016 !important;
    box-shadow: 0 0 0 0.2rem rgba(45, 80, 22, 0.15) !important;
    outline: none !important;
}

/* ===================================
   Service Card Buttons
   =================================== */

.service-card .btn-outline,
.service-content .btn-outline {
    padding: 10px 25px !important;
    font-size: 15px !important;
}

/* ===================================
   CTA Section Buttons
   =================================== */

.cta-section .btn-primary {
    background-color: #d97706 !important;
    padding: 16px 40px !important;
    font-size: 18px !important;
}

.footer-cta .btn-primary {
    background-color: #d97706 !important;
    padding: 16px 40px !important;
}

/* ===================================
   Navigation Menu Overrides
   =================================== */

.main-navigation .nav-link {
    color: #1a1a1a !important;
    font-weight: 600 !important;
    padding: 10px 15px !important;
    text-decoration: none !important;
}

.main-navigation .nav-link:hover {
    color: #2d5016 !important;
}

/* ===================================
   Container Overrides
   =================================== */

@media (min-width: 1200px) {
    .container {
        max-width: 1200px !important;
    }
}

/* ===================================
   Typography Overrides
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Georgia', serif !important;
    font-weight: 700 !important;
}

body {
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif !important;
}

/* ===================================
   Remove Bootstrap Default Shadows
   =================================== */

.btn:focus,
.btn:active,
.btn.active,
.form-control:focus,
.form-select:focus {
    outline: none !important;
}

/* ===================================
   Card Overrides
   =================================== */

.card {
    border: none !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08) !important;
}

/* ===================================
   Mobile Responsive Button Adjustments
   =================================== */

@media (max-width: 768px) {
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 12px 24px !important;
        font-size: 14px !important;
    }
    
    .btn-lg {
        padding: 14px 32px !important;
        font-size: 16px !important;
    }
    
    .hero-content .btn-primary,
    .hero-content .btn-outline {
        width: 100% !important;
        margin-bottom: 10px !important;
    }
}

/* ===================================
   Remove Bootstrap Button Gradients
   =================================== */

.btn-primary,
.btn-secondary,
.btn-outline,
.btn {
    background-image: none !important;
    border-image: none !important;
}

/* ===================================
   Hover State Fixes
   =================================== */

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active {
    background-color: #b45309 !important;
    border-color: #b45309 !important;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active {
    background-color: #4a7c2f !important;
    border-color: #4a7c2f !important;
}

/* ===================================
   Link Button Styles
   =================================== */

a.btn {
    line-height: normal !important;
    vertical-align: middle !important;
}

/* ===================================
   Disabled Button States
   =================================== */

.btn:disabled,
.btn.disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

/* ===================================
   Button Group Fixes
   =================================== */

.btn-group .btn {
    margin: 0 !important;
}

/* ===================================
   Custom Button Classes
   =================================== */

.btn-submit {
    background: #d97706 !important;
    color: white !important;
    padding: 15px 50px !important;
    font-size: 1.1rem !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.btn-submit:hover {
    background: #b45309 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 20px rgba(217, 119, 6, 0.3) !important;
}

.btn-learn-more {
    background: #2d5016 !important;
    color: white !important;
    padding: 12px 35px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.btn-learn-more:hover {
    background: #4a7c2f !important;
    color: white !important;
    transform: translateX(5px) !important;
}

/* ===================================
   Filter Buttons (Gallery Page)
   =================================== */

.filter-btn {
    background: transparent !important;
    border: 2px solid #2d5016 !important;
    color: #2d5016 !important;
    padding: 10px 25px !important;
    margin: 5px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.filter-btn:hover,
.filter-btn.active {
    background: #2d5016 !important;
    color: white !important;
}

/* ===================================
   Fix for Button Icon Spacing
   =================================== */

.btn i {
    margin-right: 8px !important;
}

.btn i.fa-arrow-right,
.btn i.ms-2 {
    margin-left: 8px !important;
    margin-right: 0 !important;
}
 .about-hero {
        background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
        color: white;
        padding: 100px 0 80px;
        text-align: center;
    }
    
    .about-hero h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        color: white;
    }
    
    .section-divider {
        width: 100px;
        height: 4px;
        background: var(--cta-orange);
        margin: 30px auto;
    }
    
    .mission-section {
        padding: 80px 0;
        background-color: #f8f8f8;
    }
    
    .mission-image {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        margin-bottom: 30px;
    }
    
    .mission-text {
        font-size: 1.15rem;
        line-height: 1.8;
        color: #333;
    }
    
    .owners-section {
        padding: 80px 0;
        background: white;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .section-title h2 {
        font-size: 2.8rem;
        color: #f98b32;
        margin-bottom: 15px;
    }
    
    .owner-card {
        margin-bottom: 50px;
        transition: transform 0.3s ease;
    }
    
    .owner-card:hover {
        transform: translateY(-10px);
    }
    
    .owner-image {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        margin-bottom: 25px;
        transition: all 0.3s ease;
    }
    
    .owner-card:hover .owner-image {
        box-shadow: 0 12px 35px rgba(0,0,0,0.2);
    }
    
    .owner-name {
        font-size: 2rem;
        color: var(--primary-green);
        margin-bottom: 15px;
    }
    
    .owner-bio {
        font-size: 1.05rem;
        line-height: 1.7;
        color: #555;
    }
    
    .team-section {
        padding: 80px 0;
        background-color: #f8f8f8;
    }
    
    .team-member-card {
        background: white;
        border-radius: 10px;
        padding: 30px;
        margin-bottom: 30px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        height: 100%;
    }
    
    .team-member-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    }
    
    .team-member-image {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 20px;
        max-height: 400px;
        object-fit: cover;
    }
    
    .team-member-name {
        font-size: 1.8rem;
        color: var(--primary-green);
        margin-bottom: 15px;
    }
    
    .team-member-bio {
        font-size: 1rem;
        line-height: 1.6;
        color: #666;
    }
    
    .video-section {
        padding: 80px 0;
        background: white;
    }
    
    .video-container {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    
    .video-container iframe,
    .video-container video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .cta-section-about {
        background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
        padding: 80px 0;
        text-align: center;
        color: white;
    }
    
    .cta-section-about h2 {
        color: white;
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    @media (max-width: 768px) {
        .about-hero h1 {
            font-size: 2.5rem;
        }
        
        .section-title h2 {
            font-size: 2rem;
        }
    }