/* ==========================================================================
   FONT STYLES - Easy to edit font-related properties
   ========================================================================== */

/* Base font settings */
body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    background: linear-gradient(to bottom, #e8e8e8 0%, #d0d0d0 50%, #404040 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* Heading styles */
h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c5aa0;
    margin: 1rem 0;
    line-height: 1.2;
}

h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c5aa0;
    margin: 1.5rem 0 1rem 0;
    line-height: 1.3;
}

h3 {
    font-size: 1.4rem;
    font-weight: bold;
    color: #2c5aa0;
    margin: 1rem 0 0.5rem 0;
}

/* Paragraph text */
p {
    font-size: 1rem;
    margin: 1rem 0;
    line-height: 1.6;
}

/* List styles */
ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

li {
    font-size: 1rem;
    margin: 0.5rem 0;
    line-height: 1.5;
}

/* Link styles */
a {
    color: #2c5aa0;
    text-decoration: none;
}

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

/* ==========================================================================
   END FONT STYLES SECTION
   ========================================================================== */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
}

/* Container and layout */
.container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Header styles */
.header {
    background-color: white;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.header:hover {
    opacity: 0.9;
}

.logo-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    width: 362px;
    height: 100px;
}

.logo {
    font-size: 3rem;
    color: #2c5aa0;
    font-style: italic;
    font-weight: bold;
}

.driving-service {
    font-size: 1.5rem;
    color: #666;
    font-style: italic;
    margin-left: 10px;
}

.phone {
    font-size: 1.7rem; /* 1.5rem */
    color: #666;
    font-weight: bold;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.hero-text {
    position: absolute;
    top: 25px;
    left: 25px;
    color: white;
    font-size: 0.9rem;
    /* background: rgba(255,255,255,0.1); */
    padding: 10px;
    border-radius: 5px;
    max-width: 280px;
}

.hero-text h2 {
    font-size: 1.1rem;
    margin: 0 0 8px 0;
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px rgb(80,80,80);
}

.hero-text ul {
    margin: 0;
    padding-left: 18px;
    font-size: 0.8rem;
    list-style-type: disc;
    text-align: left;
}

.hero-text li {
    margin: 3px 0;
    font-size: 0.8rem;
    line-height: 1.3;
}

.hero-container {
    position: relative;
    margin-top: 20px;
}

/* Main content area */
.main-content {
    display: flex;
    gap: 30px;
    padding: 30px;
    flex-wrap: wrap;
}

.content-left {
    flex: 2;
    min-width: 300px;
}

.content-right {
    flex: 1;
    min-width: 250px;
    /* background-color: rgb(240,240,240); /* #f9f9f9 */
    padding: 20px;
    border-radius: 8px;
    height: fit-content;
}

/* About section */
.about-section {
    margin-bottom: 30px;
    position: relative;
}

.about-section h1 {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.roadrunner-image {
    width: 104px;
    height: 84px;
    flex-shrink: 0;
}

.about-text {
    margin-bottom: 20px;
}

/* Reviews section */
.reviews-section {
    margin-bottom: 30px;
}

.reviews-section h3 {
    color: #2c5aa0;
    border-bottom: 2px solid #2c5aa0;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

/* Contact section */

.contact-section {
    background-color: rgb(240,240,240);
    padding: 30px; /* ? */
    padding-top: 10px;
    margin-top: -12px;
}

.contact-section h3 {
    color: #2c5aa0;
    border-bottom: 2px solid #2c5aa0;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    margin: 5px 0;
}

/* Logos */
.highlands-logo, .franklin-logo, .thumbtack-image {
    max-width: 200px;
    margin: 20px 0;
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.thumbtack-image {
    width: 200px; /* 132px */
    height: 109px;
}

.highlands-logo:hover, .franklin-logo:hover, .thumbtack-image:hover {
    opacity: 0.8;
}

/* Footer */
.footer {
    background-color: #2c5aa0;
    color: white;
    padding: 30px;
    margin-top: 50px;
}

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

.footer-section h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

.footer-section li {
    margin: 8px 0;
}

.footer-section a {
    color: #cce7ff;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
    text-decoration: underline;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a73b8;
    color: #cce7ff;
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .logo-section {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .main-content {
        flex-direction: column;
        padding: 20px;
    }
    
    .hero-text {
        position: static;
        transform: none;
        margin-top: 20px;
        text-align: center;
        color: #333;
        text-shadow: none;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .logo {
        font-size: 2.5rem;
    }
    
    .phone {
        font-size: 1.3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        margin: 0;
        box-shadow: none;
    }
    
    .header {
        padding: 15px;
    }
    
    .main-content {
        padding: 15px;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .driving-service {
        font-size: 1.2rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
}