/* Namari Landing Page Dynamic Style Index

1. Website Default Styling
2. Navigation
3. Primary and Secondary Colors
4. Banner
5. Typography
6. Buttons
7. Footer
8. Luke's Custom Stuff


/*------------------------------------------------------------------------------------------*/
/* 1. Website Default Styling */
/*------------------------------------------------------------------------------------------*/

/* Color Schema
DFS Logo Colors
Blue: #3498db
Green: #2ecc71
Orange: #e67e22

Header Blue: #2664EC
Primary Blue: #204BC2
*/

body {
    background:#ffffff;
    margin: 0;
    padding: 0;
}


/* Default Link Color */

/* a, .la-ball-triangle-path { */
    /* color:#3498db; */
/* } */

#header {
    /* background-color: #2664EC; */
    display: flex;             /* Flexbox for vertical alignment */
    align-items: center;       /* Vertically center content */
    justify-content: space-between; /* Space out items horizontally */
    padding: 6vh 2vw;                /* Remove existing padding */
    width: 100%;
}

/* #header { */
    /* height: 100%;              Make sure the logo fills the header */
/* } */

#logo {
    flex-grow: 1;                   /* Allow the logo to take up necessary space */
}

#header img {
    max-height: 100%;         /* Adjust logo to fit within the header */
}

/* a:hover, #header.nav-solid nav a:hover {
    color:#2664EC;
} */

/* Default Icon Color */

.icon i {
    color:#2664EC;
}

/* Border Color */

#banner .section-heading:before, .testimonial.classic footer:before {
    background: #e67e22;
}

.pricing-block-content:hover {
    border-color:#e67e22;
}

/*------------------------------------------------------------------------------------------*/
/* 2. Navigation */
/*------------------------------------------------------------------------------------------*/


/* Transparent Navigation Color on a Banner */

#header nav a, #header i {
    color:#111;
}


/* Navigation Colors when the Navigation is sticky and solid */ 

/* #header.nav-solid, #header.nav-solid a, #header.nav-solid i, #nav-mobile ul li a { */
    /* background-color: #3498db; */
    /* background-color: #2664EC; */
    /* color: #fff; */
/* } */
/* 
#nav-main {
    width: 100%;               /* Ensure it takes the full width 
    display: flex;             /* Use flexbox for horizontal layout 
    justify-content: center;   /* Center the navigation items 
    align-items: center;       /* Vertically align them 
    flex-wrap: nowrap;         /* Prevent wrapping 
} */

#nav-main {
    flex-grow: 2;                   /* Give the navigation more space to prevent crowding */
}


/* Navigation Active State */

/* #header.nav-solid .active { */
    /* color: #2ecc71; */
    /* border-color: #2ecc71; */
/* } */



/*------------------------------------------------------------------------------------------*/
/* 3. Primary and Secondary Colors */
/*------------------------------------------------------------------------------------------*/


/* Primary Background and Text Colors */

.primary-color, .featured .pricing {
    background-color:#3498db;
}

.primary-color, .primary-color .section-title, .primary-color .section-subtitle, .featured .pricing, .featured .pricing p {
    color:#fff;    
}



/* .section-heading h2:after {
    background:#3498db;
    content:"";
    display:block;
    width:30px;
    height:5px;
    margin-top:30px;
} */

.text-center .section-heading h2:after {
    margin:30px auto 25px auto;
}

/* Primary Icon Colors */

.primary-color .icon i, .primary-color i {
    color:#fff;
}


/* Secondary Background and Text Colors */

.secondary-color {
    background-color:#e67e22;
}

.background-blue {
    background-color: #204BC2;
}

.background-light-blue {
    background-color: #2664EC;
}

/* General Colors */

.text-white {
    color: #fff;
}

.text-blue {
    color: #204BC2;
}

.fill-white {
    fill: #fff;
}

/*------------------------------------------------------------------------------------------*/
/* 4. Banner */
/*------------------------------------------------------------------------------------------*/


/* Banner Background and Text Colors */

/* #banner {
    /* background: url("../images/banner-images/banner-image-1.jpg") no-repeat center top; */ /*
    background-size:cover;
} */

#banner {
    width: 100vw; /* Viewport width, ensures the banner takes up the full width of the screen */
    margin: 0;    /* Remove any default margins */
    /* background-color: #747474; Light Gray background */
    /* color: #333; White text */
    /* min-height: 5vh; */
}

/* #main-content-wrapper {
    background: linear-gradient(to top right, #204BC2, transparent 70%);
} */

/* Step 1: Make the #banner-content a Flexbox container */
/* See style.css */

/* Step 2: Define column widths */
.col-38 {
    width: 38%;                     /* Takes up 38% of the width */
}
.col-62 {
    width: 62%;                     /* Takes up 62% of the width */
}

/* Container for responsive video */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

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

/*------------------------------------------------------------------------------------------*/
/* 5. Typography */
/*------------------------------------------------------------------------------------------*/


body {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size:15px;
    font-weight:bold;
    color:#000000;
}

/* Logo, if you are using Fonts as Logo and not image

#logo h1 {
    font-family:;
    font-size:; 
    font-weight:;
    color:;
}

#logo h2 {
    font-family:;
    font-size:; 
    font-weight:;
    color:;
}

*/


/* Banner Typography */

#banner h1 {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size:62px;
    line-height:60px;
    font-weight:800;
    color:#111;
}

#banner h2 {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size:32px;
    font-weight:600;
    color:#111;
}


/* Section Title and Subtitle */

.section-title {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size: 34px; 
    font-weight:700;
    color:#111;
}

.section-subtitle {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size: 16px;
    font-weight:300;
    color:#3498db;
}

/* Testimonial */

.testimonial q {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size: 17px; 
    font-weight:300;
}

.testimonial.classic q, .testimonial.classic footer {
    color:#111;
}


/* Standard Headings h1-h6 */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
}


/*------------------------------------------------------------------------------------------*/
/* 6. Buttons */
/*------------------------------------------------------------------------------------------*/

/* ----------Default Buttons---------- */


/* Button Text */

.button, input[type="submit"]  {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size:14px;
    font-weight:bold;
    color:#111;
}


/* Button Color */

.button, input[type="submit"] {
    border-color:#111;
}

.btn-md,
.btn-lg {
    color: #2664EC;
    border-color: #2664EC;
    background-color: #fff;
}


/* Button Hover Color */

.button:hover,  input[type="submit"]:hover {
    border-color:#e67e22;
    color:#e67e22;
}

.btn-md:hover,
.btn-lg:hover {
    color: rgba(#2664EC, 0.8);
    border-color: rgba(#2664EC, 0.8);
    background-color: rgba(#fff, 0.8);
}


/* ----------Banner Buttons---------- */


/* Button Text */

#banner .button {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size:16px;
    color:#111;
}


/* Button Color */

#banner .button {
    border-color:#111;
}


/* Button Hover Color */

#banner .button:hover {
    color:#e67e22;
    border-color:#e67e22;
}

a.button {
    color: #000000;
}

a.button:hover {
    color: rgb(0, 0, 0);
}


/*------------------------------------------------------------------------------------------*/
/* 7. Footer */
/*------------------------------------------------------------------------------------------*/

#landing-footer, #landing-footer p, #landing-footer a {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size:12px;
    font-weight:normal;
    color:#3498db;
}

/* Footer Icon Color */

#landing-footer i {
    color:#3498db;
}

/*------------------------------------------------------------------------------------------*/
/* 8. Custom Formating */
/*------------------------------------------------------------------------------------------*/

/* Styling for the text and sign-up link */
.signup-section {
    display: flex;        /* Make the text and link align horizontally */
    align-items: center;  /* Vertically align the text with the social icons */
}

.signup-section span {
    margin-right: 10px;   /* Add some space between the text and the link */
    color: #333;          /* Text color */
    font-size: 14px;      /* Adjust font size as needed */
}

.signup-link {
    color: #d2b356;       /* Color for the sign-up link */
    text-decoration: none; /* Remove underline from the link */
    font-weight: bold;    /* Bold the sign-up link */
}

.signup-link:hover {
    color: #ff9900;       /* Hover color for the sign-up link */
}

/*------------------------------------------------------------------------------------------*/
/* 9. Luke's Custom Stuff */
/*------------------------------------------------------------------------------------------*/

.custom-h4 {
    color: #ffffff; /* Your desired color */
}