body {
    margin: 0 0;
    padding: 0 0;
}

a {
    text-decoration: none;
}

/** NAVIGATION BAR **/

/* tw classes: flex flex-row items-center justify-center*/

nav {
    z-index: 1;
    color: black;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 4px 62px;
    position: sticky;
    top: 0;
    overflow: hidden;
    margin-top: -90px;
}

nav #left-nav {
    padding: 0;

    list-style-type: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 8px;
}

nav #right-nav {
    padding: 0;

    list-style-type: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    gap: 8px;
}

nav a {
    text-decoration: none;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
}

nav li {
    background-color: rgb(0, 0, 0);
    padding: 12px;
}

/** HERO CONTENT **/
#hero {
    /* background-color: red; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    min-height: 100vh;
    background-color: #ece6a5;

    font-family: Arial, Helvetica, sans-serif;
}

#hero #title {
    font-weight: 600;
    font-size: 90px;
    margin-bottom: 0;
}

#hero #subtitle {
    font-weight: 200;
    font-size: 20px;
    text-align: justify;
}

#hero #cta {
    padding: 0;
    padding-top: 24px;
}

#hero a {
    text-decoration: none;
    background-color: rgb(0, 0, 0);
    color: white;
    padding: 14px;
    width: 120px;
}

#hero div {
    /* background-color: red; */
    width: 50%;
    padding: 60px
}

/** WHY US **/
#why-us {
    z-index: 20;
    font-family: Arial, Helvetica, sans-serif;
    padding: 60px;
    
    color: black;
}

#why-us #title {
    font-size: 50px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 0;
}

#why-us #subtitle {
    text-align: center;
    font-weight: 200;
    margin-bottom: 0;
}

#why-us aside,
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 38px;
    margin: 40px;
}

#why-us #feat-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 18px;
    color: rgb(0, 0, 0);
}

#why-us #feat-card-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

#why-us #feat-card-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    gap: 18px;
}

#why-us #feat-card-title {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    overflow-wrap: break-word;
}

#why-us #feat-card-description {
    margin: 0;
    font-size: 20px;
    font-weight: 200;
    text-align: justify;
    text-overflow: ellipsis;
    width: 90%;
}

@media (max-width: 768px) {
    #why-us {
        padding: 32px 20px;
    }

    #feat-card-title {
        font-size: 28px;
    }
}

/** EXPERIENCES **/
#experiences {
    font-family: Arial, Helvetica, sans-serif;
    padding: 60px;
    
    color: black;
}

#experiences #title {
    font-size: 50px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 0;
}

#experiences #subtitle {
    text-align: center;
    font-weight: 200;
    margin-bottom: 0;
}

#experiences aside,
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 38px;
    margin: 40px;
}

#experiences #exp-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    color: rgb(0, 0, 0);
}

#experiences #exp-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

#exp-card img {
    opacity: 50%;
}

#exp-card img:hover {
    opacity: 100%;
    transition:cubic-bezier(1, 1, 1, 1)
}

#experiences #exp-card-title {
    margin: 0;
    font-size: 34px;
    font-weight: 700;
    margin-top: -40px;
    margin-left: 10px;
    opacity: 100%;
    color: white;
    overflow-wrap: break-word;
}

/** BOOK **/
#booking {
    font-family: Arial, Helvetica, sans-serif;
    padding: 60px;
    color: black;
    background: #f7f8f9;
}

#booking #title {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 0;
}

#booking #subtitle {
    text-align: center;
    font-weight: 200;
    margin-bottom: 0;
}

#booking #booking-field {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

#booking form {
    width: min(900px, 100%);
}

#booking form > fieldset {
    margin: 0;
    padding: 28px;
    border: 1px solid #dbe4ff;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
}

#booking form > fieldset > legend {
    font-size: 18px;
    font-weight: 700;
    color: #0cb800;
}

#booking form label {
    display: block;
    margin: 16px 0 8px;
    font-weight: 600;
}

#booking form input[type="text"],
#booking form input[type="tel"],
#booking form input[type="email"],
#booking form input[type="datetime-local"],
#booking form input[type="file"],
#booking form select,
#booking form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    background: #ffffff;
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease
}


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

#booking form fieldset fieldset {
    margin-top: 18px;
    padding: 18px;
    border-radius: 14px;
    background: #f8fafc;
}

#booking form fieldset fieldset legend {
    font-weight: 700;
    color: #334155;
    padding: 0 8px;
}

#booking form fieldset fieldset label {
    display: inline-block;
    margin: 8px 0 0 8px;
    font-weight: 500;
}

#booking form fieldset fieldset input {
    width: auto;
    margin-top: 10px;
}

#form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

#form-actions button {
    border: none;
    padding: 14px 22px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

#form-actions button[type="submit"] {
    background: #a69e48;
    color: white;
}

#form-actions button[type="reset"] {
    background: #e2e8f0;
    color: #0f172a;
}

#form-actions button:hover {
    transform: translateY(-1px);
}

/** CONTACT US **/

#contact {
    font-family: Arial, Helvetica, sans-serif;
    padding: 60px;
    color: black;
    background: #f7f8f9;
    min-height: 100vh;
}

#contact #title {
    font-size: 50px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 0;
}

#contact #subtitle {
    text-align: center;
    font-weight: 200;
    margin-bottom: 0;
}

#contact #list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    text-align: center;
    gap: 15%;
    margin: 40px;
}

/** FOOTER **/

footer {
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 2%;
    padding-bottom: 2%;

    background: #ece6a5;
    font-family: Arial, Helvetica, sans-serif;
    color: black;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    flex-direction: row;
}

footer h1 {
    font-family: 'Times New Roman', Times, serif;
}

footer #group {
    display: flex;
    flex-direction: column;
    gap: 8px
}