:root {
    --primary-color: #1cc3b2;
    --secondary-color: #0e2737;
    --light-color: #ffffff;
    --text-color: #636a76;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.top-bar {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span,
.social-icons a {
    margin-right: 20px;
}

.contact-info span:last-child,
.social-icons a:last-child {
    margin-right: 0;
}

.social-icons a {
    color: var(--light-color);
    text-decoration: none;
}

nav {
    background-color: var(--light-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
}

.logo span {
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style-type: none;
}

nav ul li {
    margin-right: 30px;
}

nav ul li:last-child {
    margin-right: 0;
}

nav ul li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

.book-now {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.book-now:hover {
    background-color: var(--secondary-color);
}

.hero {
    background-image: linear-gradient(rgba(14, 39, 55, 0.7), rgba(14, 39, 55, 0.7)), url('https://preview.colorlib.com/theme/roberto/img/bg-img/1.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
}

.hero-content {
    max-width: 800px;
}

.hero h2 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 60px;
    font-weight: 300;
    margin-bottom: 30px;
}

.hero button {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero button:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.booking-form {
    background-color: var(--light-color);
    padding: 40px;
    margin-top: -120px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.booking-form .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.form-group {
    flex: 1;
    margin-right: 20px;
}

.form-group:last-child {
    margin-right: 0;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--secondary-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e8e8e8;
    font-size: 14px;
    color: var(--text-color);
}

.booking-form button {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 14px 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.booking-form button:hover {
    background-color: var(--secondary-color);
}


/* Add these styles to the previous CSS file */

.about-us {
    padding: 100px 0;
    background-color: var(--white);
}

.about-us .container {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
}

.about-content {
    flex: 1;
}

.subtitle {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    display: block;
}

.about-content h2 {
    color: var(--dark);
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-content p {
    color: #636a76;
    margin-bottom: 30px;
    line-height: 1.8;
}

.manager {
    margin-top: 40px;
}

.manager p {
    margin-bottom: 10px;
}

.manager .name {
    color: var(--primary);
}

.signature {
    max-width: 150px;
    opacity: 0.7;
}

.about-images {
    flex: 1;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.grid-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
}

.grid-img:first-child {
    grid-column: 1 / -1;
}

.services {
    padding: 80px 0;
    background-color: #fff;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex: 1;
}

.service-card:hover {
    transform: translateY(-5px);
}

.icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #1cc3b2;
    transition: all 0.3s ease;
}

.service-card:hover .icon {
    color: #fff;
    background-color: #1cc3b2;
    border-radius: 50%;
}

.service-card h3 {
    color: #2a303b;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}


/* Add these styles to the previous CSS file */

/* Room Showcase Section */
.room-showcase {
    background-color: rgb(1, 30, 41);
}

.room-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.room-image {
    flex: 1;
    height: 500px;
}

.room-image img {
    margin-top: 20px;
    width: 100%;
    height: 115%;
    object-fit: cover;
}

.room-details {
    flex: 1;
    background-color: var(--dark);
    padding: 80px;
    color: var(--white);
}

.room-details h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.price {
    margin-bottom: 40px;
}

.price .amount {
    color: var(--primary);
    font-size: 32px;
}

.price .duration {
    color: var(--white);
    font-size: 16px;
}

.specifications {
    margin-bottom: 40px;
}

.spec-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.spec-item .label {
    min-width: 100px;
}

.view-details {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    margin-bottom: 30px;
    transition: background-color 0.3s;
}

.view-details:hover {
    background-color: #18a99a;
}

.navigation-buttons {
    display: flex;
    gap: 15px;
}

.navigation-buttons button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.prev {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.prev :hover {
    background-color: #18a99a;

}

.next {
    background-color: var(--primary);
    color: var(--white);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.section-label {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}

.testimonials h2 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 50px;
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 800px;
}

.testimonial-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-size: 18px;
    color: #636a76;
    line-height: 1.8;
}