body {
    margin: 0;
    font-family: sans-serif;
    line-height: 1.6;
    color: #333;
}

header.hero {
    background: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
}

header.hero .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header.hero .btn {
    background: #000;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
}

nav.main-nav {
    background: #222;
    padding: 10px;
    z-index: 2;
    position: relative;
}

nav.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav.main-nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav.main-nav ul li a {
    color: #fff;
    text-decoration: none;
}

.services,
.gallery-preview,
.why-us,
.testimonials-preview {
    padding: 40px 20px;
    text-align: center;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-grid div {
    flex: 1 1 250px;
    max-width: 300px;
}

.gallery img {
    width: 100%;
    max-width: 400px;
    margin: 10px;
}

footer {
    background: #f1f1f1;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}

.hero {
    background: url('../images/kitchen-hero.jpg') center center / cover no-repeat;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 30px;
    text-align: center;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

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

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.hero-text p {
    font-size: 1.2rem;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.hero-form input,
.hero-form textarea {
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
}

.hero-form textarea {
    height: 100px;
    resize: vertical;
}

.hero-form .btn {
    background-color: #ffcc00;
    color: #000;
    font-weight: bold;
    padding: 12px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
}

.hero-form .btn:hover {
    background-color: #e6b800;
}

.highlight-bg {
    background-color: #f9f9f9;
}

.service-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.service-card img {
    width: 100%;
    max-width: 260px;
    margin-bottom: 10px;
}

.site-footer {
    background: #222;
    color: #fff;
    padding: 30px 10px;
}

.site-footer a {
    color: #ffb700;
    text-decoration: none;
}

.content-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.why-us ul {
    list-style: none;
    padding: 0;
    text-align: center;
    margin: 0 auto;
}

.why-us ul li {
    padding: 5px 0;
    font-size: 1.1rem;
}

.centered-list {
    display: flex;
    justify-content: center;
}

.centered-list ul {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
}

.centered-list li {
    font-size: 1.1rem;
    padding: 6px 0;
}

.why-us-wrapper {
    text-align: center;
}

.why-us-wrapper h2 {
    text-align: center !important;
}

blockquote {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1rem 1.5rem;
    background-color: #f9f9f9;
    border-left: 4px solid #ccc;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

blockquote p {
    margin: 0 0 0.5rem;
    font-style: italic;
}

blockquote footer {
    font-weight: bold;
    text-align: right;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form label {
    font-weight: bold;
    margin-top: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form button {
    margin-top: 1.5rem;
    padding: 0.75rem;
    background-color: #222;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.contact-form button:hover {
    background-color: #444;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

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

.gallery-item img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item h4 {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #444;
}
