@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f9f9f9;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #222;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

header .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    color: #fff;
}

header h1 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

header .slogan {
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
    color: #f39c12;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #f39c12;
}

/* Hero Sections (for pages like Home, About, etc.) */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://via.placeholder.com/1920x600?text=Your+Hero+Image') no-repeat center center / cover;
    color: #fff;
    text-align: center;
    padding: 150px 20px 100px;
    margin-top: 60px; /* offset for fixed header */
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.5;
}

/* Main Content Area */
main {
    flex: 1;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

main h2, main h3 {
    margin-top: 50px;
    font-weight: 700;
    color: #333;
}

main p, main li {
    line-height: 1.6;
    margin-bottom: 15px;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

strong {
    font-weight: 700;
}

/* Forms & Buttons */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin-top: 20px;
}

form label {
    font-weight: 500;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="date"],
form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

form textarea {
    min-height: 120px;
}

form button {
    background: #222;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.3s ease;
}

form button:hover {
    background: #f39c12;
    color: #222;
}

/* Offers & Cards */
#offers .offer {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    transition: box-shadow 0.3s ease;
    border: 1px solid #eee;
}

#offers .offer:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#offers .offer h3 {
    margin: 0 0 10px;
    font-weight: 700;
}

#offers .offer p {
    margin: 0 0 10px;
    line-height: 1.5;
}

#offers .offer a {
    text-decoration: none;
    color: #333;
    display: block;
}

/* Testimonials */
.testimonial {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.testimonial p {
    margin: 0;
    line-height: 1.5;
}

.testimonial strong {
    display: block;
    margin-top: 10px;
    font-weight: 700;
}

/* Footer */
footer {
    background: #222;
    color: #ccc;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    header .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 10px;
    }

    nav a {
        font-size: 1rem;
    }
}
