/* ShoeARizz Landing Page Styles */
* {
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/herobanner.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,123,255,0.4);
    color: white;
    text-decoration: none;
}

/* Section Styling */
.featured-carousel-section {
    background: #f8f9fa;
}

.products-section {
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Carousel - Single Image, Full Width */
.featured-carousel-img {
    height: 70vh;
    object-fit: cover;
    width: 100%;
}

#featuredCarousel .carousel-control-prev,
#featuredCarousel .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    transition: all 0.3s ease;
}

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

#featuredCarousel .carousel-control-prev {
    left: 30px;
}

#featuredCarousel .carousel-control-next {
    right: 30px;
}

#featuredCarousel .carousel-indicators {
    bottom: 30px;
}

#featuredCarousel .carousel-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 8px;
    background: rgba(255,255,255,0.5);
    border: 2px solid white;
    transition: all 0.3s ease;
}

#featuredCarousel .carousel-indicators button.active {
    background: white;
    transform: scale(1.2);
}

/* Products Carousel - Fading Animation */
#productsCarousel .carousel-item {
    transition: opacity 0.8s ease-in-out;
}

.products-control {
    width: 50px;
    height: 50px;
    background: rgba(0,123,255,0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    transition: all 0.3s ease;
}

.products-control:hover {
    background: rgba(0,123,255,1);
    transform: translateY(-50%) scale(1.1);
}

.products-indicators {
    bottom: -50px;
}

.products-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background: rgba(0,123,255,0.3);
    border: none;
    transition: all 0.3s ease;
}

.products-indicators button.active {
    background: #007bff;
    transform: scale(1.3);
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: none;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #007bff;
    margin: 0;
}

/* Parallax Section - Only this section has parallax effect */
.parallax-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/parallax.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    will-change: transform;
}

.parallax-content {
    z-index: 2;
    position: relative;
}

.parallax-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.parallax-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

/* Video Section Styles */
.video-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.responsive-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.video-container:hover .responsive-video {
    transform: scale(1.02);
}

.video-controls {
    transition: opacity 0.3s ease;
}

.video-container:hover .video-controls {
    opacity: 1;
}

/* Video Loading State */
.responsive-video {
    background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%),
                linear-gradient(-45deg, #f0f0f0 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, #f0f0f0 75%),
                linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.responsive-video[poster] {
    background: none;
}

/* Video Play Button Styles */
#videoPlayBtn {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9) !important;
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: #333;
    transition: all 0.3s ease;
}

#videoPlayBtn:hover {
    background: rgba(255, 255, 255, 1) !important;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Lifestyle Cards */
.lifestyle-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.lifestyle-card:hover {
    transform: scale(1.05);
}

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

.lifestyle-card:hover .lifestyle-image {
    transform: scale(1.1);
}

.lifestyle-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    text-align: center;
}

.lifestyle-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.lifestyle-overlay p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

/* Contact Form */
.contact-form .form-control {
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: 1rem;
    margin-bottom: 15px;
}

.contact-form .form-control:focus {
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

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

    .parallax-content h2 {
        font-size: 2.5rem;
    }

    .parallax-section,
    .hero-section {
        background-attachment: scroll;
    }

    .featured-carousel-img {
        height: 50vh;
    }

    #featuredCarousel .carousel-control-prev,
    #featuredCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    #featuredCarousel .carousel-control-prev {
        left: 15px;
    }

    #featuredCarousel .carousel-control-next {
        right: 15px;
    }

    .products-control {
        width: 40px;
        height: 40px;
    }

    .lifestyle-card {
        height: 300px;
        margin-bottom: 20px;
    }

    /* Video Section Mobile Styles */
    .video-container {
        margin: 0 -15px;
        border-radius: 0;
    }

    .responsive-video {
        border-radius: 0;
        max-height: 50vh;
    }

    .video-controls button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* Ensure video doesn't cause horizontal scroll on mobile */
    .video-container {
        overflow: hidden;
    }

    /* Better touch targets for mobile */
    .responsive-video {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
}

/* Additional responsive breakpoints for video */
@media (max-width: 576px) {
    .responsive-video {
        max-height: 40vh;
    }

    .video-controls button {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .responsive-video {
        max-height: 60vh;
    }
}

