/* Chaplin Construction – Static Landing Page */

:root {
    --accent-color: #222;
    --dark-color: #222;
    --yellow-color: #ffc700;
    --text-color: #222;
    --light-bg: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Lora, serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
    font-size: 1.2rem;
}

.wrap {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: #fff;
    padding: 25px 0 0;
    border-bottom: 1px solid #eee;
}

.site-header .site-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--dark-color);
    margin: 0;
    line-height: 1;
    padding-top: 25px;
}

.site-logo {
    display: block;
    max-width: 200px;
    height: auto;
}

.site-header .site-title a {
    color: inherit;
    text-decoration: none;
}

.site-header .site-title a:hover {
    text-decoration: underline;
}

.after-header {
    background: #fff;
    padding: 40px 0 25px;
}

.site-description {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-color);
    margin: 0;
    font-family: Lora, serif;
}

.title-area {
    padding-bottom: 25px;
}

/* Main Content */
main {
    background: #fff;
}

.image-section {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    margin: 0;
}

.image-section-1 {
    background-image: url('images/dakota-roos.jpg');
}

.image-section-2 {
    background-image: url('images/charles-deluvio.jpg');
}

[class*="image-section-"] {
    border-top: 2px solid var(--yellow-color);
}

.about-section {
    padding: 60px 0 20px;
}

.section-title, .footer-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--yellow-color);
    font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: 2px;
    font-weight: normal;
    text-transform: uppercase;
}

.about-content {
    max-width: 800px;
}

.about-content p {
    margin-bottom: 24px;
    line-height: 1.6;
}


h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin: 0 0 20px 0;
}

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

a:hover {
    color: #666;
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: #222;
    border-top: none;
    color: #fff;
}

.footer-content {
    padding: 40px 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
}

.footer-content address {
    font-style: normal;
}

.footer-content address p {
    margin: 0;
}

.footer-content a {
    color: #fff;
}

.footer-content a:hover {
    color: #ccc;
}

.footer-content .copyright {
    margin: 40px 0 0;
}

.site-footer-bottom {
    background: #222;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .site-title {
        font-size: 1.8rem;
    }
    
    .site-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .image-section {
        height: 200px;
    }
    
    .about-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding-top: 15px;
    }
    
    .site-title {
        font-size: 1.4rem;
    }
    
    .site-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .about-content h3 {
        font-size: 1.1rem;
    }
}
