﻿h1, h2, .navbar-brand {
    font-family: 'Amatic SC', cursive;
    /*font-family: 'Pacifico', cursive;*/
    letter-spacing: 1px;
}
.navbar-brand {
    font-size:30px !important;
}

h2 {
    font-size: 50px;
}

h1 {
    font-size: 100px;
}

body, p ,nav {
    font-family: 'Raleway', sans-serif;
}

body {
    /*font-family: 'Segoe UI', sans-serif;*/
    background-color: #FDD0A778;
    /*background-color: #fdfdfd;*/
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/cover_logo.jpg') center/cover no-repeat;
    color: white;
    padding: 120px 0;
    text-align: center;
    background-position: 0% 45%;
}
@media (max-width: 1024px) {
    .hero {
        background-position: 0% 50%; /* adjust for tablets */
    }
}

@media (max-width: 520px) {
    .hero {
        /*background-size: 200%;*/
        background-position: 0% 0%; /* adjust for small phones */
        background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/cover_logo_mobile.jpg') center/cover no-repeat;
    }
}


    .hero h1 {
        font-size: 3.5rem;
        font-weight: 700;
    }

.section-title {
    margin-top: 60px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.card {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
    }

.card-img-top {
    height: 220px;
    object-fit: cover;
}

.footer {
    background-color: #222;
    color: white;
    padding: 30px 0;
    margin-top: 60px;
    font-size: 0.95rem;
}

.btn-success, .btn-success {
    border-radius: 30px;
    padding: 10px 20px;
}

.btn-success {
    background-color: #6f42c1;
    border: none;
}

.btn-success {
    background-color: #20c997;
    border: none;
}

.form-control {
    border-radius: 10px;
}

section {
    padding-top: 60px;
    padding-bottom: 60px;
}


/*
        footer {
            position: relative;
            padding-top: 40px;
            padding-bottom: 40px;
        }

            footer h3 {
                font-family: 'Pacifico', cursive;
                font-size: 2.5rem;
            }

            footer p {
                font-family: 'Raleway', sans-serif;
            }

            footer .social-links a {
                font-size: 1.5rem;
                transition: transform 0.3s ease;
            }

                footer .social-links a:hover {
                    transform: scale(1.2);
                }

            footer .footer-splash {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 100px;
                background: url('images/paint_splash.svg') no-repeat center center;
                background-size: cover;
                opacity: 0.2;
            }*/
/* Set the footer background with paint splash SVG */
.footer {
    position: relative;
    background: url('../images/paint_splash.svg') no-repeat center center;
    background-size: cover;
    padding: 40px 0;
    color: white;
    text-align: center;
}

    /* Add dark overlay */
    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6); /* Dark overlay with opacity */
        z-index: 1; /* Ensure the overlay is above the background */
    }

    /* Container for content inside footer, above the overlay */
    .footer .container {
        position: relative;
        z-index: 2; /* Content stays above the overlay */
    }



/* Transparent Navbar by default */
.navbar {
    transition: background-color 0.3s, box-shadow 0.3s;
}

    /* For sticky navbar with solid background after scrolling */
    .navbar.bg-dark {
        --bs-navbar-color: black; /* Changes the primary color */
        --bs-navbar-brand-color: black; /* Changes the primary color */

        background-color: #FDD0A7 !important;
        /*background-color: black !important;*/
        /*background-color: #e5c16c !important;*/
        /*background-color: #ccac60 !important;*/
        /*background-color: #b29653 !important;*/
        /*background-color: #333 !important;*/
    }


    /* Optional: Additional style for a smoother transition when navbar becomes sticky */
    .navbar.scrolled {
        background-color: #FDD0A7;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

.dropdown-item.active, .dropdown-item:active {
    background-color: #E0B288;
}
.dropdown-item:focus, .dropdown-item:hover {
    background-color: #ecd0b7;
}

.carousel-inner img {
    height: 500px;
    object-fit: contain;
    background-color: #FDD0A778; /* Optional: to fill gaps around images */
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='black' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}