/* Accommodation page specific styles */

/* Shared styles from events.css */
.names-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px auto;
}

.name-small {
    font-family: 'BodegaScript', cursive;
    font-size: 45px;
    color: #1b3d5f;
    font-weight: normal;
    margin: 0 15px;
}

.oyster-icon {
    width: 40px;
    height: auto;
    margin: 0 15px;
}

.border-line.thin {
    border-top: 1px solid #1b3d5f;
    border-bottom: 1px solid #1b3d5f;
    height: 3px;
    margin: 15px 0;
}

.page-title {
    text-align: center;
    margin: 40px auto 30px;
}

.title {
    font-family: 'Baskerville Book BQ', serif;
    font-size: 38px;
    color: #1b3d5f;
    font-weight: normal;
    margin-bottom: 15px;
}

.divider-small {
    text-align: center;
    margin: 30px auto;
}

.divider-small img {
    max-width: 225px;
    height: auto;
}

.button-container {
    margin: 30px auto;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #a7c5e1;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: #1b3d5f;
}

/* Hotel specific styles */
.hotel {
    max-width: 800px;
    margin: 60px auto;
    text-align: center;
    padding: 0 20px;
}

.hotel-image {
    margin-bottom: 20px;
}

.hotel-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border: 1px solid #e8e8e8;
}

.hotel-name {
    font-family: 'Baskerville Book BQ', serif;
    font-size: 28px;
    color: #1b3d5f;
    font-weight: normal;
    font-style: italic;
    margin-bottom: 20px;
}

.hotel-description {
    max-width: 600px;
    margin: 0 auto;
}

.hotel-description p {
    font-family: 'Baskerville Book BQ', serif;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .name-small {
        font-size: 35px;
    }
    
    .title {
        font-size: 32px;
    }
    
    .hotel-name {
        font-size: 24px;
    }
    
    /* Return divider to original size on mobile */
    .divider-small img {
        max-width: 150px;
    }
}