* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Roboto', 'Open Sans', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

/* === TOP BAR (Black) === */
.top-bar {
    background-color: #000000;
    color: #ffffff;
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-cta {
    font-weight: 700;
    letter-spacing: 1px;
}

.zip-form {
    display: flex;
    align-items: center;
}

.zip-form input[type="text"] {
    padding: 6px 12px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-size: 0.9rem;
}

.zip-form button {
    padding: 6px 15px;
    background-color: #cccccc;
    color: #000000;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.zip-form button:hover {
    background-color: #aaaaaa;
}

/* === MAIN NAVIGATION (White) === */
.main-nav {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000000;
    letter-spacing: -0.5px;
}

.logo span {
    color: #00bcd4; /* Accent Blue */
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a:hover {
    color: #00bcd4;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #00bcd4;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* === HERO SECTION === */
.hero {
    background-color: #333; /* Placeholder color if image fails */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Optional: This gradient makes text easier to read over images */
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    color: #ffffff;
}

/* Add your specific background images here */
.hero-bg-1 {
    background-image: 
        linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
        url('../images/main-hero.jpg');
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background-color: #00bcd4;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #0097a7;
    transform: translateY(-2px);
}

/* === SECTIONS === */
.section {
    padding: 80px 0;
}

.section-light {
    background-color: #ffffff;
}

.section-dark {
    background-color: #f1f1f1;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #111;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.text-link {
    color: #00bcd4;
    text-decoration: underline;
    font-weight: bold;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* === FOOTER === */
.site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #00bcd4;
}

.footer-col p {
    color: #cccccc;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: #00bcd4;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .grid-2, .footer-grid {
        grid-template-columns: 1fr;
    }
    .top-bar .container {
        justify-content: center;
        text-align: center;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
}
