body {
    font-family: 'Jaini', sans-serif;
    background-color: #f7a8b8;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-size: 1.05rem;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
.header {
    background-color: white;
    text-align: center;
    padding: 20px 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.header h1 {
    font-family: 'Inspiration', cursive;  
    font-size: 2.8rem;
    margin: 0;
    font-weight: normal;
    letter-spacing: -1px;
    color: #333;
}
.nav {
    margin-top: 12px;
}

.nav a {
    margin: 0 18px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 1.05rem;
}
.hero {
    text-align: center;
    background-color: white;
    padding: 25px 20px;
    max-width: 1100px;
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.hero img {
    width: 100%;
    max-width: 920px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.hero p {
    font-weight: bold;
    font-size: 1.35rem;
    margin-top: 15px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.services {
    background-color: white;
    max-width: 1100px;
    margin: 30px auto;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.services h2 {
    margin-bottom: 25px;
    font-size: 2rem;
}
.service-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.service-list {
    flex: 1;
    min-width: 260px;
    text-align: left;
}

.service-list ul {
    padding-left: 0;
    list-style: none;
}

.service-list li {
    font-size: 1.25rem;
    margin: 14px 0;
    font-weight: 500;
}
.service-images {
    flex: 2;
    min-width: 260px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
    gap: 14px;
}

.service-images img {
    width: 100%;
    height: 165px;
    object-fit: cover;
    border-radius: 10px;
}
.gallery {
    background-color: white;
    max-width: 1100px;
    margin: 30px auto;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
}

.gallery img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
}
.booking {
    background-color: white;
    max-width: 1100px;
    margin: 30px auto 40px;
    padding: 40px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.booking h2 {
    margin-bottom: 25px;
    font-size: 2rem;
}

.booking input,
.booking select {
    width: 100%;
    max-width: 420px;
    padding: 14px;
    margin: 10px auto;
    display: block;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1.05rem;
}

.booking input[type="submit"] {
    background-color: #e91e63;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    margin-top: 15px;
}

/* FOOTER */
.footer {
    font-family: 'Inspiration', cursive;
    text-align: center;
    padding: 20px;
    background-color: white;
    max-width: 1100px;
    margin: 0 auto 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    font-size: 0.95rem;
}
.services, .gallery, .booking {
    border: 1px solid #ffe4ec;
}