/* 
  MAIN STYLES FOR EDMOND EPOXY
  Header, Hero, and Base Styles
*/

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

:root {
    --primary-color: #2D3047;
    --primary-dark: #1f2133;
    --accent-color: #FF9F1C;
    --accent-dark: #e68a00;
    --secondary-color: #6D3D14;
    --success-color: #3F6634;
    --neutral-color: #A2AEBB;
    --text-color: #333;
    --text-light: #575760;
    --light-text: #fff;
    --background-alt: #f7f8f9;
    --white: #FFFFFF;
    --border-color: #E5E5E5;
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.site-header {
    background-color: rgba(45, 48, 71, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.inside-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.site-logo img {
    height: 50px;
    width: auto;
}

/* Header Call Button */
.header-call-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255, 159, 28, 0.3);
}

.header-call-button i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.header-call-button:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 159, 28, 0.4);
    color: var(--primary-color);
}

.header-call-button .call-number {
    display: none;
}

@media (min-width: 769px) {
    .header-call-button .call-number {
        display: inline;
    }
}

.main-navigation {
    display: flex;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.main-nav a:hover {
    color: var(--accent-color);
}

.main-nav .button {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.main-nav .button:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--light-text);
}

.mobile-menu-toggle i {
    width: 24px;
    height: 24px;
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)), url('../images/edmond-epoxy-hero-image.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    padding: 120px 2rem 80px;
    margin-top: 70px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    min-width: 220px;
    justify-content: center;
}

.hero-buttons .button i {
    width: 20px;
    height: 20px;
}

.hero-buttons .button:first-child {
    background-color: var(--accent-color);
    color: var(--light-text);
}

.hero-buttons .button:first-child:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.hero-buttons .button.secondary {
    background-color: rgba(255,255,255,0.2);
    color: var(--light-text);
    border: 2px solid rgba(255,255,255,0.3);
}

.hero-buttons .button.secondary:hover {
    background-color: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
}

.main-navigation {
    display: flex;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.main-nav a:hover {
    color: var(--accent-color);
}

.main-nav .button {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.main-nav .button:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        order: 3;
    }
    
    .main-navigation {
        display: none;
    }
    
    .header-call-button {
        order: 2;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .header-call-button .call-text {
        display: none;
    }
    
    .header-call-button .call-number {
        display: inline;
    }
    
    .site-logo {
        order: 1;
        flex: 1;
    }
    
    .hero-section {
        min-height: 70vh;
        padding: 100px 1.5rem 60px;
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons .button {
        width: 100%;
    }
    
    .inside-header {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .header-call-button .call-number {
        display: none;
    }
    
    .header-call-button {
        padding: 0.75rem;
        min-width: 44px;
        justify-content: center;
    }
    
    .site-logo a {
        font-size: 1.25rem;
    }
}

/* Section Spacing */
section {
    padding: 4rem 0;
}

/* Button Styles */
.button {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background-color: var(--accent-color);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.button:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* External Resource Link */
.external-resource-link {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.external-resource-link:hover {
    border-bottom-color: var(--accent-color);
    color: var(--accent-dark);
}

