/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Top Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    padding: 1rem 0;
    opacity: 0;
    transform: translateY(-100%);
    animation: slideDown 1s ease forwards 3s;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    text-transform: uppercase;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: rgb(137, 184, 220);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    background: none;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 2;
    padding-right: 2rem;
}

.hero-slogan {
    font-family: 'Dancing Script', cursive;
    color: white;
    font-size: 4.5rem;
    text-align: right;
    line-height: 1.6;
    padding: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

/* Specific font sizes for first three lines */
.slogan-line:nth-child(1) .typing-text,
.slogan-line:nth-child(2) .typing-text,
.slogan-line:nth-child(3) .typing-text {
    font-size: 2.5rem;
}

.slogan-line {
    display: flex;
    position: relative;
}

.typing-text {
    position: relative;
    white-space: nowrap;
    display: inline-block;
}

.typing-text span {
    opacity: 0;
    position: relative;
    display: inline-block;
}

/* First line animations - "Dancing is my DNA" (17 characters) */
.slogan-line:nth-child(1) .typing-text span:nth-child(1) { animation: fadeIn 0.1s forwards 5.0s; }
.slogan-line:nth-child(1) .typing-text span:nth-child(2) { animation: fadeIn 0.1s forwards 5.1s; }
.slogan-line:nth-child(1) .typing-text span:nth-child(3) { animation: fadeIn 0.1s forwards 5.2s; }
.slogan-line:nth-child(1) .typing-text span:nth-child(4) { animation: fadeIn 0.1s forwards 5.3s; }
.slogan-line:nth-child(1) .typing-text span:nth-child(5) { animation: fadeIn 0.1s forwards 5.4s; }
.slogan-line:nth-child(1) .typing-text span:nth-child(6) { animation: fadeIn 0.1s forwards 5.5s; }
.slogan-line:nth-child(1) .typing-text span:nth-child(7) { animation: fadeIn 0.1s forwards 5.6s; }
.slogan-line:nth-child(1) .typing-text span:nth-child(8) { animation: fadeIn 0.1s forwards 5.7s; }
.slogan-line:nth-child(1) .typing-text span:nth-child(9) { animation: fadeIn 0.1s forwards 5.8s; }
.slogan-line:nth-child(1) .typing-text span:nth-child(10) { animation: fadeIn 0.1s forwards 5.9s; }
.slogan-line:nth-child(1) .typing-text span:nth-child(11) { animation: fadeIn 0.1s forwards 6.0s; }
.slogan-line:nth-child(1) .typing-text span:nth-child(12) { animation: fadeIn 0.1s forwards 6.1s; }
.slogan-line:nth-child(1) .typing-text span:nth-child(13) { animation: fadeIn 0.1s forwards 6.2s; }
.slogan-line:nth-child(1) .typing-text span:nth-child(14) { animation: fadeIn 0.1s forwards 6.3s; }
.slogan-line:nth-child(1) .typing-text span:nth-child(15) { animation: fadeIn 0.1s forwards 6.4s; }
.slogan-line:nth-child(1) .typing-text span:nth-child(16) { animation: fadeIn 0.1s forwards 6.5s; }
.slogan-line:nth-child(1) .typing-text span:nth-child(17) { animation: fadeIn 0.1s forwards 6.6s; }

/* Second line animations - "Singing is my blood" (19 characters) */
.slogan-line:nth-child(2) .typing-text span:nth-child(1) { animation: fadeIn 0.1s forwards 7.0s; }
.slogan-line:nth-child(2) .typing-text span:nth-child(2) { animation: fadeIn 0.1s forwards 7.1s; }
.slogan-line:nth-child(2) .typing-text span:nth-child(3) { animation: fadeIn 0.1s forwards 7.2s; }
.slogan-line:nth-child(2) .typing-text span:nth-child(4) { animation: fadeIn 0.1s forwards 7.3s; }
.slogan-line:nth-child(2) .typing-text span:nth-child(5) { animation: fadeIn 0.1s forwards 7.4s; }
.slogan-line:nth-child(2) .typing-text span:nth-child(6) { animation: fadeIn 0.1s forwards 7.5s; }
.slogan-line:nth-child(2) .typing-text span:nth-child(7) { animation: fadeIn 0.1s forwards 7.6s; }
.slogan-line:nth-child(2) .typing-text span:nth-child(8) { animation: fadeIn 0.1s forwards 7.7s; }
.slogan-line:nth-child(2) .typing-text span:nth-child(9) { animation: fadeIn 0.1s forwards 7.8s; }
.slogan-line:nth-child(2) .typing-text span:nth-child(10) { animation: fadeIn 0.1s forwards 7.9s; }
.slogan-line:nth-child(2) .typing-text span:nth-child(11) { animation: fadeIn 0.1s forwards 8.0s; }
.slogan-line:nth-child(2) .typing-text span:nth-child(12) { animation: fadeIn 0.1s forwards 8.1s; }
.slogan-line:nth-child(2) .typing-text span:nth-child(13) { animation: fadeIn 0.1s forwards 8.2s; }
.slogan-line:nth-child(2) .typing-text span:nth-child(14) { animation: fadeIn 0.1s forwards 8.3s; }
.slogan-line:nth-child(2) .typing-text span:nth-child(15) { animation: fadeIn 0.1s forwards 8.4s; }
.slogan-line:nth-child(2) .typing-text span:nth-child(16) { animation: fadeIn 0.1s forwards 8.5s; }
.slogan-line:nth-child(2) .typing-text span:nth-child(17) { animation: fadeIn 0.1s forwards 8.6s; }
.slogan-line:nth-child(2) .typing-text span:nth-child(18) { animation: fadeIn 0.1s forwards 8.7s; }
.slogan-line:nth-child(2) .typing-text span:nth-child(19) { animation: fadeIn 0.1s forwards 8.8s; }

/* Third line animations - "Acting is my spirit" (19 characters) */
.slogan-line:nth-child(3) .typing-text span:nth-child(1) { animation: fadeIn 0.1s forwards 9.0s; }
.slogan-line:nth-child(3) .typing-text span:nth-child(2) { animation: fadeIn 0.1s forwards 9.1s; }
.slogan-line:nth-child(3) .typing-text span:nth-child(3) { animation: fadeIn 0.1s forwards 9.2s; }
.slogan-line:nth-child(3) .typing-text span:nth-child(4) { animation: fadeIn 0.1s forwards 9.3s; }
.slogan-line:nth-child(3) .typing-text span:nth-child(5) { animation: fadeIn 0.1s forwards 9.4s; }
.slogan-line:nth-child(3) .typing-text span:nth-child(6) { animation: fadeIn 0.1s forwards 9.5s; }
.slogan-line:nth-child(3) .typing-text span:nth-child(7) { animation: fadeIn 0.1s forwards 9.6s; }
.slogan-line:nth-child(3) .typing-text span:nth-child(8) { animation: fadeIn 0.1s forwards 9.7s; }
.slogan-line:nth-child(3) .typing-text span:nth-child(9) { animation: fadeIn 0.1s forwards 9.8s; }
.slogan-line:nth-child(3) .typing-text span:nth-child(10) { animation: fadeIn 0.1s forwards 9.9s; }
.slogan-line:nth-child(3) .typing-text span:nth-child(11) { animation: fadeIn 0.1s forwards 10.0s; }
.slogan-line:nth-child(3) .typing-text span:nth-child(12) { animation: fadeIn 0.1s forwards 10.1s; }
.slogan-line:nth-child(3) .typing-text span:nth-child(13) { animation: fadeIn 0.1s forwards 10.2s; }
.slogan-line:nth-child(3) .typing-text span:nth-child(14) { animation: fadeIn 0.1s forwards 10.3s; }
.slogan-line:nth-child(3) .typing-text span:nth-child(15) { animation: fadeIn 0.1s forwards 10.4s; }
.slogan-line:nth-child(3) .typing-text span:nth-child(16) { animation: fadeIn 0.1s forwards 10.5s; }
.slogan-line:nth-child(3) .typing-text span:nth-child(17) { animation: fadeIn 0.1s forwards 10.6s; }
.slogan-line:nth-child(3) .typing-text span:nth-child(18) { animation: fadeIn 0.1s forwards 10.7s; }
.slogan-line:nth-child(3) .typing-text span:nth-child(19) { animation: fadeIn 0.1s forwards 10.8s; }

/* Fourth line animations - "I am Lara" (9 characters including spaces) */
.slogan-line:nth-child(4) .typing-text span:nth-child(1) { animation: fadeIn 0.1s forwards 12.0s; }
.slogan-line:nth-child(4) .typing-text span:nth-child(2) { animation: fadeIn 0.1s forwards 12.1s; }
.slogan-line:nth-child(4) .typing-text span:nth-child(3) { animation: fadeIn 0.1s forwards 12.2s; }
.slogan-line:nth-child(4) .typing-text span:nth-child(4) { animation: fadeIn 0.1s forwards 12.3s; }
.slogan-line:nth-child(4) .typing-text span:nth-child(5) { animation: fadeIn 0.1s forwards 12.4s; }
.slogan-line:nth-child(4) .typing-text span:nth-child(6) { animation: fadeIn 0.1s forwards 12.5s; }
.slogan-line:nth-child(4) .typing-text span:nth-child(7) { animation: fadeIn 0.1s forwards 12.6s; }
.slogan-line:nth-child(4) .typing-text span:nth-child(8) { animation: fadeIn 0.1s forwards 12.7s; }
.slogan-line:nth-child(4) .typing-text span:nth-child(9) { animation: fadeIn 0.1s forwards 12.8s; }

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero-overlay {
        padding-right: 2rem;
    }

    .hero-slogan {
        font-size: 2.5rem;
        padding: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 3;
}

/* Initial button state */
.hero-buttons .hero-btn {
    margin-bottom: 40px;
    padding: 1.5rem 4rem;
    font-size: 1.4rem;
    text-decoration: none;
    color: rgb(137, 184, 220);
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(137, 184, 220, 0.3);
    border-radius: 15px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0 !important;
    visibility: hidden;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
    letter-spacing: 2px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Button hover effects */
.hero-buttons .hero-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    transform: translateY(-5px) scale(1.02);
    border-color: rgb(137, 184, 220);
    box-shadow: 0 8px 25px rgba(137, 184, 220, 0.4);
    letter-spacing: 4px;
}

/* Button after element for shine effect */
.hero-buttons .hero-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(137, 184, 220, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.hero-buttons .hero-btn:hover::after {
    left: 100%;
}

/* Button before element for border glow */
.hero-buttons .hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(137, 184, 220, 0.1);
    filter: blur(5px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    border-radius: 15px;
}

.hero-buttons .hero-btn:hover::before {
    opacity: 1;
}

/* Shown state overrides */
.hero-buttons.show .hero-btn {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
}

/* Sequential delays with fancy timing */
.hero-buttons.show .hero-btn:nth-child(1) {
    transition-delay: 0.2s;
}

.hero-buttons.show .hero-btn:nth-child(2) {
    transition-delay: 0.4s;
}

.hero-buttons.show .hero-btn:nth-child(3) {
    transition-delay: 0.6s;
}

/* Button text animation */
.hero-buttons .hero-btn span {
    display: inline-block;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.hero-buttons .hero-btn:hover span {
    transform: translateY(-2px);
}

/* Add pulse animation to buttons */
@keyframes buttonPulse {
    0% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 5px 30px rgba(137, 184, 220, 0.5);
    }
    100% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
}

.hero-buttons.show .hero-btn {
    animation: buttonPulse 2s infinite;
}

.hero-buttons .hero-btn:hover {
    animation: none;
}

/* Debug outline to see button containers */
.hero-buttons {
    padding: 10px;
}

.hero-btn {
    border: 2px solid yellow;
}

/* Features Section */
.features-section {
    display: flex;
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.feature-item {
    width: calc(100% / 3);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.feature-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.feature-image-alt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 80% 80%;
}

.feature-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: none;
    color: white;
    z-index: 2;
}

.feature-content h2 {
    font-size: 2.5rem;
    color: rgb(137, 184, 220);
    white-space: nowrap;
    position: absolute;
    align-items: center;
    bottom: -10%;
    left: 1rem;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left top;
    opacity: 1;
    z-index: 5;
    letter-spacing: 3px;
    text-transform: uppercase;
    pointer-events: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8),
                 0 0 20px rgba(255, 255, 255, 0.3);
}

.feature-text-content {
    position: absolute;
    bottom: 1%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.feature-item:hover .feature-text-content {
    opacity: 1;
    visibility: visible;
}

.feature-text-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: white;
    margin: 0;
    max-width: 600px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8),
                 0 0 15px rgba(255, 255, 255, 0.2);
}

.feature-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: rgb(137, 184, 220);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 15px rgba(137, 184, 220, 0.4);
}

.feature-btn:hover {
    background-color: white;
    color: rgb(137, 184, 220);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    text-shadow: none;
}

/* Add dark overlay on hover */
.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.feature-item:hover::before {
    opacity: 1;
}

/* Timeline Section */
.timeline-section {
    background: rgba(10, 10, 10, 1);
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-section h2 {
    color: rgb(137, 184, 220);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    width: 100%;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: rgb(137, 184, 220);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    height: 100%;
}

.timeline-item {
    position: relative;
    width: 100%;
    padding: 30px 0;
    display: flex;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-pin {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(137, 184, 220,1.0);
    border-radius: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.timeline-line {
    position: absolute;
    width: 70px;
    height: 2px;
    background: rgb(137, 184, 220);
    top: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-line {
    right: 50%;
}

.timeline-item:nth-child(even) .timeline-line {
    left: 50%;
}

.timeline-content {
    width: 45%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    gap: 15px;
    align-items: center;
}

.timeline-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}

.text-content {
    flex: 1;
    min-width: 0;
}

.text-content h3 {
    color: rgb(137, 184, 220);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.text-content p {
    color: white;
    line-height: 1.4;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        padding-left: 70px;
        padding-right: 25px;
        justify-content: flex-start !important;
    }

    .timeline-pin {
        left: 31px !important;
        transform: translate(-50%, -50%) !important;
    }

    .timeline-line {
        width: calc(100% - 80px);
        left: 70px !important;
        margin: 0 !important;
    }

    .timeline-content {
        width: 100%;
        text-align: left;
    }

    .timeline-image {
        height: 150px;
    }
}

/* Hover effects */
.timeline-item:hover .timeline-pin {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 15px rgba(137, 184, 220, 0.5);
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 0 20px rgba(137, 184, 220, 0.2);
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 2rem;
    background: #f9f9f9;
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1;
    display: block;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
}

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

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

.gallery-description {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-description {
    transform: translateY(0);
}

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

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Footer Section */
.footer-section {
    padding: 3rem 2rem;
    background: #222;
    color: white;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.social-link {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ddd;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-section {
        flex-direction: column;
        height: auto;
    }

    .feature-item {
        width: 100%;
        height: 33.333vh;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        text-transform: uppercase;
        gap: 1rem;
    }

    .hero-overlay {
        left: 0;
        align-items: center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 90px;
        padding-right: 30px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-content::after {
        left: -40px;
        right: auto;
    }

    .timeline-content::before {
        left: -20px;
        right: auto;
    }

    .feature-content h2 {
        font-size: 1.8rem;
        left: -1rem;
    }

    .feature-content p {
        font-size: 1rem;
    }

    .feature-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .feature-item {
        height: 50vh;
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Timeline pins and connectors */
.timeline-pin {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgb(137, 184, 220);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    border: 4px solid #000;
    box-shadow: 0 0 0 3px rgba(137, 184, 220, 0.3);
    transition: all 0.5s ease;
}

.timeline-item:nth-child(odd) .timeline-pin {
    right:49%;
}

.timeline-item:nth-child(even) .timeline-pin {
    left: 49%;
}

/* Hover effects for pins */
.timeline:hover .timeline-pin {
    background: rgba(137, 184, 220, 1);
    box-shadow: 0 0 0 3px rgba(137, 184, 220, 0.1);
}

.timeline:hover .timeline-item:hover .timeline-pin {
    background: rgb(137, 184, 220);
    box-shadow: 0 0 0 3px rgba(137, 184, 220, 1),
                0 0 20px rgba(137, 184, 220, 0.3);
    transform: translateY(-50%) scale(1.2);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .timeline-pin {
        left: auto !important;
        right: auto !important;
    }

    .timeline-line {
        left: -40px !important;
        right: auto !important;
        width: 40px !important;
    }
}

.unmute-button {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 3;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unmute-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.unmute-button.muted .fa-volume-up {
    display: none;
}

.unmute-button.muted::before {
    font-family: "Font Awesome 6 Free";
    content: "\f6a9";
    font-weight: 900;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.lightbox.active {
    display: block;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.lightbox-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    padding: 10px;
    font-size: 1.1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 15px;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 0, 0, 0.8);
    color: rgb(137, 184, 220);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 3rem;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
    }
    
    .lightbox-close {
        font-size: 2rem;
    }
} 