* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background-color: #fefae8;
}

/* Header Section */
.header {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 2.5rem;
}

.header h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Navigation */
.navigation {
    background-color: #000;
    border-radius: 50px;
    margin: -30px auto 0;
    max-width: 800px;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 50px;
}

.navigation a {
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 300;
    padding: 0 40px;
    transition: opacity 0.3s;
}

.navigation a:hover {
    opacity: 0.7;
}

.navigation .separator {
    color: #fff;
    font-size: 2rem;
    font-weight: 300;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 40px;
    text-align: center;
}

/* Logo Section */
.logo-section {
    margin-bottom: 30px;
}

.logo-placeholder {
    width: 300px;
    height: 150px;
    margin: 0 auto;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.logo-placeholder img {
    max-height: 100%;
    max-width: 100%;
}

/* Info Section */
.info-section {
    margin-bottom: 40px;
}

.info-section h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 15px;
    color: #000;
}

.info-section p {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    color: #000;
    margin-bottom: 10px;
}

/* Gallery Section */
.gallery {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.gallery-item {
    flex: 1;
    min-width: 280px;
}

.gallery-circle {
    width: 350px;
    height: 350px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.gallery-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Rooms Grid */
.rooms-grid {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.room-card {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.room-image {
    width: 350px;
    height: 350px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 auto 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-card h3 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 15px;
    color: #000;
}

.room-price {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #000;
}

.room-amenities {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
    color: #000;
}

/* Breakfast Section */
.breakfast-section {
    margin: 60px 0 40px;
}

.breakfast-section h3 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #000;
}

/* CTA Button */
.cta-section {
    margin: 60px 0;
}

.cta-button {
    display: inline-block;
    background-color: #8B1A1A;
    color: #fff;
    font-size: 2rem;
    font-weight: 300;
    padding: 20px 60px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #6B1414;
}

/* Contact Section */
.contact-section {
    margin: 80px 0;
}

.contact-title {
    font-size: 3rem;
    font-weight: 400;
    color: #8B1A1A;
    margin-bottom: 40px;
}

.contact-phone {
    font-size: 3.5rem;
    font-weight: 300;
    color: #8B1A1A;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

.contact-phone a {
    color: #8B1A1A;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-phone a:hover {
    opacity: 0.7;
}

.contact-email {
    font-size: 2.5rem;
    font-weight: 300;
    color: #8B1A1A;
}

.contact-email a {
    color: #8B1A1A;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-email a:hover {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header h1 {
        font-size: 2.5rem;
    }

    .header h2 {
        font-size: 1.8rem;
    }

    .navigation {
        padding: 20px 30px;
    }

    .navigation a {
        font-size: 1.5rem;
        padding: 0 20px;
    }

    .gallery-circle {
        width: 250px;
        height: 250px;
    }

    .room-image {
        width: 280px;
        height: 280px;
    }

    .rooms-grid {
        gap: 40px;
    }

    .address-section h3 {
        font-size: 2rem;
    }

    .address-section p {
        font-size: 1.5rem;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .contact-phone {
        font-size: 2.8rem;
    }

    .contact-email {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }

    .header h2 {
        font-size: 1.5rem;
    }

    .navigation {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        border-radius: 30px;
    }

    .navigation .separator {
        display: none;
    }

    .navigation a {
        font-size: 1.3rem;
        padding: 10px 0;
    }

    .page-title h2 {
        font-size: 1.8rem;
    }

    .page-title p {
        font-size: 1.3rem;
    }

    .rooms-grid {
        flex-direction: column;
        align-items: center;
    }

    .room-image {
        width: 250px;
        height: 250px;
    }

    .room-card h3 {
        font-size: 1.8rem;
    }

    .room-price {
        font-size: 2rem;
    }

    .room-amenities {
        font-size: 1.3rem;
    }

    .breakfast-section h3 {
        font-size: 1.8rem;
    }

    .cta-button {
        font-size: 1.5rem;
        padding: 15px 40px;
    }

    .address-section h3 {
        font-size: 1.6rem;
    }

    .address-section p {
        font-size: 1.2rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-phone {
        font-size: 2rem;
    }

    .contact-email {
        font-size: 1.4rem;
        word-break: break-word;
    }
}