/* Animation page specific styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    background-color: #867D5C;
    color: white;
    height: 600vh;
    /* Add scroll snap for discrete scrolling */
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

body::-webkit-scrollbar {
    display: none;
}

.scroll-container {
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    /* Add scroll snap for discrete scrolling */
    scroll-snap-type: y mandatory;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.scroll-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.section {
    position: absolute;
    width: 100%;
    height: 100%;
    /* Add scroll snap points for discrete sections */
    scroll-snap-align: start;
}

/* Add virtual scroll snap points for better discrete behavior */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    pointer-events: none;
}

.first-section {
    z-index: 10000;
    scroll-snap-align: start;
}

.image-a {
    position: absolute;
    left: -100%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 50%;
}

.title-a {
    position: absolute;
    left: -100%;
    /* top: 30%; */
    top: 15%;
    font-size: 3rem;
    max-width: 50%;
}

.description-a {
    position: absolute;
    right: -100%;
    /* top: 40%; */
    top: 25%;
    /* max-width: 40%; */
    font-size: 1.2rem;

    max-width: 43%;
    /* font-size: 1.2rem; */
    line-height: 29px;
}

.image {
    width: 100%;
    height: 100%;
}

.image-b {
    position: absolute;
    right: 0;
    bottom: -100%;
    max-width: 50%;
}

.description-b {
    position: absolute;
    right: -100%;
    /* top: 10%; */
    top: 12%;
    /* max-width: 40%; */
    max-width: 45%;
    color: #333;
    font-size: 1.2rem;
}

.info-text {
    position: absolute;
    left: -100%;
    /* bottom: 30%; */
    bottom: 8%;
    max-width: 30%;
    color: #4B4F5A;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: right;
}

.image-c {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 60%;
    visibility: hidden;
    z-index: 1;
}

.title-c {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2.5rem;
    text-align: center;
    visibility: hidden;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.third-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.featured-image-container {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

.featured-image {
    width: 90%;
    max-width: 1200px;
    height: auto;
    transform: scale(1.5);
    transform-origin: center center;
    transition: transform 0.3s ease;
    z-index: 11;
}

.bg-wipe {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: -1;
}

.scroll-instruction {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 100;
}

.scroll-instruction p {
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 1px;
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 10px;
}

.scrollbar {
    display: none;
}

.mouse {
    width: 4px;
    height: 10px;
    background-color: white;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

/* @keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    30% {
        opacity: 1;
    }
    60% {
        opacity: 0;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
} */

.towers-section {
    scroll-snap-align: start;
}

/* Navigation Arrow Styles */
.nav-arrow {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    transform: scale(1.1);
}

.arrow-circle {
    width: 60px;
    height: 60px;
    background-color: #87805d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.arrow-circle:hover {
    background-color: #9a9273;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.arrow-icon {
    width: 24px;
    height: 24px;
    color: white;
    transition: transform 0.3s ease;
}

@media (max-width: 1600px) {
    .title-a {
        font-size: 45px;
    }
    .description-a {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .image-c {
        max-width: 90%;
    }
    
    .nav-arrow {
        bottom: 20px;
        left: 20px;
    }
    
    .arrow-circle {
        width: 50px;
        height: 50px;
    }
    
    .arrow-icon {
        width: 20px;
        height: 20px;
    }
} 