/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }


/* Hero Banner */
.hero-banner {
    position: relative;
    width: 100%;
    height: 65vh;
    overflow: hidden;
	margin-top: 0;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(75%);
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
    color: white;
    padding: 2.5rem 3rem;
    border-radius: 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
    animation: fadeInUp 1.5s ease-out forwards;
}

.banner-text h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.banner-text p {
    font-size: 1.3rem;
    opacity: 0.9;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Global Link Styling */
a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    color: rgba(var(--bs-dark-rgb), 1) !important;
}

/* Fonts */
@font-face {
    font-family: 'Malibu';
    src: url('../FONTS/Malibu.woff2') format('woff2');
	font-weight: normal; 
	font-style: normal;
}

@font-face {
    font-family: 'Lemon_Tuesday';
    src: url('../FONTS/Lemon_Tuesday.woff2') format('woff2');
}
/* Footer */
#copyright-text {
    font-family: 'Courier New', Courier, monospace;
    color: gray;
    font-size: xx-small;
    text-align: center;
    margin: 1.5rem 0;
}