/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.text-container {
    width: 66%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.text-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    color: white;
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.typing-container {
    font-family: 'Lato', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: white;
    min-height: 2em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#typing-text {
    font-weight: 700;
}

.cursor {
    display: inline-block;
    width: 2px;
    animation: blink 0.75s infinite;
    margin-left: 2px;
    background-color: #FF006C;
    color: #FF006C;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    color: white;
    background: transparent;
    border: 2px solid white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    max-width: fit-content;
}

.hero-button .arrow {
    transition: transform 0.3s ease, color 0.3s ease;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: transform 0.3s ease;
    z-index: -1;
}

.hero-button:hover {
    color: black;
}

.hero-button:hover::before {
    transform: translateX(100%);
}

.hero-button:hover .arrow {
    transform: translateX(4px);
    color: #FF006C;
}

@media (max-width: 550px) {
    .text-container h1 {
        white-space: normal;
        line-height: 1.1;
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .hero-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}





/* Ticker Section */
.ticker-wrap {
    background: black;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
    position: relative;
}

.ticker {
    display: flex;
    white-space: nowrap;
}

.ticker-content {
    display: flex;
    animation: ticker 40s linear infinite;
    gap: 2rem;
    padding-right: 2rem;
}

.ticker-content span {
    color: white;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.ticker-content span::after {
    content: '•';
    margin-left: 2rem;
    color: #FF006C;
}

.ticker-content span:last-child::after {
    display: none;
}

.ticker-content .highlight {
    color: #FF006C;
    font-weight: 700;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Pause animation on hover */
.ticker-wrap:hover .ticker-content {
    animation-play-state: paused;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .ticker-content span {
        font-size: 1rem;
    }
    
    .ticker-content {
        animation-duration: 30s; /* Slightly faster on mobile */
    }
}













/* Classes Section */
.classes-section {
    position: relative;
    padding: 8rem 0;
    background: white;
    overflow: hidden;
}

/* Background Text */
.bg-text {
    position: absolute;
    right: -5%;
    top: 2%;
    font-size: 20vw;
    font-weight: 700;
    z-index: 1;
    transition: right 0.1s ease-out;
    will-change: right;
}


.bg-text span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.20);
    text-stroke: 1px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Text Content Width Control */
.text-content {
    width: 60%;
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
}

/* Header Content */
.header-content {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 4rem;
    width: 60%;  /* Added width constraint */

}

/* Vertical Line */
.vertical-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: #FF006C;
}

/* Main Title */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.title-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background: #FF006C;
}

/* Empowering Quote */
.empowering-quote {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 2.5rem;
}

/* Button Wrapper */
.button-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 3rem;
}

/* Button Style */
.view-schedule-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    color: #000;
    background: transparent;
    border: 2px solid #000;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-schedule-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #FF006C;
    transition: transform 0.3s ease;
    z-index: -1;
}

.view-schedule-btn:hover {
    color: white;
    border-color: #FF006C;
}

.view-schedule-btn:hover::before {
    transform: translateX(100%);
}

.view-schedule-btn i {
    transition: transform 0.3s ease;
}

.view-schedule-btn:hover i {
    transform: translateX(4px);
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.info-card {
    background: #fafafa;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #000;
    font-family: 'Playfair Display', serif;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Detail Items */
.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.detail-item i {
    color: #FF006C;
    width: 20px;
    margin-top: 4px;
    font-size: 1.1rem;
}

.detail-item span {
    font-size: 1.05rem;
    line-height: 1.5;
}

.location-text p {
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
    line-height: 1.5;
}

/* Transport Info */
.transport-info {
    margin-top: 1.5rem;
}

.transport-info ul {
    list-style: none;
    margin: 0.75rem 0 1rem 2.25rem;
}

.transport-info li {
    margin-bottom: 0.75rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.5;
}

.transport-info li::before {
    content: '•';
    color: #FF006C;
    position: absolute;
    left: -1.25rem;
    font-size: 1.2rem;
}

/* Card Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.info-card:nth-child(2) {
    animation-delay: 0.2s;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-title {
        font-size: 3rem;
    }
    
    .text-content {
        width: 80%;
    }

    .info-card {
        padding: 2rem;
    }
}

@media (max-width: 992px) {
    .empowering-quote {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .classes-section {
        padding: 4rem 0;
    }
    
    .text-content {
        width: 100%;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .bg-text {
        font-size: 30vw;
    }

    .info-card {
        padding: 1.5rem;
    }

    .detail-item span,
    .location-text p,
    .transport-info li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .empowering-quote {
        font-size: 1.1rem;
    }

    .button-wrapper {
        margin-top: 2rem;
    }

    .view-schedule-btn {
        width: 100%;
        justify-content: center;
    }
}
















/* Experience Section */
.experience-section {
    position: relative;
    padding: 8rem 0;
    background: white;
    overflow: hidden;
}

/* Background Text */
.experience-section .bg-text {
    position: absolute;
    left: -5%;  /* Changed from right to left */
    top: -3%;
    font-size: 15vw;
    font-weight: 700;
    z-index: 1;
    transition: left 0.1s ease-out;  /* Changed from right to left */
    will-change: left;  /* Changed from right to left */
}

.experience-section .bg-text span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.2);
    text-stroke: 1px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    display: block;  /* Added to ensure proper positioning */
}

/* Container and Content */
.experience-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.content-wrapper {
    position: relative;
}

/* Header Content */
.header-content {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 4rem;
}

.vertical-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: #FF006C;
}

.text-content {
    width: 60%;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.title-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background: #FF006C;
}

.section-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
}

/* First Timer's Guide */
.first-timer {
    margin-bottom: 5rem;
    padding: 0 2rem;
}

.first-timer h3,
.class-structure h3,
.benefits h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-family: 'Playfair Display', serif;
}

.guide-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.guide-item {
    text-align: center;
    padding: 2rem;
    background: #fafafa;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.guide-item:hover {
    transform: translateY(-5px);
}

.guide-item i {
    font-size: 2.5rem;
    color: #FF006C;
    margin-bottom: 1.5rem;
}

.guide-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.guide-item p {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #555;
}

/* Class Structure Timeline */
.class-structure {
    margin-bottom: 5rem;
    padding: 0 2rem;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: #FF006C;
    z-index: 1;
}

.timeline-item {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
    text-align: center;
}

.time {
    background: #FF006C;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.timeline-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.4;
}

/* Benefits Grid */
.benefits {
    padding: 0 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: #fafafa;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #FF006C;
    margin-bottom: 1.5rem;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #555;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .text-content {
        width: 80%;
    }

    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .guide-items,
    .timeline,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .experience-section {
        padding: 4rem 0;
    }

    .text-content {
        width: 100%;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .first-timer,
    .class-structure,
    .benefits {
        padding: 0 1rem;
    }

    .first-timer h3,
    .class-structure h3,
    .benefits h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .guide-items,
    .timeline,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}







/* Gallery Section */
.gallery-section {
    position: relative;
    padding: 8rem 0;
    background: white;
    overflow: hidden;
}

/* Background Text */
.gallery-section .bg-text {
    position: absolute;
    left: -5%;
    top: 15%;
    font-size: 25vw;
    font-weight: 700;
    z-index: 1;
    transition: left 0.1s ease-out;
    will-change: left;
}

.gallery-section .bg-text span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.05);
    text-stroke: 1px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

/* Container and Content */
.gallery-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Header Content */
.header-content {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 4rem;
    width: 60%;
}

.vertical-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: #FF006C;
}

.text-content {
    width: 100%;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.title-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background: #FF006C;
}

.section-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 3rem;
}

/* Button Styles */
.button-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    color: #000;
    background: transparent;
    border: 2px solid #000;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #FF006C;
    transition: transform 0.3s ease;
    z-index: -1;
}

.view-more-btn:hover {
    color: white;
    border-color: #FF006C;
}

.view-more-btn:hover::before {
    transform: translateX(100%);
}

.view-more-btn i {
    transition: transform 0.3s ease;
}

.view-more-btn:hover i {
    transform: translateX(4px);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
    aspect-ratio: 3/2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Overlay Styles */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0) 100%
    );
    padding: 2rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

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

.overlay .category {
    display: inline-block;
    background: #FF006C;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
}

/* Loading State */
.gallery-item.loading {
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
}

@keyframes shine {
    to {
        background-position-x: -200%;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-content {
        width: 80%;
    }

    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        gap: 1.5rem;
    }

    .overlay {
        padding: 1.5rem;
    }

    .overlay h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 4rem 0;
    }

    .header-content {
        width: 100%;
        padding-left: 1.5rem;
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-intro {
        font-size: 1.1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .overlay {
        opacity: 1;
        padding: 1.25rem;
    }

    .overlay h3 {
        font-size: 1.2rem;
    }

    .overlay .category {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }

    .button-wrapper {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .gallery-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .header-content {
        padding-left: 1rem;
    }

    .gallery-grid {
        gap: 1rem;
    }

    .view-more-btn {
        width: 100%;
        justify-content: center;
    }
}