.navbar a:hover {
    color: #ff6600;
}

h2 {
    font-size: 2.5rem;
}

body {
    font-size: 1.1rem; /* Example size */
}

.hero {
    background-image: url('../img/banner-bg.jpg'); /* Background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax effect */
    height: 50vh; /* Full screen height */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5); /* Opaque background for text */
    padding: 20px;
    border-radius: 10px; /* Rounded corners for a modern look */
    text-align: center;
}

.hero-logo {
    max-width: 400px; /* Adjust this size as necessary */
    height: auto;
}

.hero p {
    font-size: 1.5rem;
    margin-top: 10px; /* Add space between logo and text */
}

/* Media query for mobile view */
@media (max-width: 768px) {
    .hero-content {
        padding: 15px;
    }
    .hero-logo {
        max-width: 150px; /* Adjust size for mobile */
    }
}

.btn-orange {
    background-color: #ff6600; /* Orange color */
    border-color: #f57c00; /* Optional: same as background color */
    color: white; /* White text */
}

.btn-orange:hover {
    background-color: #e65100; /* Darker orange for hover effect */
    border-color: #e65100; /* Optional: darker border on hover */
    color: white; /* White text */
}

