/* Scroll-triggered Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Animation classes for scroll triggering */
.animate-on-scroll {
    opacity: 0;
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
    opacity: 1;
}

.animate-on-scroll.animate-fade-in-up.animated {
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-on-scroll.animate-fade-in-left.animated {
    animation: fadeInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-on-scroll.animate-fade-in-right.animated {
    animation: fadeInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-on-scroll.animate-scale-in.animated {
    animation: scaleIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-on-scroll.animate-slide-in-bottom.animated {
    animation: slideInFromBottom 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-on-scroll.animate-slide-in-top.animated {
    animation: slideInFromTop 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Staggered animation delays */
.animate-delay-1 {
    animation-delay: 0.15s;
}

.animate-delay-2 {
    animation-delay: 0.3s;
}

.animate-delay-3 {
    animation-delay: 0.45s;
}

.animate-delay-4 {
    animation-delay: 0.6s;
}

.animate-delay-5 {
    animation-delay: 0.75s;
}

.animate-delay-6 {
    animation-delay: 0.9s;
}

.animate-delay-7 {
    animation-delay: 1.05s;
}

.animate-delay-8 {
    animation-delay: 1.2s;
}

/* Hero Header Styles */
.hero-header {
    position: relative;
    width: 100%;
    height: 80vh;
    background: var(--color-background);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 44px;
}

/* Hero Header Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.hero-text-section {
    position: relative;
    z-index: 2;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 0 10%;
    text-align: left;
}

.hero-name {
    color: var(--color-text-primary);
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
}

.hero-title {
    color: var(--color-text-primary);
    font-size: 7.5rem;
    font-weight: 400;
    margin: 15px 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 0.85;
    position: relative;
    z-index: 2;
    max-width: 90%;
}

.hero-subtitle {
    color: var(--color-text-primary);
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
}

.hero-images-section {
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-portrait {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

 .portrait-img {
     width: auto;
     height: auto;
     max-width: 70%;
     max-height: 70%;
     object-fit: contain;
     border-radius: 20px;
     transition: transform 0.3s ease;
 }

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

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 5.5rem;
    }
    
    .hero-text-section {
        width: 50%;
    }
    
    .hero-images-section {
        width: 50%;
    }
}

@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    
    .hero-text-section {
        width: 100%;
        height: 50%;
    }
    
    .hero-images-section {
        width: 100%;
        height: 50%;
    }
    
    .hero-text-content {
        padding: 0 5%;
        align-items: center;
    }
    
    .hero-title {
        font-size: 4rem;
        text-align: center;
    }
    
    .hero-portrait {
        width: 100%;
        height: 100%;
    }
    
    .portrait-img {
        object-fit: contain;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-name {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-text-section {
        height: 40%;
    }
    
    .hero-images-section {
        height: 60%;
    }
}

/* Featured Work Section */
.featured-work-section {
    position: relative;
    width: 100%;
    height: 90vh;
    background: var(--color-background);
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

/* Left Container - Title and Name */
.featured-left {
    position: relative;
    width: 33.33%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
}

.featured-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 0 0 0 20px;
    text-align: left;
}

.featured-title {
    color: var(--color-text-primary);
    font-size: 3.5rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.featured-name {
    color: var(--color-text-primary);
    font-size: 2rem;
    font-weight: 400;
    margin: 10px 0 0 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Middle Container - Portrait */
.featured-middle {
    position: relative;
    width: 33.33%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-portrait {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

 .portrait-featured {
     width: auto;
     height: auto;
     max-width: 80%;
     max-height: 80%;
     object-fit: contain;
     border-radius: 15px;
 }

/* Right Container - Landscape and Text */
.featured-right {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.featured-landscape {
    position: relative;
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

 .landscape-featured {
     width: auto;
     height: auto;
     max-width: 90%;
     max-height: 100%;
     object-fit: contain;
     border-radius: 15px;
 }

.featured-quote {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.featured-quote p {
    color: var(--color-text-primary);
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
}

.featured-details {
    width: 100%;
    text-align: center;
}

.featured-details p {
    color: var(--color-text-primary);
    font-size: 0.9rem;
    font-weight: 400;
    margin: 5px 0;
    line-height: 1.4;
}

.featured-details strong {
    font-weight: 500;
}

/* Responsive Design for Featured Section */
@media (max-width: 1200px) {
    .featured-title {
        font-size: 3rem;
    }
    
    .featured-name {
        font-size: 1.6rem;
    }
    
    .featured-quote p {
        font-size: 1rem;
    }
    
    .featured-details p {
        font-size: 0.8rem;
    }
}

@media (max-width: 900px) {
    .featured-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    
    .featured-left {
        width: 100%;
        height: 25%;
        padding-left: 5px;
    }
    
    .featured-middle {
        width: 100%;
        height: 35%;
    }
    
    .featured-right {
        width: 100%;
        height: 40%;
        padding: 3%;
    }
    
    .featured-text-content {
        padding: 0 5%;
        align-items: center;
        text-align: center;
    }
    
    .featured-title {
        font-size: 2.5rem;
    }
    
    .featured-name {
        font-size: 1.4rem;
    }
    
    .featured-landscape {
        height: 50%;
    }
    
    .featured-quote p {
        font-size: 0.9rem;
    }
    
    .featured-details p {
        font-size: 0.7rem;
    }
}

@media (max-width: 600px) {
    .featured-title {
        font-size: 2rem;
    }
    
    .featured-name {
        font-size: 1.2rem;
    }
    
    .featured-left {
        height: 20%;
        padding-left: 5px;
    }
    
    .featured-middle {
        height: 40%;
    }
    
    .featured-right {
        height: 40%;
    }
    
    .featured-quote p {
        font-size: 0.8rem;
    }
    
    .featured-details p {
        font-size: 0.6rem;
    }
}
 
 /* My Timeline Section */
 .timeline-section {
     position: relative;
     width: 100%;
     height: 80vh;
     background: var(--color-background);
     display: flex;
     align-items: center;
     justify-content: center;
 }
 
 .timeline-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
 
 /* Top Container - Title */
 .timeline-title-container {
    position: relative;
    width: 100%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
 .timeline-title {
     color: var(--color-text-primary);
     font-size: 3rem;
     font-weight: 400;
     margin: 0;
     letter-spacing: 3px;
     text-transform: uppercase;
     text-align: center;
 }
 
 /* Bottom Container - Timeline Entries */
 .timeline-entries {
    position: relative;
    width: 100%;
    height: 80%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 30px;
    box-sizing: border-box;
}
 
 /* Individual Timeline Entry */
 .timeline-entry {
    position: relative;
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px 0;
    box-sizing: border-box;
}
 
 .timeline-year {
     color: var(--color-text-primary);
     font-size: 1.2rem;
     font-weight: 400;
     margin: 0 0 10px 0;
     letter-spacing: 1px;
     text-transform: uppercase;
 }
 
 .timeline-entry-title {
     color: var(--color-text-primary);
     font-size: 1.8rem;
     font-weight: 500;
     margin: 0 0 20px 0;
     letter-spacing: 1px;
     line-height: 1.2;
 }
 
 .timeline-image {
     position: relative;
     width: 100%;
     height: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 20px;
     overflow: visible;
     padding: 10px;
 }
 
 .timeline-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 10px;
 }
 
 .timeline-caption {
     width: 100%;
     text-align: left;
 }
 
 .timeline-caption p {
     color: var(--color-text-primary);
     font-size: 1rem;
     font-weight: 400;
     margin: 0;
     line-height: 1.5;
     font-style: italic;
 }
 
 /* Responsive Design for Timeline Section */
 @media (max-width: 1200px) {
     .timeline-title {
         font-size: 2.5rem;
     }
     
     .timeline-entry-title {
         font-size: 1.5rem;
     }
     
     .timeline-caption p {
         font-size: 0.9rem;
     }
 }
 
 @media (max-width: 900px) {
    .timeline-section {
        height: auto;
        min-height: 100vh;
    }
     
     .timeline-container {
         height: auto;
         justify-content: flex-start;
     }
     
         .timeline-title-container {
        height: auto;
    }
     
     .timeline-entries {
         flex-direction: column;
         justify-content: flex-start;
         padding: 0 3%;
         height: auto;
     }
     
         .timeline-entry {
        width: 100%;
        height: auto;
        margin-bottom: 40px;
    }
     
     .timeline-title {
         font-size: 2rem;
     }
     
     .timeline-entry-title {
         font-size: 1.3rem;
     }
     
     .timeline-image {
         height: 200px;
     }
     
     .timeline-caption p {
         font-size: 0.8rem;
     }
 }
 
 @media (max-width: 600px) {
    
    .timeline-entries {
        padding: 0 5%;
    }
    
        .timeline-entry {
       margin-bottom: 30px;
   }
    
    .timeline-title {
        font-size: 1.5rem;
    }
    
    .timeline-entry-title {
        font-size: 1.1rem;
    }
    
    .timeline-year {
        font-size: 1rem;
    }
    
    .timeline-image {
        height: auto;
        min-height: 200px;
        max-height: 300px;
        overflow: hidden;
        border-radius: 10px;
    }
    
    .timeline-img {
        width: 100%;
        height: auto;
        max-height: 100%;
        object-fit: contain;
        border-radius: 10px;
    }
    
    .timeline-caption p {
        font-size: 0.7rem;
    }
}

 /* Paradox Section */
 .paradox-section {
     position: relative;
     width: 100%;
     height: 75vh;
     display: flex;
     align-items: center;
     justify-content: center;
     background: var(--color-background);
     overflow: hidden;
     border: none;
     margin: 0;
     box-sizing: border-box;
     border-radius: 20px;
     padding: 5px;
 }

.paradox-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    box-sizing: border-box;
}

/* Left Container - Title and Description */
.paradox-left {
    position: relative;
    width: 45%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paradox-text-content {
    position: relative;
    width: 100%;
    text-align: left;
    padding: 0 20px;
    box-sizing: border-box;
}

.paradox-title {
    color: var(--color-text-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 40px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.1;
}

.paradox-description {
    color: var(--color-text-primary);
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

.paradox-description p {
    margin: 0 0 20px 0;
    color: var(--color-text-primary);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

/* Right Container - Picture and Location */
.paradox-right {
    position: relative;
    width: 45%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

 .paradox-image {
     position: relative;
     width: 100%;
     height: auto;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 20px;
     overflow: visible;
     padding: 10px;
 }

 .paradox-img {
     width: 100%;
     height: 100%;
     object-fit: contain;
     border-radius: 15px;
     border: none;
 }

.paradox-location {
    width: 100%;
    text-align: center;
}

.paradox-location p {
    color: var(--color-text-primary);
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Responsive Design for Paradox Section */
@media (max-width: 1200px) {
    .paradox-title {
        font-size: 2.2rem;
    }
    
    .paradox-description p {
        font-size: 1rem;
    }
}

@media (max-width: 900px) {
    .paradox-section {
        height: auto;
        min-height: 100vh;
        padding: 40px 0;
    }
    
    .paradox-container {
        height: auto;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0 3%;
    }
    
    .paradox-left {
        width: 100%;
        height: auto;
        margin-bottom: 40px;
    }
    
    .paradox-right {
        width: 100%;
        height: auto;
    }
    
    .paradox-text-content {
        padding: 0;
    }
    
    .paradox-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .paradox-description p {
        font-size: 0.95rem;
    }
    
    .paradox-image {
        height: 300px;
    }
    
    .paradox-location p {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .paradox-section {
        padding: 20px 0;
    }
    
    .paradox-container {
        padding: 0 5%;
    }
    
    .paradox-left {
        margin-bottom: 30px;
    }
    
    .paradox-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .paradox-description p {
        font-size: 0.85rem;
    }
    
    .paradox-image {
        height: 200px;
        overflow: hidden;
        border-radius: 15px;
    }
    
    .paradox-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
    }
    
         .paradox-location p {
         font-size: 0.8rem;
     }
 }