/**
 * Home Page Specific Styles
 */

/* Video Hero Section */
.video-hero {
    position: relative;
    min-height: calc(100vh - var(--header-height, 80px));
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.video-hero .hero-body {
    position: relative;
    z-index: 2;
}

/* Image Hero Section */
.image-hero {
    position: relative;
    min-height: calc(100vh - var(--header-height, 80px));
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.image-hero .hero-body {
    position: relative;
    z-index: 2;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
}

/* Bounce animation class */
.bounce {
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: #fff;
    display: inline-block;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.scroll-indicator a:hover {
    background-color: rgba(0, 0, 0, 0.5);
    transform: translateY(5px);
    animation-play-state: paused;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Feature Boxes */
.feature-box {
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Project Gallery */
.project-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.project-item .card-image {
    position: relative;
    overflow: hidden;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.project-item:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Testimonials Slider */
.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    padding: 1rem;
}

.testimonial-slide .box {
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-slide .box:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Slider */
.services-slider {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.service-card {
    height: 100%;
    transition: all 0.3s ease;
    margin: 0 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.service-card .card-image {
    overflow: hidden;
}

.service-card .card-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-card .card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card .title {
    margin-bottom: 0.75rem;
    color: #333;
}

.service-card .button {
    margin-top: auto;
    text-transform: uppercase;
    font-weight: bold;
}

/* Service Features */
.service-features {
    margin-bottom: 1.5rem;
}

.service-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.service-feature:last-child {
    margin-bottom: 0;
}

.feature-icon {
    flex-shrink: 0;
    margin-right: 0.75rem;
    color: #ffc107; /* Warning color for Bulma */
    font-size: 1rem;
    padding-top: 0.15rem;
}

.feature-text {
    font-size: 0.95rem;
    color: #4a4a4a;
}

/* Slick slider customization for services */
.services-slider .slick-dots {
    bottom: -40px;
}

.services-slider .slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color, #00d1b2);
}

.services-slider .slick-prev,
.services-slider .slick-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color, #00d1b2);
    border-radius: 50%;
    z-index: 1;
}

.services-slider .slick-prev {
    left: -50px;
}

.services-slider .slick-next {
    right: -50px;
}

.services-slider .slick-prev:before,
.services-slider .slick-next:before {
    font-size: 20px;
    opacity: 1;
}

.services-slider .slick-prev:hover,
.services-slider .slick-next:hover {
    background-color: #333;
}

@media screen and (max-width: 768px) {
    .services-slider .slick-prev {
        left: 10px;
    }
    
    .services-slider .slick-next {
        right: 10px;
    }
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.process-timeline:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #dbdbdb;
    z-index: 0;
}

.process-step {
    position: relative;
    padding: 2rem;
    text-align: center;
    z-index: 1;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color, #00d1b2);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    margin-bottom: 0rem!important;
}

/* Instagram Feed */
.insta-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.insta-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.insta-image:hover .overlay {
    opacity: 1;
}

.insta-image .icon {
    color: white;
}

/* Quote Form */
#quote-form .box {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Showcase Section removed */

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .video-hero {
        min-height: calc(100vh - var(--header-height, 80px));
    }
    
    .process-timeline:before {
        display: none;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
    
    /* Services showcase styles removed */
    
    .section-title {
        margin-left: 0;
        text-align: center;
        font-size: 2.5rem;
    }
    
    /* Services showcase styles removed */
    
    .service-item {
        margin-bottom: 1rem;
    }
    
    /* Services showcase styles removed */
}

/* Services Hero Section */
.services-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
    overflow: hidden;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../screenshot/services-poster.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.services-hero {
    background-color: #ffe8cc!important;
}

.services-hero .container {
    position: relative;
    z-index: 2;
}

.services-hero .service-card {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
}

.services-hero .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background-color: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 193, 7, 0.4);
}

.services-hero .service-card .card-content {
    padding: 2rem;
}

.services-hero .service-feature {
    margin-bottom: 1rem;
}

.services-hero .feature-icon {
    color: #ffc107;
    font-size: 1.1rem;
    margin-right: 1rem;
}

.services-hero .feature-text {
    font-size: 1rem;
    line-height: 1.5;
}

.services-hero .button.is-warning.is-outlined {
    border-color: #ffc107;
    color: #ffc107;
    margin-top: 1rem;
}

.services-hero .button.is-warning.is-outlined:hover {
    background-color: #ffc107;
    color: #000;
}

@media screen and (max-width: 768px) {
    .services-hero {
        padding: 3rem 0;
    }
    
    .services-hero .service-card {
        margin-bottom: 2rem;
    }
} 