/* Explore Cape Cod page specific styles */

/* Shared styles from other pages */
.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;
}

/* Explore page specific styles */
.intro, .activity {
    max-width: 700px;
    margin: 40px auto;
    text-align: center;
    padding: 0 20px;
}

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

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

.activity-intro {
    font-style: italic;
}

.activity-link {
    color: #5c8fba;
    text-decoration: none;
    transition: all 0.3s ease;
}

.activity-link:hover {
    color: #1b3d5f;
    text-decoration: underline;
}

.cape-cod-image {
    text-align: center;
    margin: 30px auto;
}

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

/* Sesuit Harbor Photos */
.sesuit-photos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px auto;
    max-width: 900px;
}

.sesuit-photo {
    width: calc(50% - 10px);
    max-width: 450px;
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

/* Special positioning for Lauren's photo to avoid cropping her face */
.sesuit-photos img:nth-child(2) {
    object-position: center 25%;
}

/* Golfing Photos */
.golfing-photos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px auto;
    max-width: 1000px;
}

.golfing-photo {
    width: calc(50% - 10px);
    max-width: 450px;
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

/* Sardinia Photos */
.sardinia-photos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px auto;
    max-width: 1000px;
}

.sardinia-photo {
    width: calc(50% - 10px);
    max-width: 450px;
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .name-small {
        font-size: 35px;
    }
    
    .title {
        font-size: 32px;
    }
    
    .intro-title, .activity-title {
        font-size: 24px;
    }
    
    /* Return divider to original size on mobile */
    .divider-small img {
        max-width: 150px;
    }
    
    /* Mobile view for photos */
    .sesuit-photos,
    .golfing-photos,
    .sardinia-photos {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .sesuit-photo {
        width: 90%;
        max-width: 100%;
        height: 250px;
    }
    
    .golfing-photo,
    .sardinia-photo {
        width: 90%;
        max-width: 100%;
        height: 350px;
    }
}