﻿/* ========================================
   Woodworking Dynamics Brand Colors
   ======================================== */

:root {
    /* Primary Brand Colors - from logo */
    --brand-green: #999900;
    --brand-green-light: #b3b300;
    --brand-green-dark: #7a7a00;
    --brand-teal: #2d8b8b;
    --brand-burgundy: #832A2E;
    /* Neutral Colors */
    --dark-gray: #454F56;
    --medium-gray: #6A7278;
    --light-gray: #f8f8f8;
    --white: #ffffff;
    --black: #000000;
    /* Status Colors */
    --success: #28a745;
    --error: #dc3545;
}

/* ========================================
   Header & Navigation
   ======================================== */

.topbar {
    background-color: var(--brand-green);
    color: var(--white);
}

.topbar-contact-info a,
.topbar-time a,
.topbar-offer p {
    color: var(--white);
}

    .topbar-contact-info a:hover,
    .topbar-time a:hover {
        color: var(--dark-gray);
    }

.header-sticky {
    background-color: var(--white);
    border-bottom: 3px solid var(--brand-green);
}

.navbar-nav .nav-link {
    color: var(--dark-gray);
    font-weight: 600;
}

    .navbar-nav .nav-link:hover {
        color: var(--brand-green);
    }

.header-social-icons a {
    color: var(--brand-green);
    transition: all 0.3s ease;
}

    .header-social-icons a:hover {
        color: var(--brand-burgundy);
        transform: translateY(-2px);
    }

/* ========================================
   Buttons
   ======================================== */

.btn-default {
    background-color: var(--brand-green);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

    .btn-default:hover {
        background-color: var(--brand-green-dark);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(153, 153, 0, 0.3);
    }

    .btn-default.btn-highlighted {
        background-color: var(--white);
        color: var(--brand-green);
        border: 2px solid var(--brand-green);
    }

        .btn-default.btn-highlighted:hover {
            background-color: var(--brand-green);
            color: var(--white);
        }

/* ========================================
   Hero Section
   ======================================== */

.hero {
    background-color: var(--dark-gray);
    padding: 150px 0 100px;
    position: relative;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(153, 153, 0, 0.1) 0%, rgba(69, 79, 86, 0.9) 100%);
    }

.hero-content h1 {
    color: var(--white);
    font-size: 60px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h3 {
    color: var(--brand-green);
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-content p {
    color: var(--white);
    font-size: 18px;
    line-height: 1.8;
}

.hero-counter-box {
    background-color: var(--brand-green);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 30px;
}

/* ========================================
   Section Titles
   ======================================== */

.section-title h3 {
    color: var(--brand-green);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title h2 {
    color: var(--dark-gray);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-title.dark-section h2,
.section-title.dark-section h3 {
    color: var(--white);
}

/* ========================================
   About Section
   ======================================== */

.about-us {
    padding: 100px 0;
    background-color: var(--white);
}

.about-customer-box {
    background-color: var(--brand-green);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    position: absolute;
    bottom: 30px;
    right: 30px;
    text-align: center;
}

    .about-customer-box h2 {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 5px;
    }

.about-facility-box {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.about-facility-item {
    flex: 1;
    min-width: 200px;
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

    .about-facility-item:hover {
        background-color: var(--brand-green);
        color: var(--white);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(153, 153, 0, 0.2);
    }

    .about-facility-item .icon-box {
        margin-bottom: 15px;
    }

        .about-facility-item .icon-box img {
            max-width: 50px;
            height: auto;
        }

    .about-facility-item:hover h3,
    .about-facility-item:hover h4,
    .about-facility-item:hover p {
        color: #fff !important;
    }
/* ========================================
   Services Section
   ======================================== */

.our-services {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.service-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

    .service-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(153, 153, 0, 0.2);
    }

.service-content {
    padding: 30px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .service-icon img {
        max-width: 35px;
        height: auto;
        filter: brightness(0) invert(1);
    }

.service-content h3 {
    color: var(--dark-gray);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-btn a {
    color: var(--brand-green);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    transition: all 0.3s ease;
}

    .service-btn a:hover {
        color: var(--brand-burgundy);
    }

    .service-btn a i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .service-btn a:hover i {
        transform: translateX(5px);
    }

/* ========================================
   Why Choose Us
   ======================================== */

.why-choose-us {
    padding: 100px 0;
    background-color: var(--white);
}

.why-choose-list ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.why-choose-list li {
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

    .why-choose-list li i {
        color: var(--brand-green-dark);
        font-size: 20px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(153, 153, 0, 0.1);
        border-radius: 50%;
        flex-shrink: 0;
    }
    .why-choose-list li span {
        color: var(--brand-green-dark);
        font-size: 20px;
    }

/* ========================================
   Call to Action
   ======================================== */

.cta-section {
    padding: 80px 0;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-content h2 {
    color: var(--brand-green-dark);
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--brand-green-dark);
    font-size: 18px;
}

.cta-btn .btn-default {
    background-color: var(--white);
    color: var(--brand-green);
}

    .cta-btn .btn-default:hover {
        background-color: var(--dark-gray);
        color: var(--white);
    }

/* ========================================
   Footer
   ======================================== */

.main-footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-links h3,
.footer-contact-info h3,
.footer-about h3 {
    color: var(--brand-green);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-contact-info ul{
    padding: 0;
}
.footer-contact-info li {
    list-style: none;
}
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .footer-links a:hover {
        color: var(--brand-green);
        padding-left: 5px;
    }

.footer-social-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--brand-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .footer-social-links a:hover {
        background-color: var(--white);
        color: var(--brand-green);
        transform: translateY(-3px);
    }

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 30px;
}

    .footer-copyright p {
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
    }

.footer-menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    margin: 0;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

    .footer-menu a:hover {
        color: var(--brand-green);
    }

/* ========================================
   Page Header
   ======================================== */

.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--dark-gray) 100%);
    text-align: center;
}

    .page-header h1 {
        color: var(--white);
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 20px;
    }

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--brand-green);
}

/* ========================================
   Contact Form
   ======================================== */

.contact-form .form-control {
    border: 2px solid var(--light-gray);
    padding: 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

    .contact-form .form-control:focus {
        border-color: var(--brand-green);
        box-shadow: 0 0 0 0.2rem rgba(153, 153, 0, 0.25);
    }

.contact-info-item {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

    .contact-info-item:hover {
        background-color: var(--brand-green);
        color: var(--white);
        transform: translateY(-5px);
    }

    .contact-info-item .icon-box {
        width: 60px;
        height: 60px;
        background-color: var(--brand-green);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        font-size: 24px;
    }

    .contact-info-item:hover .icon-box {
        background-color: var(--white);
        color: var(--brand-green);
    }

/* ========================================
   Scroll to Top Button
   ======================================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--brand-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

    .scroll-to-top.active {
        opacity: 1;
        visibility: visible;
    }

    .scroll-to-top:hover {
        background-color: var(--brand-burgundy);
        color: var(--white);
        transform: translateY(-5px);
    }

/* ========================================
   Responsive Mobile Menu
   ======================================== */

.slicknav_menu {
    background-color: var(--brand-green);
}

.slicknav_btn {
    background-color: var(--brand-green-dark);
}

.slicknav_nav a:hover {
    background-color: var(--brand-green-dark);
    color: var(--white);
}

/* ========================================
   Accent Elements
   ======================================== */

.counter {
    color: var(--brand-green);
    font-weight: 800;
}

a {
    color: var(--brand-green);
    text-decoration: none;
}

    a:hover {
        color: var(--brand-burgundy);
    }

/* Selection Color */
::selection {
    background-color: var(--brand-green);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--brand-green);
    color: var(--white);
}

/* ========================================
   Responsive Adjustments
   ======================================== */

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .cta-box {
        text-align: center;
        justify-content: center;
    }

    .footer-menu ul {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .about-facility-box {
        flex-direction: column;
    }
}
