:root {
    --primary-color: #00334e;  /* A dark, navy blue */
    --secondary-color: #006994;  /* A more medium blue */
    --highlight-color: #00acee;  /* A bright, lighter blue for highlighting */
    --light-blue: #add8e6;  /* A light blue */
    --very-light-blue: #e0f7fa;  /* A very light, almost white, bright blue */
    
}
body {
    background-color: var(--primary-color);
    background-size: cover;
    color: var(--secondary-color);
    margin: 0;
    padding: 0;
}

#hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#hero::before {
    content: "";
    background: url('img/background.jpg') no-repeat center center fixed;
    background-size: cover;
    opacity: 0.5;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;   
}

#hero h1 {
    font-size: 5vw;
    margin-bottom: 1em;
    position: relative;
    z-index: 1;
    transition: font-size 0.2s ease-in-out;
    color:var(--very-light-blue);
}

#hero h1::after {
    content: '';
    position: absolute;
    left: 25%;
    right: 25%;
    bottom: -2vh;
    height: 1px;
    background: var(--very-light-blue);

}

#hero p {
    font-size: 1.5vw;
    margin-bottom: 2em;
    margin-top: -1vh;
    z-index: 1;
    transition: font-size 0.1s ease-in-out;
    color:var(--very-light-blue);
}

#hero button {
    padding: 1em 2em;
    font-size: 1vw;
    border: none;
    border-radius: 4px;
    background: var(--highlight-color);
    color: var(--primary-color);
    cursor: pointer;
    transition: background 0.2s ease;
    z-index: 1;
    transition: font-size 0.1s ease-in-out;
}

#hero button:hover {
    background: var(--secondary-color);
    color: var(--very-light-blue)
}

#contact {
    padding: 2em;
    text-align: center;
}

#contact-form input,
#contact-form textarea {
    width: 80%;
    margin-bottom: 1em;
    padding: 0.5em;
}

#contact-form input[type="submit"] {
    background: var(--highlight-color);
    color: var(--primary-color);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

#contact-form input[type="submit"]:hover {
    background: var(--secondary-color);
}

.footer-container {
    position: relative;
    height: 100%;
}

#footer-img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
}

.footer-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--very-light-blue);
    text-align: center;
}

.footer-info p {
    font-size: 3em; /* Adjust as needed */
}
footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

#copyright {
    margin: 0;
    padding: 10px 0;
    font-size: 0.875em;
    color: var(--light-color);
}

.content-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

section {
    margin-bottom: 50px;
}

section h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--light-blue)
}

section p {
    font-size: 2em;
    margin-bottom: 20px;
}

section img {
    max-width: 100%;
    height: auto;
}

.img-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid lightblue;
    border-color: var(--highlight-color);
    object-fit: cover;
    transition: border-color 0.1s ease-in-out;
}

.img-circle:hover {
    border-color: var(--secondary-color);
}
.parallax {
    height: 50vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* Responsive adjustment */
    background-attachment: scroll;
}

.contact-title {
    font-size: 2.2em;
    color: var(--accent-light);
}

.contact-intro {
    font-size: 1.2em;
    margin-bottom: 2em;
    color: var(--primary-color);
}

#contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1em;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: .5em;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    background: var(--primary-light);
    color: var(--primary-color);
    font-size: 1em;
    transition: all 0.3s ease-in-out;
}

#contact-form input:focus,
#contact-form textarea:focus {
    border-color: var(--highlight-color);
    outline: none;
    box-shadow: 0 0 10px var(--highlight-color);
}

.submit-btn {
    color: var(--lightest-blue);
    background-color: var(--highlight-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--primary-color);
}
.contact-box {
    background-color: var(--light-blue);
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}
.parallax-video {
    height: 50vh;
    overflow: hidden;
    position: relative;
}

.parallax-content {
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
}

.youtube-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    background: no-repeat;
    background-size: cover;
}
.responsive-img {
    max-width: 100%;
    height: auto;
}

/* For responsiveness */
@media (max-width: 768px) {
    .parallax-content {
        position: relative;
    }

    .youtube-video {
        position: relative;
        top: 0;
        left: 0;
    }
}

  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .parallax {
      background-attachment: scroll; /* Use scroll on smaller screens for better performance */
    }
  }
  

  



@media (max-width: 480px) {
    #hero h1 {
        font-size: 1.5em;
    }

    #hero p {
        font-size: 1em;
    }

    #contact-form input,
    #contact-form textarea {
        width: 100%;
    }

    section h2 {
        font-size: 2em;
    }

    section p {
        font-size: 1em;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    #hero h1 {
        font-size: 2em;
    }

    #hero p {
        font-size: 1.2em;
    }

    #contact-form input,
    #contact-form textarea {
        width: 90%;
    }

    section h2 {
        font-size: 2em;
    }

    section p {
        font-size: 1em;
    }
}

@media (min-width: 769px) {
    .parallax {
        background-attachment: fixed;
    }
}

















