/* ============================================ */
/* COMPLETE CSS FOR 3-COLUMN LAYOUT
   Classes: comingsoonrow, comingsooncol1, comingsooncol2, comingsooncol3
   Left column: Green background | Center: Your content | Right column: Red background
   UPDATED: Small devices - wider side columns, narrower center content
/* ============================================ */

/* ============================================ */
/* DESKTOP LAYOUT - Reduced left/right column sizes */
/* ============================================ */

/* Make the row a flex container */
.comingsoonrow {
    display: flex !important;
    flex-wrap: wrap !important;
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Make all columns stretch to full height */
.comingsoonrow .wpb_column {
    display: flex !important;
    flex-direction: column !important;
    float: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Make column inner stretch too */
.comingsoonrow .wpb_column .vc_column-inner {
    flex-grow: 1 !important;
    height: 100% !important;
}

/* LEFT COLUMN - Green background full height (REDUCED SIZE) */
.comingsooncol1 {
    background-color: #2F6B47 !important;
    width: 60px !important;
    max-width: 60px !important;
    min-width: 40px !important;
}

.comingsooncol1 .vc_column-inner {
    padding: 0 !important;
}

/* Hide any content in left column */
.comingsooncol1 .wpb_wrapper {
    display: none;
}

/* CENTER COLUMN - White background with your content */
.comingsooncol2 {
    background-color: #ffffff !important;
    width: calc(100% - 120px) !important;
}

/* RIGHT COLUMN - Red background full height (REDUCED SIZE) */
.comingsooncol3 {
    background-color: #B22234 !important;
    width: 60px !important;
    max-width: 60px !important;
    min-width: 40px !important;
}

.comingsooncol3 .vc_column-inner {
    padding: 0 !important;
}

/* Hide any content in right column */
.comingsooncol3 .wpb_wrapper {
    display: none;
}

/* ============================================ */
/* LARGE DESKTOP (1200px - 1600px) */
/* ============================================ */

@media (min-width: 1200px) and (max-width: 1599px) {
    .comingsooncol1 {
        width: 50px !important;
        max-width: 50px !important;
        min-width: 40px !important;
    }
    
    .comingsooncol3 {
        width: 50px !important;
        max-width: 50px !important;
        min-width: 40px !important;
    }
    
    .comingsooncol2 {
        width: calc(100% - 100px) !important;
    }
}

/* ============================================ */
/* VERY LARGE DESKTOP (1600px and above) */
/* ============================================ */

@media (min-width: 1600px) {
    .comingsooncol1 {
        width: 80px !important;
        max-width: 80px !important;
        min-width: 60px !important;
    }
    
    .comingsooncol3 {
        width: 80px !important;
        max-width: 80px !important;
        min-width: 60px !important;
    }
    
    .comingsooncol2 {
        width: calc(100% - 160px) !important;
    }
}

/* ============================================ */
/* TABLET DEVICES (768px - 1024px) */
/* ============================================ */

@media (max-width: 1024px) and (min-width: 768px) {
    .comingsooncol1 {
        width: 35px !important;
        max-width: 35px !important;
        min-width: 30px !important;
    }
    
    .comingsooncol3 {
        width: 35px !important;
        max-width: 35px !important;
        min-width: 30px !important;
    }
    
    .comingsooncol2 {
        width: calc(100% - 70px) !important;
    }
    
    .comingsooncol2 .vc_column-inner {
        padding: 40px 30px !important;
    }
}

/* ============================================ */
/* MOBILE LAYOUT - INCREASED side columns width, REDUCED center content */
/* ============================================ */

@media (max-width: 767px) {
    
    /* Keep row as flex row (don't stack vertically) */
    .comingsoonrow {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }
    
    /* LEFT COLUMN - Green stays on left, WIDER for mobile */
    .comingsooncol1 {
        width: 55px !important;
        min-width: 55px !important;
        max-width: 55px !important;
        flex-shrink: 0 !important;
        background-color: #2F6B47 !important;
    }
    
    /* CENTER COLUMN - Takes remaining space (REDUCED due to wider side columns) */
    .comingsooncol2 {
        width: calc(100% - 110px) !important;
        flex-shrink: 1 !important;
        background-color: #ffffff !important;
    }
    
    /* Adjust center column padding for mobile - REDUCED padding for smaller content area */
    .comingsooncol2 .vc_column-inner {
        padding: 20px 12px !important;
    }
    
    /* RIGHT COLUMN - Red stays on right, WIDER for mobile */
    .comingsooncol3 {
        width: 55px !important;
        min-width: 55px !important;
        max-width: 55px !important;
        flex-shrink: 0 !important;
        background-color: #B22234 !important;
    }
    
    /* Ensure side columns have no padding */
    .comingsooncol1 .vc_column-inner,
    .comingsooncol3 .vc_column-inner {
        padding: 0 !important;
    }
    
    /* Hide side column content */
    .comingsooncol1 .wpb_wrapper,
    .comingsooncol3 .wpb_wrapper {
        display: none !important;
    }
}

/* ============================================ */
/* SMALL PHONES (481px - 600px) - Slightly wider side columns */
/* ============================================ */

@media (min-width: 481px) and (max-width: 600px) {
    .comingsooncol1 {
        width: 50px !important;
        min-width: 50px !important;
        max-width: 50px !important;
    }
    
    .comingsooncol3 {
        width: 50px !important;
        min-width: 50px !important;
        max-width: 50px !important;
    }
    
    .comingsooncol2 {
        width: calc(100% - 100px) !important;
    }
    
    .comingsooncol2 .vc_column-inner {
        padding: 18px 10px !important;
    }
}

/* ============================================ */
/* MEDIUM PHONES (380px - 480px) - Moderate side columns */
/* ============================================ */

@media (max-width: 480px) {
    .comingsooncol1 {
        width: 45px !important;
        min-width: 45px !important;
        max-width: 45px !important;
    }
    
    .comingsooncol3 {
        width: 45px !important;
        min-width: 45px !important;
        max-width: 45px !important;
    }
    
    .comingsooncol2 {
        width: calc(100% - 90px) !important;
    }
    
    .comingsooncol2 .vc_column-inner {
        padding: 15px 10px !important;
    }
}

/* ============================================ */
/* SMALL PHONES (below 380px) - Balanced side columns */
/* ============================================ */

@media (max-width: 380px) {
    .comingsooncol1 {
        width: 40px !important;
        min-width: 40px !important;
        max-width: 40px !important;
    }
    
    .comingsooncol3 {
        width: 40px !important;
        min-width: 40px !important;
        max-width: 40px !important;
    }
    
    .comingsooncol2 {
        width: calc(100% - 80px) !important;
    }
    
    .comingsooncol2 .vc_column-inner {
        padding: 12px 8px !important;
    }
}

/* ============================================ */
/* EXTRA SMALL DEVICES (below 320px) - Keep readable */
/* ============================================ */

@media (max-width: 320px) {
    .comingsooncol1 {
        width: 35px !important;
        min-width: 35px !important;
        max-width: 35px !important;
    }
    
    .comingsooncol3 {
        width: 35px !important;
        min-width: 35px !important;
        max-width: 35px !important;
    }
    
    .comingsooncol2 {
        width: calc(100% - 70px) !important;
    }
    
    .comingsooncol2 .vc_column-inner {
        padding: 10px 6px !important;
    }
}

/* ============================================ */
/* FIX FOR WOODMART/WPBAKERY DEFAULT STYLES */
/* ============================================ */

/* Override any default column gaps */
.comingsoonrow.vc_row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.comingsoonrow.vc_row .wpb_column {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Ensure full height works properly */
.comingsoonrow {
    align-items: stretch !important;
}

/* Optional: Add smooth transition for responsive changes */
.comingsooncol1,
.comingsooncol2,
.comingsooncol3 {
    transition: all 0.2s ease-in-out;
}

/* Style adjustments for center content to fit better */
.comingsooncol2 h1,
.comingsooncol2 h2,
.comingsooncol2 h3,
.comingsooncol2 p {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.comingsooncol2 img {
    max-width: 100%;
    height: auto;
}