
:root{
    --main: #0d2b5b; 
    --light: #1b71c1;
    --lightText: #ffffff;
    --darkText: #021030;
    --accentDark: #ef6200;
    --accentLight: #fb9d60;
    --lightgrey: #f2f2f2;
}

#top{
    background-color: var(--lightgrey);
    
}

#logo{
    height: 150px;
}

#endorsements{
    background-color: var(--main);
    color: var(--lightText);
    padding-top: 5px;
    padding-bottom: 5px;
}


#contact{
    color: var(--main);
}

.keystone_bullet{
    height: 10px;
}

.input-field input:focus + label,
.input-field textarea:focus + label {
    color: var(--accentDark) !important; /* Replace with your desired color */
}
.input-field input:focus,
.input-field textarea:focus {
    border-bottom: 1px solid var(--accentDark) !important;
    box-shadow: 0 1px 0 0 var(--accentDark) !important;
}

.lower{
margin-top: 100px;
}

.wide{
    width: 100%;
    height: 50px;
}
.vert-margin{
    margin-top: 10px;
    margin-bottom: 10px;
}

.card {
    background: var(--lightgrey);
    margin-top: 3%;
    padding-bottom: 10px;
    color: var(--darkText);
    padding: 2px;
    height: 95%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card p{
    padding-left: 5%;
}




.bottom-margin{
    padding: 10px;
    margin-bottom: 5%;
}


nav {
    position: fixed;
    top: 0;
    background-color: var(--main);
    height: 100px;
z-index: 10;
}


.button {
    color: var(--lightText);
    background-color: var(--accentDark);
    padding: 15px
}

.pillButton {
    background-color: var(--accentDark);
    border: none;
    color: var(--main);
    padding: 20px 40px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 10px 5px;
    cursor: pointer;
    border-radius: 16px;
  }

  .pillButton:active {
    background-color: var(--accentDark);
    background: var(--accentDark);
  }
  .pillButton:focus {
    background-color: var(--accentDark);
    background: var(--accentDark);
  }

  .smalltext{
    font-size: x-small;
  }

#modal-henley {
    background-color: #e2c3f7;
}

.evenrow{
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
}


.fa {
    text-decoration: none;
}

.fa:hover {
    opacity: 0.7;
}

nav .fa-facebook, nav .fa-linkedin, nav .fa-twitter, nav li a{
    color: var(--accentDark);
}

.orangeText {
    color: var(--accentDark);
}

.dark-blue-text{
    color: var(--main);
}

.w100 {
    display: block;
    width: 100%;
}

.w50 {
    display:flexbox;
    width: 50%;
    padding: 20px;
}

/* 1. Force the image to behave like a block, not a text character */
.nopadding.responsive-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    margin-bottom: 0 !important; /* Removes space below image */
}

/* 2. Remove the default top margin from the headline */
h3.nopadding {
    position: relative;
    z-index: 2;
    padding-top: 0 !important;
    margin-top: -7px;
} 

.quote {
  font-family: "Georgia", serif; /* Serifs feel more "literary" */
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.6;
  border-left: 5px solid var(--accentDark); /* The vertical accent line */
  padding: 15px 25px;
  margin: 20px 0;
  background-color: var(--accentLight);
  color: var(--darkText);
}



.submit {
    height: 50px;
}

#drive, .app-links{
    background-color: var(--light);
    color: var(--darkText);
}


 /*Cookie Consent Begin*/
 #cookieConsent {
    background-color: rgba(20,20,20,0.8);
    min-height: 26px;
    font-size: 14px;
    color: var(--lightText);
    line-height: 26px;
    padding: 8px 0 8px 30px;
    font-family: "Trebuchet MS",Helvetica,sans-serif;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 9999;
}
#cookieConsent a {
    color: #4B8EE7;
    text-decoration: none;
}
#closeCookieConsent {
    float: right;
    display: inline-block;
    cursor: pointer;
    height: 20px;
    width: 20px;
    margin: -15px 0 0 0;
    font-weight: bold;
}
#closeCookieConsent:hover {
    color: #FFF;
}
#cookieConsent a.cookieConsentOK {
    background-color: var(--main);
    color: var(--lightText);
    display: inline-block;
    border-radius: 5px;
    padding: 0 20px;
    cursor: pointer;
    float: right;
    margin: 0 60px 0 10px;
}
#cookieConsent a.cookieConsentOK:hover {
    background-color: var(--accentDark);
}
/*Cookie Consent End*/


.faded-background{
    background-color: rgba(255,255,255,0.7);
    color: var(--main);
    border-radius: 25px;
    }



 .moveUp{
        position: relative;
        bottom: 10px;
        }

#footer{
    background-color: var(--main);    
    color: var(--lightText);
    }


.white_background{
    background-color: white;
}

    #share-buttons img {
        width: 48px;
        padding: 5px;
        border: 0;
        box-shadow: 0;
        display: inline;
    }
    .btn {
        .material-icons {
            position: relative;
            top: 3px;
            line-height: 1.3rem;
        }	
    }
    
/* Optional: Smooth out the transition */
#calendly, #message {
    transition: opacity 0.3s ease-in-out;
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* Custom color for the Materialize switch */
.switch label input[type=checkbox]:checked + .lever {
    background-color: #ffccbc; /* Light orange track */
}
.switch label input[type=checkbox]:checked + .lever:after {
    background-color: #f06313; /* Your primary orange knob */
}

/* 1. The Track (Lever) when ON */
.switch label input[type=checkbox]:checked + .lever {
    background-color: #ffccbc !important; /* Light orange track */
}

/* 2. The Button (Knob) when ON */
.switch label input[type=checkbox]:checked + .lever:after {
    background-color: #f06313 !important; /* Your Brand Orange knob */
}

/* 3. The "Pulse" effect when clicking */
.switch label input[type=checkbox]:checked:not(:disabled) ~ .lever:active:after {
    box-shadow: 0 1px 3px 1px rgba(0,0,0,.4), 0 0 0 15px rgba(240, 99, 19, .1) !important;
}
/* Add this to your CSS if the carousel isn't appearing */

/* 1. Base color for both labels (Off state) */
.switch label {
    color: var(--main); /* Change this to your preferred dark grey or black */
    font-size: 1rem; /* Optional: Adjust size if needed */
}

/* 2. Color for the "OFF" side (Left) when the switch is ON */
/* This ensures the left text stays legible or dims as desired */
.switch label input[type=checkbox]:checked + .lever ~ span {
    color: var(--accentDark); /* Optional: dim the left side when toggled right */
}

/* 3. Color for the "ON" side (Right) when the switch is ON */
/* Materialize doesn't have a specific class for the right text, 
   so we target the label's general color or specific text nodes */
.switch label input[type=checkbox]:checked + .lever {
    color: var(--accentDark); /* Your Brand Orange or another highlight color */
}

#openroles{
    background-color: var(--main);
    color: var(--accentLight);
}

/* Target the links inside your quickcontact section */
#quickcontact ul li a {
    display: flex;
    align-items: center; /* Vertically centers the icon and text */
    gap: 8px;            /* Adds a nice space between the icon and the text */
}

/* Ensure the icon doesn't have weird margins */
#quickcontact .material-icons {
    margin: 0;
    display: inline-block;
    vertical-align: middle;
}

#topbar {
    display: flex;
    justify-content: space-between; /* Pushes socials left, contact right */
    align-items: center;           /* Vertically centers everything */
    width: 100%;
    height: 35px;         /* Adjust this to set the thickness */
    line-height: 35px;    /* Matches height to keep text centered */
    min-height: 35px;
}

#topbar i.material-icons, 
#topbar i.fa {
    height: 35px;
    line-height: 35px;
    font-size: 1.2rem;    /* Shrink icons slightly if they feel too big */
    color: var(--accentLight);
}

#topbar ul li a {
    height: 35px;
    line-height: 35px;
    padding: 0 15px;      /* Adjust horizontal spacing if needed */
    color: var(--accentLight);
}




#topbar ul {
    display: flex;                 /* Makes the <li> items sit side-by-side */
    margin: 0;

}

#topbar ul li {
    display: flex;
    align-items: center;
}

/* Optional: Shrink the font/icons if they still feel too crowded */
#quickcontact a {
    font-size: 0.85rem;
    padding: 0 10px;               /* Tightens the horizontal spacing */
}

#quickcontact i {
    margin-right: 5px;             /* Brings icons closer to the text */
}

.divider {
    background-color: var(--accentDark);
}

#bottombar {
    background-color: var(--lightText);
    color: var(--darkText);
    display: flex !important;
    justify-content: space-between; /* Forces logo left and UL right */
    align-items: center;
    width: 100%;
}

.logo {
    max-height: 60px;
    margin-top: 10px;
    margin-left: 10px; 
}

body {
    /* Adjust this number based on your total Navbar height */
    /* If Topbar (35px) + Bottombar (75px) = 110px */
    padding-top: 130px;
}

/* If you are using a fixed navbar, ensure it stays at the top */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

.btn-large {
    background-color: var(--accentDark);
}

/* Specifically target links in the bottombar to override the orange rule */
#bottombar ul li a {
    color: var(--main) !important; 
    font-weight: 500; /* Optional: makes it look more like a nav menu */
}

/* Ensure the hover state doesn't turn white or stay orange */
#bottombar ul li a:hover {
    color: var(--light); 
}

/* Exception: Keep the button text white since the button itself is orange */
#bottombar ul li a.btn-large {
    color: var(--lightText) !important;
}


.hero-section {
            background-color: var(--main); 
            padding: 80px 0;
            color: white;
        }

.orange-text-accent {
    color: var(--accentLight);
}
    

.secondary{
    background-color: var(--main);
    color: var(--accentLight);

}

.hero-v2 {  
        background: #fafafa; 
        border-bottom: 1px solid #e0e0e0; }

        .solution-section { padding: 80px 0; }

        .icon-circle { 
            background: #e3f2fd; 
            width: 80px; 
            height: 80px; 
            line-height: 80px; 
            border-radius: 50%; 
            display: inline-block; 
            margin-bottom: 20px;
        }
        .icon-circle i { color: var(--main); 
            font-size: 40px; 
            vertical-align: middle; }

        .problem-header { color: #546e7a; 
            font-weight: 500; 
            text-transform: uppercase; 
            letter-spacing: 1px; 
            font-size: 0.9rem; }

        .solution-card { border-left: 5
            px solid var(--main); 
            padding-left: 25px; 
            margin: 20px 0; }

        .budget-banner { background-color: var(--main); 
            color: white; 
            padding: 40px 0; }

            /* --- Custom Hero Styles --- */

/* 1. Ensure the container is tall enough */
.hero-section.parallax-container {
  height: 80vh; /* Takes up 80% of the viewport height */
  position: relative;
}

/* 2. Add a gradient overlay for text readability */
/* This darkens the image slightly without using an editor */
.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Puts overlay between image and text */
}

/* 3. Make sure the content stays on top of the overlay */
.custom-hero-content {
  position: relative;
  z-index: 2; /* Puts text on top */
}

/* 4. Fine-tune text sizing/shadow for impact */
.hero-headline {
  font-size: 3.5rem; /* Larger than default H1 */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Added depth */
  margin-bottom: 20px;
}

.hero-subheadline {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* 5. Space the button */
.hero-cta-wrapper {
  margin-top: 30px;
}

/* 6. Basic responsiveness for small screens */
@media only screen and (max-width: 600px) {
  .hero-section.parallax-container {
    height: 90vh; /* Taller on mobile to fit wrapping text */
  }
  .hero-headline {
    font-size: 2.2rem;
  }
  .hero-subheadline {
    font-size: 1.1rem;
  }
}

.parallax-container {
  /* This creates a stack: the gradient is on top, the image is on the bottom */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                    url('assets/grey-arch.jpg');
  background-size: cover;
  background-position: center;
}

.cta {
    background-color: var(--accentLight);
    color: var(--main);
}
.cta .pillButton {
    background-color: var(--accentDark);
    color: var(--main);
}