/* sticky nav bar */
.navbar {
    position: sticky;
    top: 0;
    background-color: #5a7d7c;
    padding: 15px;
    gap: 30px;
    z-index: 1000;
    text-align: center;
}



h1 {
    text-align: center;
    color: #3d5c5b;
}

/*  -   request page  -   */

/* Styles the grouping boxes */
fieldset {
    border: 3px solid #5a7d7c;
    padding: 15px;
    margin-top: 20px;
    border-radius: 4px;
    width: 60%;
    margin: auto;
}

/* Styles the group titles */
legend {
    font-weight: bold;
    color: #3d5c5b;
    padding: 0 8px;
}





/* Makes each label appear above its input */
.info-form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

/* Styles all inputs and text boxes */
.info-form input,
.info-form select,
.info-form textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* styles submit button/colors/curser/button touch ups*/
.info-form button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background-color: #5a7d7c;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

/*different button color*/
.info-form button:hover {
    background-color: #4a6a69;
}



/*  -   rooms page    -*/


/* Styles the pricing table */
.pricing-table {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;
}

/* Styles table borders/aligns text*/
.pricing-table th,
.pricing-table td {
    border: 1px solid #ccc;
    padding: 12px;
    text-align: left;
}

/* Header row styling */
.pricing-table thead th {
    background-color: #5a7d7c;
    color: white;
}

/* Alternating row color for readability */
.pricing-table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

/* Room images boxx/rounds corners */
.pricing-table img {
    border-radius: 6px;
}

td {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 1.2rem;
    white-space: nowrap;
    padding: 8px;

    
}

button {position: absolute;
top: 45%;
left: 47%;}

/*  -   thank you page   -     */


/* Adds border along with color */
.nub {
    width: 60%;
    margin: 60px auto;
    padding: 30px;
    border: 2px solid #5a7d7c;
    background-color: #f7f7f7;
    text-align: center;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* colors heading */
.nub h1 {
    margin-top: 0;
    color: #5a7d7c;
}

/* spacing for the paragraph */
.nub p {
    color: #000000;
    margin-bottom: 20px;
}

/*text font*/
.gravitas-one-regular {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: normal;
}



/*    -  homepage  -      */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f5f7f6;
    color: #333;
}

/* Header */
header {
    text-align: center;
    background-color: #5a7d7c;
    color: white;
    padding: 30px 10px;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin: 0;
}

.tagline {
    font-size: 1.2rem;
    margin-top: 8px;
}

/* Info Box */


.info-box {
    background: white;
    width: 70%;
    margin: 40px auto;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.info-box h2 {
    font-family: 'Playfair Display', serif;
    color: #3d5c5b;
}

/*styles a card for each room type*/
.room-card {
    background: white;
    width: 280px;
    margin: 20px auto;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    text-align: center;
}

.room-card img {
    width: 100%;
    border-radius: 6px;
}

.room-card h3 {
    font-family: 'Playfair Display', serif;
    margin-top: 10px;
}

.room-card p {
    font-size: 0.95rem;
    margin-top: 5px;
}

/* centers box and inlines cards */
.rooms-box {
    text-align: center;
}

.room-card {
    display: inline-block;
    vertical-align: top;
    margin: 20px;
}

/* Footer */
footer {
    background-color: #5a7d7c;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

