﻿body {
    font-family: 'Cursive', sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.navbar {
    font-family: 'Cursive', sans-serif;
}
.navbar-nav .nav-item {
    margin: 15px; /* Adjust the margin as needed */
    margin-top:30px;
}

.navbar-nav .nav-link {
    color: #ffffff !important; /* Ensure the color is white */
}
.transparent-navbar {
    /* background: rgba(0, 0, 0, 0.5) !important; */
}

.hero-section {
    position: relative;
    background: url('../images/home/screenshot 2024-06-21 205706.webp') no-repeat center center/cover;
    /*background-image: url('../images/home/screenshot 2024-06-21 205706.jpg');*/
    min-height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

    .hero-section .overlay {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        /* background: rgba(0, 0, 0, 0.5); */
    }

    .hero-section h1 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }

    .hero-section p {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .hero-section .btn {
        font-size: 1.25rem;
        padding: 0.75rem 1.5rem;
    }
@@media(max-width:768px) {
    .hero-section {
        padding-top: 6rem; /* Adds extra space at the top */
    }

        .hero-section h1 {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 0.8rem;
        }

        .hero-section p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }

        .hero-section .btn {
            font-size: 1.25rem;
            padding: 0.75rem 1.5rem;
        }
}