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

body {
    font-family: 'Arial', sans-serif;
    background-color: white;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 0;
    animation: fadeIn 0.8s ease-in forwards;
}

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

body.homepage-active {
    overflow: hidden;
    height: 100vh;
}

/* Navigation Styles */
.navbar {
    background-color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.nav-brand h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #000;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    gap: 50px;
    margin-left: auto;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 300;
    transition: color 0.3s ease;
    position: relative;
    cursor: pointer;
}

.nav-link:hover::after,
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff0000;
}

.nav-link.active {
    color: #ff0000;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    z-index: 999;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav .nav-link {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

/* Page System */
.page {
    display: none;
    min-height: 100vh;
    width: 100%;
    position: relative;
    z-index: 1;
}

.page.active {
    display: block;
}

.page:not(#homepage) {
    background-color: #f5f5f5;
    overflow-y: auto;
}

/* Homepage - Fullscreen Slider */
#homepage {
    background-color: white;
    margin-top: 80px;
    height: calc(100vh - 80px);
    overflow: hidden;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
}

#homepage.active {
    display: block;
}



.fullscreen-slider {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slider-content {
    display: flex;
    max-width: 1400px;
    width: 100%;
    height: 100%;
    align-items: flex-start;
    justify-content: center;
    padding: 0px 40px 40px;
    gap: 80px;
    overflow: hidden;
}

.slider-image-container {
    flex: 1;
    max-width: 700px;
    height: 70vh;
    max-height: 80vh;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.slider-image-container::after {
    content: 'Click to view series';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.slider-image-container:hover::after {
    opacity: 1;
}

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

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-slide.active {
    opacity: 1;
}

.slider-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.slider-text {
    flex: 0 0 450px;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    text-align: left;
    padding-top: 20px;
}

.section-indicator {
    background-color: white;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    align-self: flex-start;
    border: 1px solid #ddd;
}

.slider-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #000;
    letter-spacing: 3px;
    transition: color 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
}

.slider-title:hover {
    color: #ff0000;
}

.slider-location {
    font-size: 24px;
    color: #666;
    margin-bottom: 50px;
    font-weight: 300;
}

.slider-navigation {
    display: flex;
    gap: 30px;
}

.slider-arrow {
    background: none;
    border: 2px solid #333;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    padding: 15px 20px;
    border-radius: 50px;
    min-width: 80px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background-color: #333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Page Headers */
.page-header {
    padding: 120px 40px 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.back-btn {
    background: none;
    border: 2px solid #333;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.back-btn:hover {
    background-color: #333;
    color: white;
}

.page-header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Series Page */
.series-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 60px;
}

.series-preview {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.series-preview:hover {
    transform: translateY(-10px);
}

.preview-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.series-preview:hover .preview-image img {
    transform: scale(1.05);
}

.preview-info {
    padding: 30px;
}

.preview-info h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #000;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.preview-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
}

.photo-count {
    font-size: 14px;
    color: #ff0000;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Film Page */
.film-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.film-photo {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.film-photo:hover {
    transform: translateY(-5px);
}

.film-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.photo-info {
    padding: 20px;
}

.photo-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #000;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.photo-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.collection-indicator {
    font-size: 12px;
    color: #ff0000;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Video Page */
.video-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
}

.video-item {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.video-item:hover {
    transform: translateY(-10px);
}

.video-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    background-color: #ff0000;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 25px;
}

.video-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #000;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.video-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.video-description {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

/* Contact Page */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px 80px;
    text-align: center;
}

.contact-info h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #000;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.email-link {
    display: inline-block;
    font-size: 24px;
    color: #ff0000;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 40px;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #333;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    padding: 12px 24px;
    border: 2px solid #333;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #333;
    color: white;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .navbar {
        padding: 15px 30px;
    }
    
    #homepage {
        height: calc(100vh - 80px);
        overflow: hidden;
    }
    
    .slider-content {
        gap: 40px;
        padding: 30px;
        overflow: hidden;
    }
    
    .slider-text {
        padding-top: 8vh;
    }
    
    .slider-title {
        font-size: 36px;
    }
    
    .slider-location {
        font-size: 20px;
    }
    
    .series-grid, .film-grid, .video-grid {
        padding: 0 30px 60px;
        gap: 40px;
    }
    
    .page-header {
        padding: 120px 30px 40px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-brand h1 {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    #homepage {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        height: calc(100vh - 80px);
        overflow: hidden;
    }
    
    .fullscreen-slider {
        height: 100%;
        width: 100%;
        overflow: visible;
    }

    
    .slider-content {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px 20px;
        text-align: center;
        height: 100%;
        justify-content: flex-start;
        align-items: center;
        overflow: visible;
    }
    
    .slider-image-container {
        max-width: 100%;
        height: 50vh;
        max-height: 60vh;
        flex: none;
        min-height: 320px;
        margin-bottom: 20px;
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f0f0f0;
    }
    
    .slider-images {
        width: 100%;
        height: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slider-slide {
        position: static !important;
        width: 100% !important;
        height: 100% !important;
        opacity: 1 !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        transition: none !important;
        cursor: default !important;
    }
    
    .slider-slide:not(:first-child) {
        display: none !important;
    }
    
    /* Ensure only first slide shows on mobile */
    .slider-slide.active:not(:first-child) {
        display: none !important;
    }
    
    .slider-slide img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block !important;
    }
    
    .slider-text {
        flex: none;
        padding-left: 0;
        height: auto;
        max-height: 40vh;
        overflow: hidden;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .section-indicator {
        align-self: center;
        margin-bottom: 20px;
    }
    
    .slider-title {
        font-size: 28px;
        margin-bottom: 15px;
        letter-spacing: 2px;
        text-align: center;
    }
    
    .slider-location {
        font-size: 18px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .slider-navigation {
        justify-content: center;
        gap: 20px;
    }
    
    .slider-arrow {
        font-size: 16px;
        padding: 12px 16px;
        min-width: 60px;
        height: 40px;
    }
    
    .page-header {
        padding: 100px 20px 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .page-header h1 {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .series-grid {
        grid-template-columns: 1fr;
        padding: 0 20px 60px;
        gap: 30px;
    }
    
    .film-grid {
        grid-template-columns: 1fr;
        padding: 0 20px 60px;
        gap: 25px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        padding: 0 20px 60px;
        gap: 30px;
    }
    
    .contact-content {
        padding: 0 20px 60px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .social-links a {
        width: 200px;
        text-align: center;
    }
}

/* Photo Carousel Modal */
.carousel-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.carousel-modal.active {
    display: block;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 20px;
}

.carousel-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-close:hover {
    color: #ff0000;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(255, 0, 0, 0.8);
    border-color: #ff0000;
    transform: translateY(-50%) scale(1.1);
}

.carousel-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.carousel-info {
    margin-top: 20px;
    text-align: center;
    color: white;
}

.carousel-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.carousel-counter {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* Mobile Carousel Styles */
@media (max-width: 768px) {
    .carousel-container {
        padding: 80px 15px 15px;
    }
    
    .carousel-close {
        top: 15px;
        right: 20px;
        font-size: 35px;
        width: 45px;
        height: 45px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
    
    .carousel-image {
        max-height: 70vh;
    }
    
    .carousel-title {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .carousel-counter {
        font-size: 14px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .slider-content {
        padding: 10px 15px 15px;
        gap: 15px;
    }
    
    .slider-image-container {
        height: 40vh;
        min-height: 250px;
        max-height: 45vh;
    }
    
    .section-indicator {
        align-self: center;
        margin-bottom: 15px;
    }
    
    .slider-title {
        font-size: 24px;
        letter-spacing: 1px;
        text-align: center;
    }
    
    .slider-location {
        font-size: 16px;
        text-align: center;
    }
    
    .series-grid {
        grid-template-columns: 1fr;
    }
    
    .film-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
} 