body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

        table {
            width: 100%;
            border-collapse: collapse;
        }
        table, th, td {
            border: 1px solid white;
        }
        

        th, td {
            padding: 10px;
            text-align: left;
            color: white;

        }
        th {
            background-color: darkgreen;
            color: white;
        }

    /*button styling */

         .button-container {
            display: flex;
            justify-content: center;
            align-items: center;
           
             /*background-color: #f0f0f0; Optional: a light background color for contrast */
        }

        .rectangular-button {
            background-color: darkgrey; /* Green background */
            border: none; /* Remove borders */
            color: black; /* White text */
            padding: 15px 32px; /* Some padding */
            text-align: center; /* Centered text */
            text-decoration: none; /* Remove underline */
            display: inline-block; /* Make the container inline */
            font-size: 16px; /* Increase font size */
            cursor: pointer; /* Pointer/hand icon on hover */
            border-radius: 2; /* No rounded corners */
            transition: background-color 0.3s ease; /* Smooth transition for hover effect */
        }

        .rectangular-button:hover {
            background-color: darkgreen; /* Darker green on hover */
        }
        
        /* General Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Page Cover Section */
.page-cover {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.page-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-cover .container {
    position: relative;
    z-index: 2;
}

.page-cover .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #f1c40f;
}

.breadcrumb-item.active {
    color: #f1c40f;
}

/* Innerpage Wrapper Section */
.innerpage-wrapper {
    padding: 60px 0;
    background: #f8f9fa;
}

.selected-room-block {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.selected-room-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.selected-room-detail {
    padding: 30px;
}

.selected-room-detail h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.selected-room-detail p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.rating i {
    color: #f1c40f;
    font-size: 1.2rem;
}

.side-bar-block.special-offer {
    padding: 20px;
    text-align: center;
    color: #fff;
}

.special-offer p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.special-offer .btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    background: #f1c40f;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.special-offer .btn:hover {
    background: #e67e22;
}

.selected-room-features li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
}

.selected-room-features i {
    color: #27ae60;
    margin-right: 10px;
}

.selected-room-features .fa-times {
    color: #c0392b;
}

/* Booking Form */
.space-left {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.innerpage-heading h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group span {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #999;
}

.form-group textarea {
    resize: vertical;
}

.btn-yellow {
    background: #f1c40f;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-yellow:hover {
    background: #e67e22;
}

/* Related Tours Section */
#menu {
    padding: 40px 0;
}

.dish-category h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.dish-type {
    text-align: center;
    margin-bottom: 20px;
}

.dish-name {
    font-size: 1.1rem;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.dish-type a:not(.dish-name) {
    color: #f1c40f;
    text-decoration: none;
    font-size: 0.9rem;
}

.dish-type a:hover {
    text-decoration: underline;
}

/* Newsletter Section */
#newsletter {
    background: #2c3e50;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

#newsletter h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

#newsletter p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

#newsletter .form-group {
    max-width: 500px;
    margin: 0 auto;
}

#newsletter .input-group {
    display: flex;
}

#newsletter input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
}

#newsletter .input-group-btn .btn {
    background: #f1c40f;
    border: none;
    padding: 12px 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

#newsletter .input-group-btn .btn:hover {
    background: #e67e22;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-cover .page-title {
        font-size: 1.8rem;
    }

    .selected-room-detail h2 {
        font-size: 1.5rem;
    }

    .innerpage-heading h2 {
        font-size: 1.5rem;
    }

    .dish-type {
        margin-bottom: 30px;
    }
}
