/* Services Page Specific Styles */
/* Uses hhbg3 (top) and hhbg4 (bottom) with standard down-scroll parallax */

/* ===== PARALLAX SECTIONS ===== */
#parallax-services-1 {
    background-image: url('../Images/Hhbg3.jpg');
    min-height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

#parallax-services-2 {
    background-image: url('../Images/Hhbg4.jpg');
    min-height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* ===== CTA BUTTON ===== */
.cta-button {
    display: inline-block;
    background-color: #FFFFFF;
    color: #142238;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid #FFFFFF;
}

.cta-button:hover {
    background-color: transparent;
    color: #FFFFFF;
}

/* ===== ACTIVE NAV LINK ===== */
.nav-link.active {
    color: #142238;
    font-weight: 700;
}

/* ===== DUAL IMAGE LAYOUT ===== */
.dual-image-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 95%;
    margin: 0 auto;
}

.dual-image-wrapper .carousel-image-wrapper {
    width: 48%;
    flex-shrink: 0;
}

@media screen and (max-width: 768px) {
    .dual-image-wrapper {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .dual-image-wrapper .carousel-image-wrapper {
        width: 90%;
    }
}

/* ===== FULL-WIDTH CARDS ===== */
#graphicDesignCard,
#freelanceWritingCard,
#webDesignCard,
#clothingCard,
.logo-divider {
    width: 100%;
}

/* Logos and Book Covers share a row (47% width each from global styles) */
#logosCard,
#bookCoversCard {
    width: 47%;
}

.logo-divider {
    display: block;
    order: 999;
}

/* ===== CONSISTENT CARD FONT SIZING ===== */
/* Inherit from global styles-clean.css */
.content-card > h2 {
    font-size: 1.2em;
}

.content-card > p {
    font-size: 0.88rem;
}

/* ===== CLOTHING CAROUSEL HEIGHT ===== */
#clothingCarousel .carousel-slides {
    min-height: 300px;
}

#clothingCarousel .carousel-image-wrapper {
    max-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#clothingCarousel .carousel-image {
    max-height: 250px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Second slide images - zoom out (smaller/contained) */
#clothingCarousel .carousel-slide:nth-child(2) .carousel-image-wrapper {
    max-height: 220px;
}

#clothingCarousel .carousel-slide:nth-child(2) .carousel-image {
    max-height: 200px;
    width: auto;
    max-width: 90%;
    object-fit: contain;
}

@media screen and (max-width: 768px) {
    #clothingCarousel .carousel-slides {
        min-height: 200px;
    }
    
    #clothingCarousel .carousel-image-wrapper {
        max-height: 180px;
    }
    
    #clothingCarousel .carousel-image {
        max-height: 180px;
    }
    
    /* Full-width cards on mobile */
    #logosCard,
    #bookCoversCard {
        width: 100%;
    }
}
