@import url('https://fonts.googleapis.com/css2?family=Metropolis:wght@400&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap');


@font-face {
    font-family: 'Fritz Regular';
    src: url('font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

header {
    background-color: #fff;
    padding: 24px 48px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.header-logo {
    max-width: 240px;
    height: auto;
    margin-left: -20px;
}

.header-nav {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.nav-link {
    font-family: 'Roboto', sans-serif;
    color: #003087;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #002060;
}

.contact-button {
    font-family: 'Roboto', sans-serif;
    background-color: #003087;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-button:hover {
    background-color: #002060;
    transform: translateY(-2px);
}

.hero-section {
    height: 85vh;
    background: url('img/milwaukee3.jpg') no-repeat center 30%;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 0 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section h1 {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-section .welcome-text {
    font-family: 'Metropolis', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    display: block;
}

.hero-section .welcome-text.family {
    font-size: 1.5rem;
}

.solsiden-text {
    font-family: 'Fritz Regular', sans-serif !important;
    font-size: 5rem !important;
    font-weight: 700 !important;
    color: #fff;
    letter-spacing: 0.1em;
    display: inline-block;
    position: relative;
    margin: 10px 0 2px 0;
    line-height: 1;
}

.solsiden-text::after {
   content: "";
    display: block;
    width: 100%;
    height: 4px;
    background: #fff;
    margin: 6px auto; 
}

.parallax-section {
    height: 40vh;
    background: url('img/milwaukee.jpg') no-repeat center 80%;
    background-size: cover;
    position: relative;
    margin-bottom: 15px;
}

.parallax-overlay {
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
}

.container {
    width: 100%;
    padding-top: 20px;
    background: #fff;
}

.section {
    width: 100%;
    padding: 15px 0;
    background: #fff;
    position: relative;
}

.about-section .content {
    max-width: 800px;
    margin: 0 auto;
    display: block;
}

.mission-section .content {
    max-width: 800px;
    margin: 0 auto;
    display: block;
}

.about-section .text {
    text-align: center;
    max-width: 100%;
    margin-top: 0;
}

.mission-section .text {
    text-align: center;
    max-width: 100%;
}

.about-section h2,
.about-section p {
    margin-top: 0;
}

.mission-section {
    margin-bottom: 15px;
}

.investments-section {
    margin-bottom: 15px;
}

.contact-section {
    margin-bottom: 30px;
}

.contact-section .content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
}

.contact-section .text {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 20px 0 0;
    color: #333;
}

.contact-section .form-container {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 20px;
    background-color: #c6936d;
    border-radius: 8px;
}

.section h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #003087;
}

.section p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.section#investments {
    background: #c6936d;
    padding: 15px 20px;
}

.section#investments .content {
    max-width: 800px;
    margin: 0 auto;
    display: block;
}

.section#investments .text {
    text-align: center;
    max-width: 100%;
}

.section#investments h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #fff;
}

.section#investments p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #fff;
    text-align: left;
    max-width: 800px;
    margin: 0 auto 20px;
}

.section#investments ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.section#investments ul li {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    text-align: left;
}

.section#investments ul li .list-icon {
    width: 48px;
    height: 48px;
    margin-right: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.section#investments ul li span {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    flex: 1;
    line-height: 1.4;
}

.contact-section form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-section .form-group {
    display: flex;
    flex-direction: column;
}

.contact-section .form-group input,
.contact-section .form-group textarea {
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    font-size: 1rem;
    width: 100%;
}

.contact-section .form-group input::placeholder,
.contact-section .form-group textarea::placeholder {
    font-family: 'Roboto', sans-serif;
    color: #666;
}

.contact-section .form-submit {
    font-family: 'Roboto', sans-serif;
    background-color: #003087;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-section .form-submit:hover {
    background-color: #002060;
    transform: translateY(-2px);
}

#captcha-question {
    color: #fff; /* White letters for CAPTCHA equation */
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    margin-bottom: 5px;
}

#form-message {
    margin-top: 10px;
    font-size: 1rem;
    text-align: center;
}

#form-message.success {
    color: green;
}

#form-message.error {
    color: red;
}

@media (max-width: 1024px) {
    .contact-section .content {
        flex-direction: column;
        gap: 20px;
    }
    .contact-section .text,
    .contact-section .form-container {
        max-width: 100%;
        width: 100%;
        padding: 0 20px;
        margin: 0;
    }
     .hero-section h1 {
        font-size: 4.5rem;
    }
    .hero-section .welcome-text {
        font-size: 3rem;
    }
    .hero-section .welcome-text.family {
        font-size: 1.5rem;
    }
   .solsiden-text {
        font-size: 5rem !important;
        margin: 8px 0 2px 0;
    }
    .header-nav {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 18px 24px;
    }
    .header-logo {
        max-width: 180px;
        margin-left: -15px;
    }
    .nav-link {
        display: none;
    }
    .contact-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    .hero-section {
        height: 90vh;
        background-size: auto 200%;
    }
    .parallax-section {
        height: 42.5vh;
        background-size: auto 200%;
    }
    .hero-section h1 {
        font-size: 4rem;
    }
     .hero-section .welcome-text {
        font-size: 2.4rem;
    }
   .hero-section .welcome-text.family {
        font-size: 1.2rem;
    }
    .solsiden-text {
        font-size: 4rem !important;
        margin: 8px 0 2px 0;
    }
    .section {
        padding: 10px 15px;
    }
    .about-section .content {
        padding-top: 5px;
    }
    .mission-section {
        margin-bottom: 10px;
    }
    .investments-section {
        margin-bottom: 10px;
    }
    .contact-section {
        margin-bottom: 20px;
    }
    .section h2 {
        font-size: 2rem;
    }
    .section p,
    .section#investments ul li {
        font-size: 1rem;
    }
    .section#investments ul li .list-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    .contact-section .form-container {
        padding: 15px;
        margin: 0;
    }
    .contact-section .form-group input,
    .contact-section .form-group textarea {
        font-size: 0.9rem;
        padding: 8px;
    }
    .contact-section .form-submit {
        padding: 10px 20px;
       
    }
}

@media (max-width: 480px) {
    header {
        padding: 12px 16px;
    }
    .header-logo {
        max-width: 160px;
        margin-left: -10px;
    }
    .contact-button {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    .hero-section {
        height: 90vh;
        background-size: auto 200%;
    }
    .parallax-section {
        height: 42.5vh;
        background-size: auto 200%;
    }
    .hero-section h1 {
        font-size: 3.6rem;
    }
     .hero-section .welcome-text {
        font-size: 2rem;
    }
    .hero-section .welcome-text.family {
        font-size: 1rem;
    }
     .solsiden-text {
        font-size: 3.5rem !important;
        margin: 6px 0 2px 0;
    }
    .section {
        padding: 10px;
    }
    .about-section .content {
        padding-top: 3px;
    }
    .mission-section {
        margin-bottom: 10px;
    }
    .investments-section {
        margin-bottom: 10px;
    }
    .contact-section {
        margin-bottom: 15px;
    }
    .section h2 {
        font-size: 1.7rem;
    }
    .section p,
    .section#investments ul li {
        font-size: 0.9rem;
    }
    .section#investments ul li .list-icon {
        width: 32px;
        height: 32px;
        margin-right: 12px;
    }
    .contact-section .form-container {
        padding: 10px;
        margin: 0;
    }
    .contact-section .form-group input,
    .contact-section .form-group textarea {
        font-size: 0.85rem;
        padding: 6px;
    }
    .contact-section .form-submit {
        padding: 8px 16px;
        font-size: 0.9rem;
        
    }
    .header-nav {
        gap: 10px;
    }
}