/* ============================
   GLOBAL RESET
============================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lucida Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================
   HEADER / NAVBAR
============================= */
.outer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background-color: #414040;
    color: beige;
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap;
}

.logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.outer ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
}

.outer ul li {
    position: relative;
    font-size: 18px;
    max-width: 100%;
}

.outer ul li a {
    text-decoration: none;
    color: beige;
    font-size: 18px;
    font-style: italic;
    transition: 0.3s;
    white-space: nowrap;
}

.outer ul li a:hover {
    color: #55ec55;
}

/* Dropdown */
.outer ul li ul {
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    background: #887d7d;
    flex-direction: column;
    padding: 5px 10px;
    min-width: 180px;
    border-radius: 5px;
    z-index: 100;
    max-width: 90vw;
    overflow-wrap: break-word;
}

.outer ul li:hover > ul {
    display: flex;
}

/* ============================
   ICONS & BUTTONS
============================= */
.icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 10px;
    color: white;
}

.icons i {
    color: white;
}

.btn {
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    background-color: #8f7979;
    color: white;
    border-radius: 25px;
    border: none;
    padding: 5px 10px;
    transition: 0.3s;
    white-space: nowrap;
}

.btn:hover {
    background-color: #6b5f5f;
}

/* ============================
   TYPOGRAPHY
============================= */
h1,
h2 {
    padding: 10px 5%;
    text-align: center;
    word-wrap: break-word;
}

h2 {
    text-align: left;
}

.para {
    padding: 0 5%;
    font-size: 25px;
    text-align: justify;
    word-wrap: break-word;
}

li {
    font-size: 23px;
}

/* ============================
   EVENTS
============================= */
.events {
    display: flex;
    flex-direction: column;
    padding: 0 5%;
}

/* ============================
   CONTACTS
============================= */
.contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px 5%;
}

.contacts-1 {
    background-color: #eee;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    word-wrap: break-word;
}

.contacts-1 iframe {
    width: 100%;
    height: 200px;
    border: 0;
}

/* ============================
   FOOTER
============================= */
.footer {
    background-color: #2f2f2f;
    color: #f5f5f5;
    padding: 30px 5% 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.footer-box h2,
.footer-box h3 {
    color: #e0c097;
    margin-bottom: 10px;
}

.footer-box p,
.footer-box ul li {
    font-size: 15px;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li a {
    color: #f5f5f5;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #8b2c2c;
}

.footer-icons {
    display: flex;
    gap: 15px;
    font-size: 22px;
}

.footer-icons a:hover {
    transform: scale(1.15);
    color: #8b2c2c;
}

.footer-bottom {
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    background-color: #242424;
    font-size: 13px;
}

/* ============================
   HAMBURGER
============================= */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* ============================
   BOOKING FORM
============================= */
.booking-form {
    max-width: 820px;
    margin: 40px auto;
}

.booking-form .contacts-1 {
    background: #f2f2f2;
    padding: 32px 36px;
    border-radius: 14px;
}

.booking-form h2 {
    font-size: 22px;
    margin-bottom: 24px;
}

.booking-form form {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.booking-form form > div {
    width: calc(50% - 9px);
}

.booking-form .full {
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 12px 18px;
    font-size: 15px;
    border-radius: 30px;
    border: 1px solid #bbb;
    background: #fff;
    transition: 0.25s ease;
}

.form-input::placeholder {
    color: #888;
}

.form-input:focus {
    outline: none;
    border-color: #8f7979;
    box-shadow: 0 0 0 2px rgba(143, 121, 121, 0.15);
}

.booking-form button {
    margin-top: 10px;
    padding: 12px;
    font-size: 14px;
    border-radius: 30px;
    background: #8f7979;
    color: #fff;
    font-weight: 600;
    border: none;
    transition: 0.25s ease;
}

.booking-form button:hover {
    background: #6b5f5f;
}

#formMsg {
    margin-top: 12px;
    font-size: 14px;
}

/* ============================
   RESPONSIVE
============================= */
@media (max-width: 992px) {
    .outer ul {
        flex-direction: column;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .outer ul.active {
        max-height: 1000px;
    }

    .outer ul li ul {
        position: static;
        width: 100%;
    }

    .hamburger {
        display: block;
    }

    h1,
    h2,
    .para {
        font-size: 16px;
        padding: 10px 3%;
    }
}

@media (max-width: 768px) {
    .booking-form {
        padding: 0 12px;
    }

    .booking-form form > div {
        width: 100%;
    }

    .booking-form .contacts-1 {
        padding: 24px 18px;
    }
}

@media (max-width: 576px) {
    .outer {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        margin-bottom: 5px;
    }

    h1,
    h2,
    .para {
        font-size: 14px;
    }

    .contacts-1 iframe {
        height: 120px;
    }
}
