/*
 Theme Name:     Woodmart Child
 Theme URI:      http://example.com/woodmart-child
 Description:    Thème enfant de Woodmart.
 Author:         Votre Nom
 Author URI:     http://example.com
 Template:       woodmart
 Version:        1.0.0
*/

/* @import url("../woodmart/style.css"); */

/* ============================================
   Template Page Accueil Personnalisée
   ============================================ */

.custom-home-page {
    width: 100%;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    width: 100%;
    position: relative;
    margin-bottom: 0;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-carousel-wrapper {
    position: relative;
}

.hero-carousel {
    position: relative;
    width: 100%;
}

.hero-slide {
    display: none;
    position: relative;
    width: 100%;
}

.hero-slide.active {
    display: block;
}

.hero-slide.fade {
    animation: fadeIn 0.5s ease-in-out;
}

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

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.hero-link:hover {
    opacity: 0.8;
}

.hero-carousel-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.carousel-prev,
.carousel-next {
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
    transition: opacity 0.3s;
}

.carousel-prev:hover,
.carousel-next:hover {
    opacity: 0.7;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: white;
}

/* Category Banners Section */
.category-banners-section {
    width: 100%;
    padding: 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.category-item {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.category-link {
    display: block;
    position: relative;
    width: 100%;
    text-decoration: none;
}

.category-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-item:hover .category-image {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    color: white;
}

.category-title {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-link-text {
    font-size: 14px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* #STRADILOOKS Section */
.stradilooks-section {
    background-color: #000;
    padding: 60px 20px;
    width: 100%;
}

.stradilooks-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.stradilooks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.stradilooks-item {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Aspect ratio 1:1 */
    overflow: hidden;
}

.stradilooks-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stradilooks-content {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stradilooks-title {
    font-size: 48px;
    font-weight: bold;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stradilooks-text {
    font-size: 16px;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.stradilooks-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    transition: opacity 0.3s;
}

.stradilooks-link:hover {
    opacity: 0.8;
}

/* App Promotion Section */
.app-promotion-section {
    background-color: #000;
    padding: 60px 20px;
    width: 100%;
}

.app-promotion-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-promotion-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.app-promotion-title {
    font-size: 32px;
    font-weight: bold;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.app-qr-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.qr-code {
    width: 150px;
    height: 150px;
    background: white;
    padding: 10px;
}

.qr-text {
    font-size: 14px;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.app-screenshots {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-screenshots-title {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.app-screenshots-grid {
    display: flex;
    flex-direction: row;   
    gap: 15px;
}

.app-screenshot-item {
    width: 100%;
    max-width: 200px;
}

.app-screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
.page-template-page-za-home-page .main-page-wrapper{
    padding: 0 !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stradilooks-container,
    .app-promotion-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .category-title {
        font-size: 28px;
    }

    .stradilooks-title {
        font-size: 36px;
    }

    .app-promotion-title {
        font-size: 24px;
    }
}

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

    .hero-overlay {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .category-title {
        font-size: 24px;
    }

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

    .stradilooks-title {
        font-size: 28px;
    }

    .app-promotion-title {
        font-size: 20px;
    }

    .app-screenshots-grid {
        flex-direction: row;
        overflow-x: auto;
    }

    .app-screenshot-item {
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .hero-overlay {
        padding: 20px;
    }

    .hero-title {
        font-size: 24px;
    }

    .category-overlay {
        padding: 20px;
    }

    .category-title {
        font-size: 20px;
    }

    .stradilooks-section,
    .app-promotion-section {
        padding: 40px 15px;
    }

    .stradilooks-title {
        font-size: 24px;
    }

    .app-promotion-title {
        font-size: 18px;
    }
}