* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fff8f5;
    color: #333;
    line-height: 1.7;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

section {
    padding: 80px 8%;
}

.section-title {
    margin-bottom: 50px;
    color: #222;
    font-size: 40px;
    text-align: center;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 8%;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.logo {
    color: #222;
    font-size: 30px;
    font-weight: 700;
    text-decoration: none;
}

.logo span {
    color: #d4a017;
}

.nav-links {
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: #d4a017;
}

.hero {
    display: flex;
    min-height: 90vh;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 70px 8%;
    background: linear-gradient(135deg, #fff, #fdeee8);
}

.hero-text {
    width: 50%;
}

.hero-text h1 {
    color: #222;
    font-size: 60px;
    line-height: 1.1;
}

.hero-text p {
    max-width: 520px;
    margin: 25px 0;
    color: #666;
    font-size: 20px;
}

.hero-image {
    width: 45%;
}

.hero-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 35px;
    background: #d4a017;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.btn:hover,
.btn:focus-visible {
    background: #b8860b;
    transform: translateY(-2px);
}

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

.service-card {
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-card h3 {
    margin: 20px 0 10px;
    color: #d4a017;
}

.service-card p {
    padding: 0 20px 25px;
    color: #666;
}

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

.gallery img {
    width: 100%;
    height: 300px;
    border-radius: 18px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.03);
}

.hours-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.day {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 18px;
}

.day:last-child {
    border-bottom: none;
}

.day span:first-child {
    color: #222;
    font-weight: 700;
}

.day span:last-child {
    color: #d4a017;
}

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

.offer-card {
    padding: 30px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-8px);
}

.offer-card h3 {
    margin-bottom: 15px;
    color: #d4a017;
}

.offer-card p {
    color: #666;
}

.booking-form {
    display: flex;
    max-width: 700px;
    flex-direction: column;
    gap: 18px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #333;
    font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    background: #fff;
    color: #333;
    font-size: 16px;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.booking-form textarea {
    min-height: 140px;
    resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: #d4a017;
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.12);
}

.booking-form button {
    padding: 16px;
    border: none;
    border-radius: 35px;
    background: #d4a017;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.booking-form button:hover,
.booking-form button:focus-visible {
    background: #b8860b;
    transform: translateY(-2px);
}

.contact-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 35px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    font-style: normal;
}

.contact-box p {
    margin: 15px 0;
    font-size: 18px;
}

.contact-box a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-box a:hover,
.contact-box a:focus-visible {
    color: #d4a017;
}

footer {
    margin-top: 60px;
    padding: 25px;
    background: #222;
    color: #fff;
    text-align: center;
}

@media (max-width: 900px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 25px;
    }

    .hero {
        flex-direction: column;
        gap: 40px;
        padding: 60px 20px;
        text-align: center;
    }

    .hero-text,
    .hero-image {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .hero-text p {
        margin-right: auto;
        margin-left: auto;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 20px;
    }

    .section-title {
        margin-bottom: 35px;
        font-size: 32px;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .service-card img {
        height: 220px;
    }

    .gallery img {
        height: 220px;
    }

    .hours-box {
        padding: 20px;
    }

    .day {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .contact-box {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 26px;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-text h1 {
        font-size: 34px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 28px;
    }

    .offer-card {
        padding: 25px 20px;
    }
}