#mainNav {
    transition: background-color 0.5s;
}

#mainNav.navbar-scrolled {
    background-color: #33353d;
}

.navbar-brand {
    color: white;
    font-weight: bold;
    transition: color 0.2s;
}

.navbar-brand:hover {
    color: #c59d5f;
    /* font-weight: bold; */
}

.nav-link {
    color: white;
}

.nav-link:hover {
    /* border: 2px white solid; */
    color: #c59d5f;
}

/* //////////////// */

.hero {
    position: relative;
    text-align: center;
}

.hero-img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    /* object-position: top; */
}

.hero-text {
    position: absolute;
    top: 40%;
    /* left: 50%; */
    width: 100%;
    color: white;
}

.hero-text>p:first-of-type {
    font-size: 55px;
    font-weight: bold;
    /* font-family: 'Dancing Script', cursive; */
}

.hero-text > p:nth-of-type(2){
    margin: auto;
    max-width: 400px;
    /* color: orange; */
}


/* ////////////////////////////////////////////////////////// */

.booking-container {
    max-width: 800px;
    width: 100%;    
    margin: auto;
    margin-top: 50px;
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.booking-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0e9e0;
}

.booking-header h1 {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 3.5rem;
    color: #c59d5f;
    /* margin: 0; */
}

.booking-header p {
    font-size: 1.1rem;
    color: #777;
}

.booking-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 8px;
    color: #555;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box; 
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #c59d5f;
    box-shadow: 0 0 5px rgba(197, 157, 95, 0.5);
}

/* .form-group textarea {
    resize: vertical;
} */

.submit-btn {
    /* display: block; */
    width: 100%;
    padding: 15px;
    margin-top: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
    background-color: #c59d5f;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #b38b4f;
}

/* //////////////////////////////////////////////////////// */

.site-footer {
    margin-top: 50px;
    background-color: #26272b;
    padding: 45px 0 20px;
    font-size: 15px;
    color: #737373;
}


.site-footer h6 {
    color: white;
    /* font-size: 16px; */
    text-transform: uppercase;
    /* margin-top: 5px; */
    letter-spacing: 2px;
}

.site-footer a {
    color: #737373;
    text-decoration: none;
}

.site-footer a:hover {
    color: #C59D5F;
}

.footer-links {
    padding-left: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.contact-info i {
    /* margin-right: 10px; */
    color: #C59D5F;
}


.social-icons {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    text-align: right;
}

.social-icons li {
    display: inline-block;
    margin-left: 10px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background-color: #33353d;
    border-radius: 100%;
    color: white;
    font-weight: bold;

    transition: all 0.3s ease;
}

.social-icons a.instagram {
    font-size: 12px;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.social-icons a.facebook:hover {
    background-color: #3b5998;
}

.social-icons a.instagram:hover {
    background-color: #e1306c;
}

.social-icons a.twitter:hover {
    background-color: #00aced;
}

@media (max-width: 767px) {
    .booking-header h1 {
        font-size: 2.8rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .booking-container {
        padding: 20px;
    }
    
    .social-icons {
        text-align: center;
        margin-top: 20px;
    }

    .copyright-text {
        text-align: center;
    }
}