.vintage-journey-wallpaper {
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 80px;
}

.vintage-journey-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-journey-wallpaper {
        height: 120px;
        margin-top: 60px;
        background-size: cover; /* Better mobile coverage */
        background-attachment: scroll; /* Better performance */
    }
    
    .vintage-journey-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-journey-wallpaper {
        height: 150px;
        margin-top: 65px;
    }
}

/* Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .vintage-journey-wallpaper {
        height: 180px;
        margin-top: 70px;
    }
}

/* Small Desktops (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .vintage-journey-wallpaper {
        height: 200px;
    }
}

/* Large Desktops (1200px and up) */
@media (min-width: 1200px) {
    .vintage-journey-wallpaper {
        background-attachment: fixed; /* Parallax effect */
    }
}

/* Landscape Orientation (mobile) */
@media (max-width: 767px) and (orientation: landscape) {
    .vintage-journey-wallpaper {
        height: 100px;
        background-position: center 30%; /* Adjust focal point */
    }
}

/* Short Screens (max-height: 600px) */
@media (max-height: 600px) {
    .vintage-journey-wallpaper {
        height: 80px;
    }
}

.vintage-journey {
    background-color: #f5f1e6;
    background-image: url('https://www.transparenttextures.com/patterns/cream-paper.png');
    padding: 60px 0;
    position: relative;
}

.vintage-journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #e3b505, #8b6b0a, #e3b505);
}

.vintage-journey-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Timeline Styling */
.vintage-timeline {
    position: relative;
    padding-left: 50px;
}

.vintage-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 3px;
    background: #e3b505;
}

.vintage-timeline-item {
    position: relative;
    margin-bottom: 60px;
    background: white;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #e3b505;
}

.vintage-timeline-item::before {
    content: '';
    position: absolute;
    top: 30px;
    left: -40px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e3b505;
    border: 4px solid #1a1a1a;
}

.vintage-timeline-header {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.vintage-timeline-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin: 0;
}

.vintage-timeline-date {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: white;
    background: #8b6b0a;
    padding: 5px 15px;
    border-radius: 20px;
}

.vintage-timeline-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.vintage-timeline-image {
    margin-top: 20px;
}

/* Image Styling */
.vintage-image-frame {
    position: relative;
    border: 8px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
}

.vintage-image-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.vintage-image {
    width: 100%;
    height: auto;
    display: block;
}

.vintage-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 107, 10, 0.1);
    mix-blend-mode: multiply;
    transition: all 0.3s ease;
}

.vintage-image-frame:hover .vintage-image-overlay {
    background: rgba(139, 107, 10, 0.05);
}

/* Accomplishments List */
.vintage-accomplishments {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.vintage-accomplishments li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: #555;
}

.vintage-accomplishments li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #e3b505;
}

/* Mobile (up to 575px) */
@media (max-width: 575px) {
    .vintage-journey {
        padding: 40px 0;
    }
    
    .vintage-timeline {
        padding-left: 30px;
    }
    
    .vintage-timeline::before {
        left: 10px;
        width: 2px;
    }
    
    .vintage-timeline-item {
        padding: 20px;
        margin-bottom: 40px;
        border-left-width: 3px;
    }
    
    .vintage-timeline-item::before {
        left: -30px;
        width: 16px;
        height: 16px;
        border-width: 3px;
    }
    
    .vintage-timeline-title {
        font-size: 1.5rem;
    }
    
    .vintage-timeline-text {
        font-size: 1.1rem;
    }
    
    .vintage-image-frame {
        border-width: 5px;
    }
}

/* Small Tablets (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .vintage-journey-content {
        padding: 0 15px;
    }
    
    .vintage-timeline {
        padding-left: 40px;
    }
    
    .vintage-timeline-item {
        padding: 25px;
    }
    
    .vintage-timeline-title {
        font-size: 1.6rem;
    }
}

/* Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .vintage-timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .vintage-timeline-date {
        margin-top: 5px;
    }
}

/* Large Desktops (1200px and up) */
@media (min-width: 1200px) {
    .vintage-journey-content {
        max-width: 1100px;
    }
    
    .vintage-timeline-item {
        padding: 35px;
    }
}

/* Short Screens (max-height: 700px) */
@media (max-height: 700px) {
    .vintage-timeline-item {
        margin-bottom: 40px;
        padding: 20px;
    }
}

/* Landscape Orientation (mobile) */
@media (max-width: 991px) and (orientation: landscape) {
    .vintage-timeline-item {
        margin-bottom: 30px;
    }
    
    .vintage-timeline-text {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

@media (max-width: 767px) {
    .vintage-about-column {
        min-width: 0;
        width: 300px;
    }
    .vintage-image-frame {
        border: 5px solid white; /* Reduced border thickness */
        box-shadow: 0 3px 10px rgba(0,0,0,0.15); /* Softer shadow */
        margin: 0 -10px; /* Negative margin to compensate for padding */
        margin-left: -50px;
    }
}
