
* {
    margin: 0; 
    padding: 0;
    font-family: "Hanken Grotesk", sans-serif;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}

body {
    background: #F0F2F5;
    color: #6986a8;
}

#header {
    width: 100%;
    height: 100vh;
    background-image: url(images/homepage3.jpg);
    background-size: cover;
    background-position: center;
} 

.container {
    padding: 35px 10% 10px 10%;
}





.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem; /* spacing between images */
}

.gallery-grid img {

    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -5px;
}

.logo {
    width: 140px;
    margin-top: -15px; /* pulls logo toward the top edge */
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a {
    color: #3E6985;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

nav ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    background: #303031;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after {
    width: 100%;
}

.header-text h1 {
    font-size: 50px;
    margin-top: 10px;
}

.header-text h3 span {
    color: #3E6985;
}


.header-action-photo {
    margin-top: 40px;
    width: 100%;
    max-width: 450px;
}


.header-action-photo img {
    width: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: auto;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 0px;
}

.header-text {
    flex-basis: 55%;
}


.header-image {
    flex-basis: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 20px;
}


.script-verse,
.script-verse p,
.script-verse span {
    font-family: "Italianno", cursive !important;
    font-weight: 400;
    font-style: normal;



    font-size: 18px;



    color: #3e6985;
    margin-top: 10px;
    line-height: 1.2;
    max-width: 380px;
    text-align: center;
}

.script-verse span {
    display: block;
    font-size: 20px;
    margin-top: 8px;
}

.header-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    transform: translateY(0px);
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 80%, rgba(0,0,0,0));
}



.hero-filmstrip {

    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #000;
    position: relative;

    margin-top: 50px;
    
    

}


.hero-filmstrip::-webkit-scrollbar {
    display: none;
}

.filmstrip-track {
    display: flex;
    width: 200%; 
    animation: scroll-banner 40s linear infinite;
}

.filmstrip-track img {
    width: 450px;
    height: 450px;
    object-fit: cover;
    flex-shrink: 0;
}

@keyframes scroll-banner {
    0% { transform: translateX(0); }

    100% { transform: translateX(-50%); } /* Resets halfway through */
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    font-size: 30px;
    padding: 20px 10px;
    cursor: pointer;
}

.slider-arrow.left { 
        left: 0; }

.slider-arrow.right { 
        right: 0; }

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}


.hero-filmstrip-track img:hover .filmstrip-track{
   animation-play-state: paused;
}





/* --------- about ------- */

#about {
    padding: 40px 0;
    color: #6986a8;
}

.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-col-1  {
    flex-basis: 40%;
}

.about-col-1 img {
    width: 80%;
}


.about-col-2 {
    flex-basis: 55%;
}



/*------------------- contact ----------------*/


.contact-left {
    flex-basis: 35%;
}


.contact-right {
    flex-basis: 60%;
}


.contact-left p {
    margin-top: 30px;
}


.contact-left p i {
    color:#6986a8;
    margin-right: 15px;
    font-size: 15px;
}

.social-icons {
    margin-top: 30px;
}


.social-icons a {
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color:#3e6985;
    display: inline-block;
    transition: transform 0.5s;
}


.social-icons a:hover {
    color: #a49284;
}

.btn.btn2 {
    display: inline-block;
    background: #cdd7df;
}

.contact-right form {
    width: 100%;
}

form input, form textarea {
    width: 100%;
    border: 0;
    outline: none;
    background:#cdd7df;
    padding: 15px;
    margin: 15px 0;
    color: #0d0d0d;
    font-size: 18px;
}

form .btn2 {
    padding: 14px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
}

.copyright {
    width: 100%;
    text-align: center;
    padding: 25px;
    font-weight: 300;
    margin-top: 20px;
}

.copyright i {
    color: #cf9b85;
}

/* # is used for IDS, . is used for classes */

/*----------- css for small screen --------*/
/* Desktop: hide mobile icons and show full menu normally */

@media (min-width: 601px) {
    nav ul {
        position: static; /* normal flow */
        width: auto;
        height: auto;
        right: 0;
        background: none;
        display: flex;
    }

    nav .fas {
        display: none; /* hide hamburger and X */
    }

    nav ul li {
        display: inline-block; /* horizontal links */
        margin: 0 20px;
    }
}


@media only screen and (max-width: 600px) {
    #header {
        background: #F0F2F5;
        height: auto;
    }

    .hero-filmstrip {
        height: 250px;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    .filmstrip-track img {
        width: 300px;
        height: 250px;
    }

    .slider-arrow {
        padding: 15px 10px;
        font-size: 20px;
    }

    .header-text h3 {
        font-size: 24px;
        padding: 0 20px;
    }

    nav .fas {
        display: block;
        font-size: 25px;
    }

    nav ul {
        background: #F0F2F5;
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s ease;
    }


    nav ul li {
        display: block;
        margin: 25px;
    }

    nav ul .fas {
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
    }

     nav .fas.fa-bars { /* hamburger */
        display: block;
    }

    .sub-title {
        font-size: 40px;
    }

    .about-col-1, .about-col-2 {
        flex-basis: 100%;
    }

    about-col-1 {
        margin-bottom: 30px;
    }

    .about-col-2 {
        font-size: 14px;
    }

    .contact-left, .contact-right {
        flex-basis: 100%;
    }

    .copyright {
        font-size: 14px;
        margin-top: 50px;
        padding: 20px 10px;
    }

    #msg {
        color: #6986a8;
        margin-top: -40px;
        display: block;
    }

    /* Make the donation box slightly narrower for small phones */
    #paypal-container-UNF8TEBDCVBKJ > div {
        max-width: 90% !important;
    }

    /* Adjust the text size so "Donations are accepted below" doesn't wrap weirdly */
    #paypal-container-UNF8TEBDCVBKJ {
        font-size: 14px !important;
    }

    /* Ensure the $ and USD symbols don't overlap the numbers on small screens */
    #paypal-container-UNF8TEBDCVBKJ input {
        font-size: 16px !important;
        padding: 0 40px !important; /* Leaves room for the symbols */
    }

}

