.vintage-members-wallpaper {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 85px;
}

.vintage-members-wallpaper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* Mobile (up to 575px) */
@media (max-width: 575px) {
    .vintage-members-wallpaper {
        height: 200px;
        margin-top: 60px;
        background-attachment: scroll; /* Better mobile performance */
    }
    
    .vintage-members-wallpaper::after {
        background: rgba(0, 0, 0, 0.3); /* Lighter overlay for better visibility */
    }
}

/* Small Tablets (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .vintage-members-wallpaper {
        height: 250px;
        margin-top: 70px;
    }
}

/* Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .vintage-members-wallpaper {
        height: 300px;
        margin-top: 75px;
    }
}

/* Small Desktops (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .vintage-members-wallpaper {
        height: 350px;
    }
}

/* Large Desktops (1200px and up) */
@media (min-width: 1200px) {
    .vintage-members-wallpaper {
        height: 400px; /* Original height */
        background-attachment: fixed; /* Parallax effect */
    }
}

/* Landscape Orientation (mobile) */
@media (max-width: 767px) and (orientation: landscape) {
    .vintage-members-wallpaper {
        height: 180px;
        background-position: center 30%; /* Adjust focal point */
    }
}

/* Short Screens (max-height: 600px) */
@media (max-height: 600px) {
    .vintage-members-wallpaper {
        height: 150px;
    }
}

.vintage-members-gallery {
    background-color: #f5f1e6;
    background-image: url('https://www.transparenttextures.com/patterns/cream-paper.png');
    padding: 60px 20px;
    position: relative;
}

.vintage-members-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #e3b505, #8b6b0a, #e3b505);
}

/* Header Styles */
.vintage-members-header {
    text-align: center;
    margin-bottom: 50px;
}

.vintage-members-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.vintage-members-title span {
    color: #e3b505;
}

.vintage-header-decoration {
    width: 100px;
    height: 3px;
    background: #e3b505;
    margin: 0 auto;
    position: relative;
}

.vintage-header-decoration::before,
.vintage-header-decoration::after {
    content: '✧';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #e3b505;
    font-size: 1.2rem;
}

.vintage-header-decoration::before {
    left: -30px;
}

.vintage-header-decoration::after {
    right: -30px;
}

/* Members Container */
.vintage-members-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Member Cards */
.vintage-member-card {
    width: 250px;
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.vintage-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.vintage-member-frame {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.vintage-member-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.5s ease;
}

.vintage-member-card:hover .vintage-member-image {
    transform: scale(1.05);
}

.vintage-member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
}

.vintage-member-info {
    padding: 20px;
    text-align: center;
    background: white;
}

.vintage-member-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.vintage-member-position {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: #8b6b0a;
    font-style: italic;
}

/* President Special Styling */
.vintage-president {
    border: 3px solid #e3b505;
}

.vintage-president .vintage-member-frame {
    height: 280px;
}

.vintage-president .vintage-member-info {
    background: #f9f5e6;
}

.vintage-member-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border: 2px solid #e3b505;
    z-index: 2;
}

.vintage-member-badge svg {
    width: 20px;
    height: 20px;
}

/* Pagination */
.vintage-members-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.vintage-pagination-btn {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: #1a1a1a;
    background: transparent;
    border: 2px solid #e3b505;
    padding: 8px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vintage-pagination-btn:hover {
    background: #e3b505;
    color: white;
}

.vintage-pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: transparent;
    color: #1a1a1a;
}

.vintage-page-info {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #555;
}

/* Mobile (up to 575px) */
@media (max-width: 575px) {
    .vintage-members-gallery {
        padding: 40px 15px;
    }

    .vintage-members-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .vintage-header-decoration {
        width: 70px;
        height: 2px;
    }

    .vintage-header-decoration::before,
    .vintage-header-decoration::after {
        font-size: 1rem;
        left: -20px;
        right: -20px;
    }

    .vintage-members-container {
        gap: 20px;
    }

    .vintage-member-card {
        width: 100%;
        max-width: 220px;
    }

    .vintage-member-frame {
        height: 220px;
    }

    .vintage-president .vintage-member-frame {
        height: 240px;
    }

    .vintage-member-info {
        padding: 15px;
    }

    .vintage-members-pagination {
        margin-top: 30px;
        gap: 15px;
    }

    .vintage-pagination-btn {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
}

/* Small Tablets (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .vintage-members-title {
        font-size: 2.3rem;
    }

    .vintage-member-card {
        width: 220px;
    }

    .vintage-member-frame {
        height: 220px;
    }

    .vintage-president .vintage-member-frame {
        height: 250px;
    }
}

/* Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .vintage-members-gallery {
        padding: 50px 20px;
    }

    .vintage-members-title {
        font-size: 2.6rem;
    }

    .vintage-members-container {
        gap: 25px;
    }

    .vintage-member-card {
        width: 230px;
    }
}

/* Small Desktops (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .vintage-members-title {
        font-size: 2.8rem;
    }
}

/* Large Desktops (1200px and up) */
@media (min-width: 1200px) {
    /* Original styles apply */
}

/* Landscape Orientation (mobile) */
@media (max-width: 991px) and (orientation: landscape) {
    .vintage-members-container {
        gap: 15px;
    }

    .vintage-member-card {
        width: 200px;
    }

    .vintage-member-frame {
        height: 200px;
    }

    .vintage-president .vintage-member-frame {
        height: 220px;
    }
}

/* Short Screens (max-height: 700px) */
@media (max-height: 700px) {
    .vintage-member-frame {
        height: 180px;
    }

    .vintage-president .vintage-member-frame {
        height: 200px;
    }

    .vintage-member-info {
        padding: 12px;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .vintage-member-badge {
        border-width: 1.5px;
    }
}