* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(to bottom, #efe3d5, #e7d8c9);
    padding: 30px 60px;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.logo {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 4px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: black;
    font-size: 13px;
    padding: 12px 20px;
    border-radius: 30px;
    transition: 0.3s;
    letter-spacing: 1px;
}

nav a:hover {
    background-color: rgba(0,0,0,0.08);
}

nav a.active {
    background-color: black;
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.search-box {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 30px;
    padding: 0 18px;
    width: 210px;
    height: 48px;
}

.search-box span {
    font-size: 18px;
    color: #666;
    margin-right: 10px;
}

.search-box input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 13px;
    letter-spacing: 1px;
}

.hero {
    display: flex;
    background-color: #f3e7db;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    margin-top: 20px;
}

.hero-left {
    width: 48%;
    background: linear-gradient(to right, #000000 55%, #8a8177 80%, #efe3d5 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.hero-left img {
    width: 115%;
    max-width: none;
    object-fit: cover;
    transform: translateX(-20px);
}

.hero-right {
    width: 52%;
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.hero-right h1 {
    font-size: 78px;
    line-height: 0.95;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -2px;
}

.hero-right p {
    font-size: 20px;
    line-height: 1.6;
    color: #4b4b4b;
    max-width: 450px;
    margin-bottom: 40px;
}

.buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.buttons button {
    padding: 14px 24px;
    border-radius: 30px;
    border: 1px solid black;
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.3s;
}
.buttons button:hover {
    background-color: black;
    color: white;
}

.buttons .dark {
    background-color: black;
    color: white;
    border: none;
    padding-left: 30px;
    padding-right: 30px;
}

.cards {
    display: flex;
    gap: 30px;
    margin-top: 45px;
    margin-bottom: 40px;
}

.card {
    position: relative;
    flex: 1;
    height: 260px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    transition: transform 0.3s;
}

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

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

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.card-text {
    position: absolute;
    left: 30px;
    bottom: 30px;
    color: white;
    z-index: 2;
}

.card h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.card p {
    font-size: 18px;
    line-height: 1.4;
    max-width: 280px;
}

@media (max-width: 1000px) {

    body {
        padding: 20px;
    }

    header {
        flex-direction: column;
        gap: 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-left {
        height: 400px;
    }

    .hero-right {
        padding: 40px 30px;
    }

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

    .hero-right p {
        font-size: 20px;
    }

    .cards {
        flex-direction: column;
    }

    .card {
        height: 280px;
    }

    .card h2 {
        font-size: 34px;
    }
}

footer {
    text-align: center;
    padding: 30px 0 10px;
    color: #555;
    font-size: 14px;
    letter-spacing: 1px;
}

.contact-section {
    background-color: #f3e7db;
    border-radius: 30px;
    padding: 40px;
    margin-top: 20px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.contact-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 18px;
    margin-bottom: 10px;
    color: #444;
}

.page-button {
    padding: 14px 24px;
    border-radius: 30px;
    border: 1px solid black;
    text-decoration: none;
    color: black;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.page-button:hover {
    background-color: black;
    color: white;
}

.card h2 a {
    color: white;
    text-decoration: none;
}

.card h2 a:hover {
    text-decoration: underline;
}

.subpage {
    max-width: 1200px;
    margin: 0 auto;
}

.subpage-hero {
    display: flex;
    background-color: #f3e7db;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    margin-top: 40px;
    margin-bottom: 40px;
}

.subpage-image {
    width: 45%;
}

.subpage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.subpage-text {
    width: 55%;
    padding: 70px;
}

.subpage-text h1 {
    font-size: 64px;
    margin-bottom: 25px;
}

.subpage-text p {
    font-size: 20px;
    line-height: 1.7;
    color: #4b4b4b;
    margin-bottom: 20px;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: black;
    border: 1px solid black;
    border-radius: 30px;
    padding: 12px 20px;
    transition: 0.3s;
}

.back-link:hover {
    background-color: black;
    color: white;
}

@media (max-width: 1000px) {
    .subpage-hero {
        flex-direction: column;
    }

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

    .subpage-text {
        padding: 40px 30px;
    }

    .subpage-text h1 {
        font-size: 46px;
    }
    .detail-cards {
    flex-direction: column;
}
}

.details-section {
    margin-top: 30px;
    margin-bottom: 40px;
}

.details-section h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.detail-cards {
    display: flex;
    gap: 25px;
}

.detail-card {
    flex: 1;
    background-color: #f3e7db;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.detail-card:hover {
    transform: translateY(-6px);
}

.detail-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.detail-card p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-item {
    position: relative;
}

.icon {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: black;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    cursor: pointer;
}

.social-item p {
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    background-color: black;
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    transition: 0.3s;
}

.social-item:hover .icon {
    background-color: black;
    color: white;
    transform: translateY(-5px);
}

.social-item:hover p {
    opacity: 1;
}

.icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.about-section {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: #f3e7db;
    border-radius: 35px;
    padding: 50px;
    margin-bottom: 50px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 54px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
}
.about-section {
    flex-direction: column;
    padding: 35px 25px;
}

.about-text h2 {
    font-size: 40px;
}

.reviews-section,
.faq-section,
.booking-section,
.form-section {
    background-color: #f3e7db;
    border-radius: 35px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.reviews-section h2,
.faq-section h2,
.booking-section h2,
.form-section h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.review-cards {
    display: flex;
    gap: 25px;
}

.review-card {
    flex: 1;
    background-color: white;
    border-radius: 25px;
    padding: 30px;
}

.review-card p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.review-card h4 {
    font-size: 18px;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 20px 0;
}

.faq-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.faq-item p {
    color: #555;
    font-size: 18px;
    line-height: 1.6;
}

.booking-section {
    text-align: center;
}

.booking-section p {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.booking-button {
    display: inline-block;
    background-color: black;
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 30px;
    transition: 0.3s;
}

.booking-button:hover {
    transform: translateY(-4px);
}

.form-section form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-section input,
.form-section textarea {
    border: none;
    border-radius: 20px;
    padding: 18px 20px;
    font-size: 16px;
    background-color: white;
}

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

.form-section button {
    align-self: flex-start;
    background-color: black;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 15px 30px;
    cursor: pointer;
}

@media (max-width: 1000px) {
    .review-cards {
        flex-direction: column;
    }

    .reviews-section,
    .faq-section,
    .booking-section,
    .form-section {
        padding: 35px 25px;
    }

    .reviews-section h2,
    .faq-section h2,
    .booking-section h2,
    .form-section h2 {
        font-size: 38px;
    }

    .about-section {
        flex-direction: column;
        padding: 35px 25px;
    }

    .about-text h2 {
        font-size: 40px;
    }
}