@import url('https://fonts.googleapis.com/css2?family=Caladea:ital,wght@0,400;0,700;1,400;1,700&display=swap');

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

body {
    font-family: 'Caladea', serif;
    line-height: 1.6;
    color: #1E1E2C;
    background-color: #FFFFFF;
}

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

/* Navigation */
.navbar {
    background-color: #1E1E2C;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
}

.logo h2 {
    color: #FFFFFF;
    font-size: 1.5rem;
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #F29F67;
}

.cta-nav {
    background-color: #F29F67 !important;
    color: #1E1E2C !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
}

/* Hero Section with Parallax */
.hero-parallax {
    height: 100vh;
    background: linear-gradient(rgba(30, 30, 44, 0.7), rgba(30, 30, 44, 0.7)),
                url('images/towing-company-austin-hero-image.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: #FFFFFF;
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
    text-align: left;
}

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

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #F29F67;
}

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

/* Mega CTA Buttons */
.mega-cta {
    display: inline-block;
    background-color: #F29F67;
    color: #1E1E2C;
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mega-cta:hover {
    background-color: #3B8FF3;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Services Grid */
.services-preview {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1E1E2C;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #34B1AA;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 200px;
    background-color: #1E1E2C;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #FFFFFF;
    font-weight: bold;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1E1E2C;
}

/* Cash for Cars Section */
.cash-for-cars {
    background-color: #E0B50F;
    padding: 4rem 0;
    text-align: center;
}

.cash-for-cars h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1E1E2C;
}

.cash-for-cars p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #1E1E2C;
}

/* Page Header */
.page-header {
    background-color: #1E1E2C;
    color: #FFFFFF;
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Services Detailed */
.services-detailed {
    padding: 4rem 0;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.service-detail:nth-child(even) {
    direction: rtl;
}

.service-detail:nth-child(even) .service-content {
    direction: ltr;
}

.service-image-large {
    height: 300px;
    background-color: #34B1AA;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E1E2C;
    font-weight: bold;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1E1E2C;
}

.service-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-content li {
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-info {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details h2,
.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1E1E2C;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #1E1E2C;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #F29F67;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1E1E2C;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #34B1AA;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #FFFFFF;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F29F67;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background-color: #34B1AA;
}

.map-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1E1E2C;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-placeholder {
    background-color: #1E1E2C;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: bold;
}

/* Service Areas */
.service-areas {
    padding: 4rem 0;
}

.service-areas h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1E1E2C;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.area-column {
    background-color: #3B8FF3;
    padding: 2rem;
    border-radius: 10px;
}

.area-column h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.area-column ul {
    list-style: none;
}

.area-column li {
    padding: 0.3rem 0;
    color: #FFFFFF;
}

/* Footer */
footer {
    background-color: #1E1E2C;
    color: #FFFFFF;
    text-align: center;
    padding: 2rem 0;
}

/* Blog Styles */
.blog-grid {
    padding: 4rem 0;
}

.blog-categories h2 {
    font-size: 2rem;
    color: #1E1E2C;
    margin: 3rem 0 2rem 0;
    border-bottom: 2px solid #34B1AA;
    padding-bottom: 1rem;
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background-color: #34B1AA;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card h3 {
    margin-bottom: 1rem;
}

.blog-card h3 a {
    color: #1E1E2C;
    text-decoration: none;
    font-size: 1.2rem;
}

.blog-card h3 a:hover {
    color: #F29F67;
}

.blog-article {
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.blog-article h1 {
    font-size: 2.5rem;
    color: #1E1E2C;
    margin-bottom: 2rem;
}

.blog-article p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-nav {
    text-align: center;
    margin: 3rem 0;
}

.blog-nav a {
    background-color: #3B8FF3;
    color: #FFFFFF;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 1rem;
    font-weight: bold;
}

.blog-nav a:hover {
    background-color: #F29F67;
    color: #1E1E2C;
}
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .mega-cta {
        padding: 1rem 2rem;
        font-size: 1.2rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-detail {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-parallax {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .mega-cta {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}