/* --------------------------------------- */
/* ----- Basic Setup ----- */
/* --------------------------------------- */

/* --- Fonts --- */
.spectral-extralight {
    font-family: "Spectral", serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .spectral-light {
    font-family: "Spectral", serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .spectral-regular {
    font-family: "Spectral", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .spectral-medium {
    font-family: "Spectral", serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .spectral-semibold {
    font-family: "Spectral", serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .spectral-bold {
    font-family: "Spectral", serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .spectral-extrabold {
    font-family: "Spectral", serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .spectral-extralight-italic {
    font-family: "Spectral", serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .spectral-light-italic {
    font-family: "Spectral", serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .spectral-regular-italic {
    font-family: "Spectral", serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .spectral-medium-italic {
    font-family: "Spectral", serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .spectral-semibold-italic {
    font-family: "Spectral", serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .spectral-bold-italic {
    font-family: "Spectral", serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .spectral-extrabold-italic {
    font-family: "Spectral", serif;
    font-weight: 800;
    font-style: italic;
  }



* {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

:root {
    --cream: #e5d8c3;
    --light-blue: #87a9cc;
    --blue: #254d70;
    --dark-blue: #131d4f;
    --light-brown: #ccaa87;
    --brown: #c09569;
    --dark-brown: #654520;
}

html {
    font-size: 62.5%; /* (16/10)*100 = 62.5% => 1rem = 10px */
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Spectral", serif;
    font-weight: 400;
    font-style: normal;
}

body {
    font-size: 12px;
    font-family: "Spectral", serif; 
    font-weight: 400;
    color: var(--blue);
    background: var(--cream);
    overflow-x: hidden;
}

img {
    object-fit: contain;
    max-width: 100%;
}

/* --------------------------------------- */
/* ----- Headlines and Paragraphs ----- */
/* --------------------------------------- */

h1,
h2,
h3 {
    font-family: "Spectral", serif; /* Change from 'Jost', sans-serif */
    font-weight: 400;
    line-height: var(--line-height-small);
    color: var(--white);
}

h1 {
    font-size: 4rem;
    font-weight: 600;
    color: var(--dark-brown)
}


p {
    display: block;
    font-size: 1.9rem;
}

body {
    font-size: 12px;
    font-family: "Spectral", serif; 
    font-weight: 400;
    color: var(--blue);
    background: 
        linear-gradient(rgba(229, 216, 195, 0.8), rgba(229, 216, 195, 0.8)),
        url('/static/images/sky_pano.JPG');
    background-size: cover;
    background-position: fixed;
    background-attachment: fixed;
    overflow-x: hidden;
}
/* --------------------------------------- */
/* ----- Navigation ----- */
/* --------------------------------------- */

.top-bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    margin-top: 2rem;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #e5d8c350;
}

.logo a {
    text-decoration: none;
    font-size: 4rem;
    font-weight: 600;
    color: var(--cream);
    margin-left: 100px;
    background: var(--dark-blue);
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.nav__items{
    display:flex;
    list-style: none;
    padding: 0;
    gap: 0;
    margin-right: 3rem;
}

.nav__link{
    text-decoration: none;
    padding: 2.8rem 5rem;
    color: var(--dark-blue);
    font-weight: 300;
    font-size: 1.75rem;
}


.home_image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 110vh;
    object-fit: cover; /* This will cover the entire viewport */
    z-index: -1;
    will-change: transform;
}

/* Content Stuff */

.welcome-outer-box {
    margin: 15rem 5rem 5rem 5rem;
    border: 5px solid var(--dark-blue);
    height: 75vh;
    padding: 0.5rem; /* This creates the gap for middle box */
}

.welcome-inner-box {
    border: 8px solid var(--cream);
    height: 100%; /* Fill the outer box */
    padding: 1rem; /* This creates the gap for inner box */
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-inner-box h1 {
    margin: 0; /* Remove default h1 margins */
    text-align: center;
    font-size: 10rem;
    color: var(--dark-blue);
}

.content-section {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 0vh; /* Start after the full viewport height */
    padding: 4rem 4rem;
    background: var(--cream); /* Solid background so content slides over image */
    /* min-height: 200vh; Make it tall enough to scroll */
}

.content-img {
    max-width: 50%;
    max-height: auto;
    flex-shrink: 0;
}

.content-content {
    display: flex;
    align-items: center; /* This centers the text vertically with the image */
    position: relative;
    margin: 0;
    padding-top: 2rem;
    gap: 5rem;
}

.content-text-and-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.content-text {
    font-size: 2rem;
    font-weight: 400;
    text-align: justify; /* Change from center to left for better readability */
    color: var(--dark-brown);
    flex: 1; /* This makes the text take up remaining space */
    display: flex;
    align-items: center; /* Centers the text within its own container */
}

.content-button a {
    background: var(--dark-brown);
    color: var(--cream);
    text-decoration: none;
    padding: 1rem 1rem;
    margin-top: 1rem;
    display: block;
    max-width: 10rem;
    max-height: auto;
    align-items: center;
    font-size: 1.5rem;
    border: 2px solid var(--cream);
}
