body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #74ebd5, #ACB6E5);
    color: #333;
}

h1 {
    text-align: center;
    margin-top: 50px;
    font-size: 48px;
    color: white;
}

p {
    text-align: center;
    font-size: 22px;
    color: white;
    margin-top: 20px;
}
main {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
}

section {
    background: rgba(255, 255, 255, 0.25);
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 20px;
    text-align: center;
}

section h2 {
    color: white;
    font-size: 30px;
    margin-bottom: 15px;
}
nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 35px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    letter-spacing: 1px;
    padding: 8px 4px;
    transition: 0.3s;
}

nav a:hover {
    opacity: 0.7;
}
.hero {
    min-height: 85vh;
    padding: 60px 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: auto;
}

.eyebrow {
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(42px, 9vw, 76px);
    line-height: 1.05;
    margin: 0 auto 25px;
    color: white;
}

.hero-text {
    max-width: 520px;
    margin: 0 auto 35px;
    font-size: 20px;
    line-height: 1.6;
    color: white;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-actions a {
    display: inline-block;
    min-width: 150px;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.hero-actions .primary {
    background: white;
    color: #35545b;
    border: 1px solid white;
}

.hero-actions .secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-actions a:hover {
    transform: translateY(-3px);
}

.hero nav {
    margin-top: 50px;
}
.place-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}

.place-card {
    overflow: hidden;
}

header a {
    color: white;
    text-decoration: none;
}
.place-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 18px;
}
.place-card {
    max-width: 900px;
    margin: 30px auto;
    padding: 25px;
    background: rgba(255, 255, 255, 0.28);
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.place-card h3 {
    margin: 22px 0 8px;
    font-size: 28px;
    color: #263f45;
}

.place-card p {
    margin: 0 0 10px;
    font-size: 18px;
    color: #35545b;
}
.destination-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.destination-card {
    padding: 30px;
    min-height: 170px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.destination-card h3 {
    margin-top: 0;
    font-size: 23px;
    color: #263f45;
}

.destination-card p {
    line-height: 1.6;
    color: #35545b;
}
@media (max-width: 700px) {
    .destination-cards {
        grid-template-columns: 1fr;
    }

    .destination-card {
        min-height: auto;
    }

    .hero {
        min-height: 90vh;
        padding: 40px 20px 25px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-text {
        font-size: 17px;
    }

    .hero nav {
        gap: 12px;
        flex-wrap: wrap;
    }
}
@media (max-width: 700px) {
    .hero nav {
        display: flex;
        justify-content: center;
        gap: 12px 18px;
    }

    .hero nav a {
        font-size: 14px;
    }
}
.escape-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.escape-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.escape-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.escape-card span {
    font-size: 30px;
}

.escape-card h3 {
    margin: 18px 0 8px;
    font-size: 22px;
    color: #263f45;
}

.escape-card p {
    margin: 0;
    line-height: 1.6;
    color: #35545b;
}
@media (max-width: 700px) {
    .escape-cards {
        grid-template-columns: 1fr;
    }
}
main > section {
    padding: 80px 25px;
}

main > section > h2,
main > section > p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
#destinations {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    margin: 30px 20px;
}

#destinations > h2 {
    font-size: 42px;
    color: #263f45;
}

#destinations > p {
    font-size: 18px;
    line-height: 1.7;
    color: #35545b;
}
main > section > h2 {
    font-weight: 500;
    letter-spacing: -0.5px;
}

main > section > p {
    font-weight: 400;
}
.hero {
    position: relative;
    background-image:
        linear-gradient(rgba(20, 45, 50, 0.35), rgba(20, 45, 50, 0.45)),
        url("../images/villa-first.png");
    background-size: cover;
    background-position: center;
    border-radius: 0 0 30px 30px;
    overflow: hidden;
}
.hero-content {
    position: relative;
    z-index: 2;
}

.hero nav {
    position: relative;
    z-index: 2;
}
.hero h1,
main > section > h2,
.place-card h3,
.destination-card h3,
.escape-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -0.5px;
}
.hero .eyebrow {
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero h1 {
    max-width: 850px;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.18);
}
.place-card {
    max-width: 900px;
    margin: 40px auto;
    padding: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}

.place-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
}

.place-card h3 {
    margin: 28px 30px 8px;
    font-size: 30px;
}

.place-card p {
    margin: 0 30px 30px;
    font-size: 17px;
    line-height: 1.6;
}
.place-card-label {
    display: block;
    margin: 26px 30px 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #6f8589;
}
.place-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 30px 18px;
}

.place-card-meta span {
    padding: 7px 12px;
    border: 1px solid rgba(53, 84, 91, 0.18);
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.4px;
    color: #35545b;
    background: rgba(255, 255, 255, 0.35);
}
.stay-button {
    display: inline-block;
    margin: 0 30px 30px;
    padding: 12px 22px;
    border-radius: 999px;
    background: #263f45;
    color: white;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.stay-button:hover {
    transform: translateY(-3px);
    opacity: 0.85;
}
.villa-details {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 25px 80px;
    text-align: center;
}

.villa-image {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.villa-details h2 {
    margin: 45px auto 15px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    font-weight: 400;
    color: #263f45;
}

.villa-details > p {
    max-width: 650px;
    margin: 0 auto 30px;
    color: #35545b;
    font-size: 18px;
    line-height: 1.7;
}

.villa-details .place-card-meta {
    justify-content: center;
}
.villa-price {
    margin: 20px auto 30px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 7px;
}

.villa-price strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 400;
    color: #263f45;
}

.villa-price span {
    font-size: 15px;
    color: #6f8589;
}
.booking-cta {
    max-width: 650px;
    margin: 50px auto 0;
    padding: 35px 30px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
}

.booking-cta h3 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
    color: #263f45;
}

.booking-cta p {
    margin: 0 0 22px;
    font-size: 16px;
    color: #35545b;
}
.availability-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 30px;
    text-align: left;
}

.availability-form label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #35545b;
}

.availability-form input,
.availability-form select {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 10px;
    border: 1px solid rgba(53, 84, 91, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    color: #263f45;
    font-family: Arial, sans-serif;
}

@media (max-width: 700px) {
    .availability-form {
        grid-template-columns: 1fr;
    }
}
.check-dates-button {
    grid-column: 1 / -1;
    justify-self: center;
    padding: 12px 24px;
    border: none;
    border-radius: 999px;
    background: #263f45;
    color: white;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.check-dates-button:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.availability-message {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #35545b;
}
.booking-summary {
    margin-top: 25px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.booking-summary h3 {
    margin: 0 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
    color: #263f45;
}

.booking-summary-title {
    margin: 0 0 20px;
    font-size: 17px;
    color: #35545b;
}

.booking-summary-details {
    display: grid;
    gap: 8px;
    margin-bottom: 20px;
    color: #35545b;
    font-size: 15px;
}

.booking-summary-details strong {
    margin-top: 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
    color: #263f45;
}

.booking-summary-note {
    margin: 0;
    font-size: 14px;
    color: #6f8589;
}
.booking-summary {
    width: 100%;
    box-sizing: border-box;
    margin: 25px auto 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.booking-summary[hidden] {
    display: none !important;
}

.booking-summary h3 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
    color: #263f45;
}

.booking-summary-title {
    margin: 0 0 22px;
    font-size: 17px;
    color: #35545b;
}

.booking-summary-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #35545b;
    font-size: 15px;
}

.booking-summary-details strong {
    margin-top: 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
    color: #263f45;
}

.booking-summary-note {
    margin: 0;
    font-size: 14px;
    color: #6f8589;
}
.book-stay-button {
    display: inline-block;
    width: auto;
    min-width: 180px;
    margin: 20px auto 0;
    padding: 14px 28px;
    box-sizing: border-box;
    border: none;
    border-radius: 999px;
    background: #263f45;
    color: white;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.book-stay-button:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}
.availability-form .book-stay-button {
    grid-column: 1 / -1;
    justify-self: center;
    width: auto;
    min-width: 180px;
    max-width: 220px;
    display: block;
    margin: 20px auto 0;
    padding: 14px 28px;
    box-sizing: border-box;
    border: none;
    border-radius: 999px;
    background: #263f45;
    color: white;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.availability-form .book-stay-button:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}
.language-switcher {
    position: absolute;
    top: 25px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 7px;
    z-index: 10;
    color: rgba(255, 255, 255, 0.7);
}

.language-button {
    padding: 4px 2px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
}

.language-button.active {
    color: white;
    font-weight: 600;
}

.language-button:hover {
    color: white;
}