/*
*Theme Name : ThemeName
*Description : ThemeName Theme
*Version : 1.0
*/

h3.uppercase.text-white {
    font-size: 24px;
    text-align: center;
}

.modern-nav .nav-links li {
    position: relative;
    padding: 0 18px;
    font-weight: 900;
    color: inherit;
    font-size: inherit;
    pointer-events: auto !important;
    text-transform: uppercase;
    padding: 0 20px;
    display: flex
;
    display: -ms-flexbox;
    align-items: center;
    -ms-flex-align: center;
    width: auto;
    height: 100%;
    opacity: 1;
    position: relative;
    -webkit-transition: .2s, height, line-height, background, padding;
    -moz-transition: .2s,height,line-height,background,padding;
    transition: .2s, height, line-height, background, padding;
}


h3.font-secondary.uppercase.text-gray-600.w-full {
    font-size: 23px;
}


/* * 1. Banner Section Styling 
 * Creates the full-width, full-height container with the background image.
 */
.banner-section {
    position: relative; /* Needed for absolute positioning of text */
    width: 100%;
    /* You may adjust the height as needed. For a full-screen banner, use 100vh. */
    height: 600px; 
    
    /* Set the background image */
    background-image: url('your-banner-image.jpg'); /* REPLACE with your image path */
    background-size: cover; /* Ensures the image covers the entire container */
    background-position: center center; /* Centers the image */
    background-repeat: no-repeat;
}

/* Add an overlay to help the white text stand out, similar to the image */
.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* A semi-transparent black overlay */
    background-color: rgba(0, 0, 0, 0.2); 
}

/* * 2. Text Content Styling 
 * Positions the text container over the image and styles the text itself.
 */
.banner-content {
    position: absolute;
    top: 50%; /* Start the content halfway down */
    right: 10%; /* Adjust the right margin */
    transform: translateY(-50%); /* Pull it back up by half its height for perfect vertical centering */
    
    color: #fff; /* White text color */
    max-width: 450px; /* Limit the width of the text block */
    z-index: 10; /* Ensure the text is on top of the overlay */
}

.banner-heading {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.banner-subheading {
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 20px;
}

/* Highlighted word in red */
.coastal-highlight {
    color: #ff3333; /* Bright red color */
}

.banner-description {
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* * 3. Feature List Styling 
 */
.banner-features ul {
    list-style: none; /* Remove default bullet points */
}

.banner-features li {
    display: flex; /* Aligns icon and text horizontally */
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
}

.banner-features .icon {
    font-size: 1.5rem;
    background-color: rgba(0, 0, 0, 0.7); /* Dark background for the icon circle */
    border-radius: 50%; /* Makes it a circle */
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.banner-features .text {
    /* Optional: further styling for the feature text */
    letter-spacing: 0.5px;
}



/* 1. Features Section Container */
.features-section {
    max-width: 1100px; /* Max width for the whole section */
    margin: 0 auto; /* Center the section on the page */
    padding: 20px;
    display: flex; /* Enable Flexbox for layout */
    justify-content: space-between; /* Space out the boxes */
    gap: 30px; /* Space between the boxes */
}

/* 2. Individual Feature Box Styling */
.feature-box {
    /* Calculates box width: 100% / 4 columns minus the gap space */
    width: calc(25% - 22.5px); 
    
    padding: 30px 20px;
    background-color: #ffffff; /* White background for the box */
    text-align: center;
    
    /* Box Styling: Border and Shadow */
    border: 1px solid #ddd; /* Light gray border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft, subtle shadow */
    
    /* Smooth hover effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Optional: Hover effect to make it interactive */
.feature-box:hover {
    transform: translateY(-5px); /* Lifts the box slightly */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
}

/* 3. Text Content Styling */
.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.feature-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Optional: Responsive adjustment for smaller screens (tablets) */
@media (max-width: 992px) {
    .features-section {
        flex-wrap: wrap; /* Allows boxes to wrap to the next line */
        gap: 20px;
    }
    .feature-box {
        /* Makes boxes take up half the width on tablets (2 columns) */
        width: calc(50% - 10px); 
    }
}

/* Optional: Responsive adjustment for very small screens (phones) */
@media (max-width: 576px) {
    .feature-box {
        width: 100%; /* Makes boxes full width on phones (1 column) */
    }
}


/* Container for the Two Columns */
.box-grid {
    display: flex;
    justify-content: center;
    gap: 40px; /* Space between the left and right column */
    padding: 0 20px;
}

/* Individual Column Container */
.box-column {
    flex-basis: 50%; /* Each column takes up half the width */
    max-width: 50%;
}

/* Content Box Styling */
.content-box {
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px; /* Space between boxes within a column */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

/* Hover Effect */
.content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* 1. Dark Box Style */
.dark-box {
    background-color: rgba(30, 30, 30, 0.9); /* Dark/Black BG */
    color: #fff; /* White Text */
    /* Ensure the left column boxes are aligned right for visual balance */
    margin-left: auto;
    max-width: 500px; 
}

/* 2. Light/White Box Style */
.light-box {
    background-color: rgba(255, 255, 255, 0.9); /* White/Light BG */
    color: #333; /* Dark Text */
    /* Ensure the right column boxes are aligned left */
    margin-right: auto;
    max-width: 500px;
}

/* Highlighted Box (for the 'CONSTRUCTION' item) */
.highlight-box {
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.7); /* Red glow effect */
    border: 1px solid #ff3333;
}

/* Text Styles */
.content-box h3 {
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.content-box .description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.content-box .year {
    font-size: 0.85rem;
    font-weight: bold;
    opacity: 0.8;
}

/* Responsive Adjustments for Mobile (Single Column) */
@media (max-width: 768px) {
    .box-grid {
        flex-direction: column; /* Stacks columns vertically */
        gap: 0;
        padding: 0 10px;
    }

    .box-column {
        flex-basis: 100%;
        max-width: 100%;
    }
    
    /* Remove the margin-left/right auto that was used for two-column alignment */
    .dark-box, .light-box {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}


.lg-mt-3.sm-mt-3.text-white-700 {
    color: #fff;
    font-size: 16px;
}

.flex-row.align-items-center .lg-column-6 img {
    width: 95%;
}

/* --- Overrides to fix CSS validation issues --- */

/* Fix FA rotate warning */
.fa-rotate-by {
  transform: rotate(0deg); /* fallback */
}

/* Fix slick cursor warning */
.slick-list.dragging {
  cursor: pointer;
}
