/* Events page specific styles */

/* Names header with oyster icon */
.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;
}

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

/* Page title section */
.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: 15px auto 40px;
}

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

/* Event sections */
.event {
    max-width: 800px;
    margin: 60px auto;
    text-align: center;
    padding: 0 20px;
}

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

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

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

.event-date {
    font-family: 'Baskerville Book BQ', serif;
    font-size: 16px;
    margin-bottom: 5px;
}

.event-time {
    font-family: 'Baskerville Book BQ', serif;
    font-size: 16px;
    margin-bottom: 5px;
}

.event-location {
    font-family: 'Baskerville Book BQ', serif;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.event-address {
    font-family: 'Baskerville Book BQ', serif;
    font-size: 16px;
    margin-bottom: 20px;
}

.event-description {
    margin: 20px auto;
}

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

/* Button styles */
.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;
}

.map-button {
    margin: 60px auto;
}

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