 :root {
    --primary-color: #c7852a;
    /* Main copper/bronze */
    --primary-dark: #a66d1f;
    /* Darker copper */
    --primary-light: #e4a251;
    /* Lighter copper */
    --secondary-color: #2a4c1c;
    /* Dark green complement */
    --text-dark: #1A1A1A;
    /* Near black for text */
    --text-light: #FFFFFF;
    /* White for contrast */
    --background-light: #f9f5f0;
    /* Light warm background */
    --border-color: #dcd1c3;
    /* Warm gray for borders */
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1456px;
    margin: 0 auto;
    padding: 0 2rem;
}

.utility-bar {
    background-color: #000000;
    padding: 14.5px 0;
}

.utility-links {
    display: flex;
    justify-content: flex-end;
    gap: 26.5px;
    display: flex;
    flex-wrap: wrap;
    line-height: normal;
    list-style: none;
    margin: 0px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.utility-links a {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 400;
    font-size: 15px;
    font-weight: 400;
}

.utility-links a:hover {
    color: #D4AF37;
}

/* Header Styles */
.header {
    background-color: var(--text-light);
    box-shadow: 0 2px 4px rgba(199, 133, 42, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    flex: 0 0 200px;
}

.logo img {
    max-width: 100%;
    height: auto;
}

/* Main Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end !important;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #707070 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Right Navigation */
.right-nav {
    display: flex;
    gap: 1rem;
}

.nav-button {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.2;
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s;
}

.nav-button:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-banner {
    background: linear-gradient(rgba(199, 133, 42, 0.8), rgba(42, 76, 28, 0.8)), url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    margin-top: 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    margin-top: 2rem;
    transition: all 0.3s;
    font-size: 1.2rem;
    font-weight: bold;
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: transparent;
    border-color: var(--text-light);
    transform: translateY(-3px);
}

/* Services Section */
.features {
    padding: 8rem 0;
    background-color: var(--background-light);
}

.features h2 {
    color: var(--primary-color);
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--text-light);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(199, 133, 42, 0.1);
    transition: transform 0.3s;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 30px rgba(199, 133, 42, 0.2);
}

.feature-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1.1rem;
    color: #666;
}

/* About Section */
.about {
    padding: 8rem 0;
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.learn-more {
    display: inline-block;
    margin-top: 2rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border: 2px solid var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.learn-more:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 6rem 0 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section a {
    font-size: 1.1rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

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

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.8rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .nav-links {
        gap: 2rem;
    }

    .nav-button {
        padding: 0.5rem;
    }
}

@media (max-width: 768px) {
    .utility-bar {
        display: none;
    }

    .main-nav,
    .right-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-content {
        padding: 0.5rem 0;
    }

    .logo {
        flex: 0 0 150px;
    }

    /* Mobile Menu Active State */
    .nav-links.active,
    .right-nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--text-light);
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        gap: 1rem;
    }

    .right-nav.active {
        padding-top: 0;
    }

    .nav-button {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
