:root {
    --primary-color: #c19a6b; 
    --secondary-color: #1a1a1a;
    --accent-color: #8b5a2b;
    --text-color: #333;
    --light-color: #f9f9f9;
    --white: #fff;
    --black: #000;
    --gray: #777;
    --light-gray: #eee;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-padding {
    padding: 8rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 3.5rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title p {
    font-size: 1.6rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.logo img {
    height: 5rem;
    transition: var(--transition);
}

.navbar ul {
    display: flex;
    align-items: center;
}

.navbar ul li {
    margin-left: 3rem;
}

.navbar ul li a {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--secondary-color);
    position: relative;
    padding: 0.5rem 0;
}

.navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after {
    width: 100%;
}

.navbar ul li a.active {
    color: var(--primary-color);
}

.navbar ul li .btn {
    padding: 0.8rem 2rem;
    margin-left: 2rem;
}

.mobile-menu-btn {
    font-size: 2.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    display: none;
}

.hero {
    height: 100vh;
    position: relative;
    margin-top: 8rem;
}

.slider {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.slide .content {
    max-width: 600px;
    color: var(--white);
}

.slide .content h1 {
    font-size: 5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.slide .content p {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.slider {
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.slide.active {
    opacity: 1;
    position: relative;
}

.slider-nav {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.slider-nav button {
    width: 5rem;
    height: 5rem;
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    margin: 0 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav button:hover {
    background-color: var(--primary-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.features {
    margin-top: 3rem;
}

.features li {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.features li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.8rem;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.room-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.room-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.price {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.8rem;
}

.price span {
    font-size: 1.4rem;
    font-weight: 400;
}

.room-info {
    padding: 2.5rem;
}

.room-info h3 {
    font-size: 2.2rem;
    color: var(--secondary-color);
}

.room-info p {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.room-features li {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}

.room-features li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1.6rem;
}

.room-info .btn {
    width: 100%;
    text-align: center;
}

.city-content {
    display: flex;
    align-items: center;
    gap: 5rem;
    background-color: var(--white);
    border-radius: 10px;
    padding: 5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.city-text {
    flex: 1;
}

.city-text p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.city-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.city-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.city-image:hover img {
    transform: scale(1.05);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 5rem;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1.6rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-row {
    display: flex;
    gap: 2rem;
}

.form-row .form-group {
    flex: 1;
}

.booking-form .btn {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
}

.contact-content {
    display: flex;
    gap: 5rem;
    margin-top: 5rem;
}

.contact-info {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.info-item {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.info-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.info-item p,
.info-item a {
    font-size: 1.5rem;
    color: var(--gray);
}

.info-item a:hover {
    color: var(--primary-color);
}

.contact-form {
    flex: 1;
    background-color: var(--white);
    padding: 5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
}

.footer {
    background-color: var(--secondary-color);
    color: var(--light-gray);
    padding: 8rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 5rem;
    margin-bottom: 5rem;
}

.footer-col h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.footer-col ul li {
    margin-bottom: 1.5rem;
    
}

.footer-col ul li a {
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    font-size: 1.5rem;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    width: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--accent-color);
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.footer-links a {
    font-size: 1.4rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.fixed-buttons {
    position: fixed;
    right: 3rem;
    bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 999;
}

.phone-btn,
.whatsapp-btn {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.phone-btn {
    background-color: #25D366;
}

.whatsapp-btn {
    background-color: #075E54;
}

.phone-btn:hover,
.whatsapp-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .about-content,
    .city-content,
    .contact-content {
        flex-direction: column;
    }
    
    .about-image,
    .city-image {
        order: -1;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 55%;
    }
    
    .header .container {
        padding: 1.5rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .navbar {
        position: fixed;
        top: 8rem;
        left: -100%;
        width: 80%;
        height: calc(100vh - 8rem);
        background-color: var(--white);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
    }
    
    .navbar.active {
        left: 0;
    }
    
    .navbar ul {
        flex-direction: column;
        padding: 3rem;
        align-items: flex-start;
    }
    
    .navbar ul li {
        margin: 1.5rem 0;
    }
    
    .navbar ul li a {
        font-size: 2rem;
    }
    
    .hero {
        margin-top: 8rem;
    }
    
    .slide .content h1 {
        font-size: 4rem;
    }
    
    .slide .content p {
        font-size: 1.8rem;
    }
    
    .section-padding {
        padding: 6rem 0;
    }
    
    .booking-form,
    .contact-form {
        padding: 3rem;
    }
    
    .fixed-buttons {
        right: 2rem;
        bottom: 2rem;
    }
    
    .phone-btn,
    .whatsapp-btn {
        width: 4.5rem;
        height: 4.5rem;
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 3rem;
    }
    
    .slide .content h1 {
        font-size: 3.5rem;
    }
    
    .slide .content p {
        font-size: 1.6rem;
    }
    
    .city-content,
    .booking-form,
    .contact-form {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
.page-hero {
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/about-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.8rem;
    opacity: 0.9;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.about-text p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.bg-light {
    background-color: #f9f9f9;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.mission-card {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.mission-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.mission-card p {
    font-size: 1.5rem;
    color: #666;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
    border: 5px solid var(--primary-color);
}

.team-member h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.testimonial {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.quote {
    position: relative;
    margin-bottom: 2rem;
}

.quote i {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -10px;
}

.quote p {
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.8;
    padding-left: 3rem;
}

.author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.author h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.author p {
    font-size: 1.4rem;
    color: #666;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .page-hero {
        height: 40vh;
    }
    
    .page-hero h1 {
        font-size: 3rem;
    }
}
.page-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}



.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #c19a6b;
}

.info-card {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-card i {
    font-size: 22px;
    color: #c19a6b;
    margin-right: 20px;
    margin-top: 5px;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.info-card p,
.info-card a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.info-card a:hover {
    color: #c19a6b;
}

.contact-form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #c19a6b;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.map-container {
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 250px;
        margin-top: 70px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .map-container {
        height: 350px;
    }
}
.page-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/rooms-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-top: 80px;
}

.rooms-section {
    padding: 60px 0;
}

.room-card {
    display: flex;
    margin-bottom: 60px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

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

.room-details {
    flex: 1;
    padding: 30px;
}

.room-details h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.feature {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    padding: 8px 15px;
    border-radius: 20px;
}

.feature i {
    margin-right: 8px;
    color: #c19a6b;
}

.room-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.amenities-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.amenities-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.amenity {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.amenity i {
    font-size: 1.2rem;
    color: #c19a6b;
    margin-right: 10px;
    width: 25px;
    text-align: center;
}

@media (max-width: 768px) {
    .room-card {
        flex-direction: column;
    }
    
    .room-image {
        min-height: 200px;
    }
    
    .page-hero {
        padding: 80px 20px;
        margin-top: 70px;
    }
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 80px;
}

.mobile-menu li {
    margin-bottom: 20px;
}

.mobile-menu a {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
}

.mobile-menu a.active {
    color: #f8b400;
}

.mobile-menu-btn {
    display: none;
}

@media (max-width: 992px) {
    .navbar {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
    }
}
/* Yatay Oda Kartları */
.room-cards-horizontal {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.room-card-horizontal {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    cursor: pointer;
    background: white;
}
.room-card-horizontal:hover {
    transform: translateY(-5px);
}
.room-image-horizontal {
    flex: 0 0 40%;
}
.room-image-horizontal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.room-info-horizontal {
    flex: 1;
    padding: 20px;
}
.room-info-horizontal h3 {
    margin: 0 0 10px;
    font-size: 1.5rem;
    color: #333;
}
.room-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: #666;
}
.room-meta i {
    margin-right: 5px;
    color: #e67e22;
}
.room-features-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.room-features-horizontal span {
    display: flex;
    align-items: center;
    background: #f8f8f8;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
}
.room-features-horizontal i {
    margin-right: 5px;
    color: #e67e22;
    font-size: 0.9rem;
}