/* Styles CSS 
    Contains the core styles for the entire site. 
    Date: 08-01-2026
    Kalia Hudson
*/

/* Global Styles */
html{
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    color: #ffffff;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 200;
    background-color: #000000;
}

h1 {
    font-size: 2.5rem;
    font-weight: 250;
}

h2 {
    font-size: 2rem;
    font-weight: 200;
}


header {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header .nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

nav a {
    text-decoration: none;
    color: #0A3D91;
    padding-right: .5rem;
}

.navCTA {
    color: #083276;
    text-decoration: underline;
}

.hero {
    position: relative;
    min-height: 60vh;
    overflow: hidden;
}

.hero h1 {
    margin-bottom: 0rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

.hero-content {
    position: relative;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 150%);
    text-align: center;
}

.hero-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    color: #ffffff;
    font-weight: 500;
    background: rgba(10, 61, 145, 0.50);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    text-decoration: none;
}


/* Client Projects Section */

.gallery {
    padding: 4rem 2rem;
}

.gallery .layout {
    display: flex;
    flex-direction: column;;
}

.gallery h2 {
    text-align: center;
}

.gallery .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-image {
    width: 100%;
    height: 30rem;
    border-radius: 8px;
}

/* Why Hire Me Carousel Section */

.whyCarousel {
    padding: 4rem 2rem;
    background-color: #08306bcf;
    text-align: center;
    overflow: hidden;
}

.whyCarousel .carousel-track {
  display: flex;;
}

.whyCarousel .carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.whyCarousel button{
    background-color: #092757;
    padding: 12px 16px;
    color: #ffffff;
    font: 1rem Montserrat, sans-serif;
    border: none;
    overflow: hidden;
}

.final-cta {
   text-align: center;
   margin: 5rem;
}

.final-cta p {
    margin: 2rem;
}

.final-cta .cta-button {
    padding: 12px 16px;
    color: #ffffff;
    font: 1rem Montserrat, sans-serif;
    background: rgba(10, 61, 145, 0.50);
    backdrop-filter: blur(10px);
    border: 1px solid #ffffff;
    border-radius: 999px;
    text-decoration: none;
}

.footer {
    border-top: .5px solid #ffffff;
    max-height: 100%;
    text-align: center;
}


.footer-item p {
    font: 1rem Montserrat, sans-serif;
    font-weight: 200;
}

.footer a {
    font: 1rem Montserrat, sans-serif;
    text-decoration: none;
    font-style: italic;
    color: #93afdb;
}

.footer .location {
    font-size: .5rem;
}