/* OldSkool About Section Styles */
.oldskool-about-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.oldskool-container {
    max-width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.oldskool-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 20;
}

/* Background Text */
.bg-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
}

.bg-text-title {
    font-size: 16rem;
    font-weight: 900;
    line-height: 1;
    margin: 0;
    opacity: 0.1;
    color: #1c8097;
    text-align: center;
}

.text-outline-dark {
    -webkit-text-stroke: 2px #1c8097;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Content Styles */
.oldskool-content {
    position: relative;
    z-index: 20;
}

.title-small {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b7280;
    margin-bottom: 1rem;
    font-weight: 500;
}

.oldskool-heading {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #1f2937;
}

.oldskool-heading .text-outline-dark {
    -webkit-text-stroke: 2px #1c8097;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.oldskool-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.oldskool-lead a {
    color: #1c8097;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.oldskool-lead a:hover {
    color: #1a7085;
    text-decoration: underline;
}

.oldskool-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #1c8097;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

.oldskool-btn:hover {
    background: #1a7085;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(28, 128, 151, 0.3);
}

/* Image Gallery Styles */
.oldskool-images {
    position: relative;
    z-index: 20;
    padding-right: 0;
}

.oldskool-picture {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
    position: relative;
}

.oldskool-picture img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.oldskool-picture:hover img {
    transform: scale(1.05);
}

/* Image positioning */
.image-1 {
    width: 50%;
    position: relative;
    z-index: 10;
}

.image-2 {
    width: 60%;
    margin-left: auto;
    margin-right: 2rem;
    margin-top: -2.5rem;
    position: relative;
    z-index: 20;
}

.image-3 {
    width: 50%;
    margin-right: 2rem;
    margin-top: -1.75rem;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .oldskool-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .bg-text-title {
        font-size: 4rem;
    }
    
    .oldskool-heading {
        font-size: 2.5rem;
    }
    
    .oldskool-lead {
        font-size: 1.125rem;
    }
    
    .oldskool-images {
        order: -1;
        padding-right: 1rem;
    }
    
    .image-1,
    .image-2,
    .image-3 {
        width: 80%;
        margin: 0 auto 1.5rem auto;
        position: relative;
        z-index: 10;
    }
    
    .image-2 {
        margin-top: 0;
    }
    
    .image-3 {
        position: relative;
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .oldskool-about-section {
        padding: 3rem 0;
    }
    
    .bg-text-title {
        font-size: 3rem;
    }
    
    .oldskool-heading {
        font-size: 2rem;
    }
    
    .oldskool-lead {
        font-size: 1rem;
    }
    
    .oldskool-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* Animation on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}
