/* Base Styles - Mobile First */
:root {
    --primary-black: #000000;
    --rich-mustard: #D4A017;
    --vibrant-yellow: #FFD700;
    --warm-yellow: #FFDE59;
    --dark-mustard: #B8860B;
    --light-cream: #FFF8DC;
    --pure-white: #FFFFFF;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    --text-on-dark: #FFFFFF;
    --text-on-light: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-on-light);
    background-color: var(--pure-white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 2.2rem;
    color: var(--text-on-dark);
}

h2 {
    font-size: 1.8rem;
    color: var(--rich-mustard);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.4rem;
    color: var(--dark-mustard);
}

p {
    margin-bottom: 1rem;
    color: var(--text-on-light);
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-black) 60%, var(--dark-mustard) 100%);
    color: var(--text-on-dark);
    padding: 2.5rem 0;
    text-align: center;
    border-bottom: 5px solid var(--rich-mustard);
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--warm-yellow);
    font-weight: 500;
}

/* Navigation */
.main-nav {
    background-color: var(--primary-black);
    padding: 1rem 0;
    border-bottom: 3px solid var(--rich-mustard);
}

.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.main-nav li {
    margin: 0;
}

.main-nav a {
    color: var(--warm-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.main-nav a:hover {
    color: var(--primary-black);
    background-color: var(--vibrant-yellow);
}

/* Sections */
section {
    padding: 3rem 0;
}

.services-section {
    background-color: var(--pure-white);
}

.about-section {
    background-color: var(--light-cream);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--pure-white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--rich-mustard);
    border: 2px solid var(--primary-black);
}

/* Image */
.shadow-border {
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border: 10px solid var(--primary-black);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--primary-black);
    color: var(--vibrant-yellow);
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    margin: 1rem 0;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    border: 2px solid #5b2525;
}

.cta-button:hover {
    background-color: var(--vibrant-yellow);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-button.secondary {
    background-color: var(--rich-mustard);
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
}

.cta-button.secondary:hover {
    background-color: var(--primary-black);
    color: var(--vibrant-yellow);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-black) 60%, var(--dark-mustard) 100%);
    color: var(--text-on-dark);
    text-align: center;
    padding: 3rem 0;
    border-top: 5px solid var(--rich-mustard);
}

.footer h2 {
    color: var(--vibrant-yellow);
}

.footer p {
    color: var(--warm-yellow);
}

.business-hours {
    margin: 1rem 0;
    font-style: italic;
    color: var(--warm-yellow);
}

.copyright {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Tablet Styles */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    h3 {
        font-size: 1.6rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .header {
        padding: 3.5rem 0;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .header {
        padding: 4rem 0;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .cta-button {
        padding: 1.2rem 2.5rem;
    }
}