@charset "UTF-8";

/* General Styles */
html, body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    background-color: #ffffff;
    color: #000000;
    width: 100%;
    overflow-x: hidden; /* Stops horizontal movement */
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Navigation */
header {
    background: #004080;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Text at top and bottom */
    align-items: center;
    text-align: center;
    width: 100%;
   background-image: url(../img/home_page/hero_image_1920px.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Overlay for text sections (top and bottom) */
.hero-overlay {
    position: absolute;
    width: 90%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    color: white;
}

.hero-overlay-top {
    top: 10%;
}

.hero-overlay-bottom {
    bottom: 10%;
}

/* Title at the top */
.hero-overlay-top h1 {
    font-family: 'Gradzy', sans-serif;
    font-weight: bold;
    font-size: 8vw; /* Fluid scaling for small screens */
    margin: 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
	  color: white;
}

/* Subtitle at the bottom */
.hero-overlay-bottom h2 {
    font-family: 'Gradzy', sans-serif;
    font-size: 6vw; /* Fluid scaling */
    margin: 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
	  color: white;
}

/* For Large Screens (>=1920px) */
@media (max-width: 1920px) {
    .hero {
        background-image: url(../img/home_page/hero_image_1920px.jpg); /* Image for large screens */
        height: 100vh; /* Smaller height for tablets */
		max-height: auto;
    }

	 .hero-overlay-top  {
        top: 10%;
    }
	
		 .hero-overlay-bottom  {
        bottom: 10%;
    }
	
	
    .hero-overlay-top h1 {
        font-size: 50px; /* Adjust font for large screens */
    }

    .hero-overlay-bottom h2 {
        font-size: 30px;
    }
}

/* For Small Laptops and Desktops (<=1200px) */
@media (max-width: 1200px) {
    .hero {
        background-image: url(../img/home_page/hero_image_1200px.jpg); /* Adjusted image for tablets/laptops */
         height: 100vh; /* Smaller height for tablets */
		max-height: auto;
    }

	 .hero-overlay-top  {
        top: 10%;
    }
	
		 .hero-overlay-bottom  {
        bottom: 10%;
    }
	
	
    .hero-overlay-top h1 {
        font-size: 50px;
    }

    .hero-overlay-bottom h2 {
        font-size: 30px;
    }
}

/* For Tablets (<=768px) */
@media (max-width: 768px) {
    .hero {
        background-image: url(../img/home_page/hero_image_768px.jpg); /* Adjusted image for tablet */
        height: 100vh; /* Smaller height for tablets */
		max-height: auto;
    }

	 .hero-overlay-top  {
        top: 10%;
    }
	
		 .hero-overlay-bottom  {
        bottom: 10%;
    }
	
	
    .hero-overlay-top h1 {
        font-size: 6vw; /* Smaller font size */
    }

    .hero-overlay-bottom h2 {
        font-size: 5vw;
    }
}

/* For Phones (<=480px) */
@media (max-width: 480px) {
    .hero {
        background-image: url(../img/home_page/hero_image_480px.jpg); /* Smaller image for phones */
        height: 100vh; /* Adjust height for phones */
		max-height: auto;
    }

	 .hero-overlay-top  {
        top: 10%;
    }
	
		 .hero-overlay-bottom  {
        bottom: 10%;
    }
	
	
    .hero-overlay-top h1 {
        font-size: 7vw; /* Scale down header */
    }

    .hero-overlay-bottom h2 {
        font-size: 5.5vw;
    }
}


/* For Extra Small Screens (<=300px) */
@media (max-width: 300px) {
    .hero {
         height: 100vh; /* Smaller height for tablets */
		max-height: auto;
        background-image: url(../img/home_page/hero_image_300px.jpg); /* Image for 300px screens */
    }

    .hero-overlay {
        padding: 5px; /* Less padding for smaller screens */
    }
	
	 .hero-overlay-top  {
        top: 10%;
    }
	

    .hero-overlay-top h1 {
        font-size: 30px; /* Larger scaling for very small screens */
    }
	
	 .hero-overlay-bottom  {
        bottom: 10%;
    }
	

    .hero-overlay-bottom h2 {
        font-size: 20px;
    }
}


/* For Extra Small Screens (<=250px) */
@media (max-width: 250px) {
    .hero {
         height: 100vh; 
		max-height: auto;
    }

    .hero-overlay {
        padding: 8px;
    }

	.hero-overlay-top  {
        top: 10%;
    }
	

	
    .hero-overlay-top h1 {
        font-size: 10vw; /* Larger scaling for super small screens */
    }

	 .hero-overlay-bottom  {
        bottom: 5%;
    }
	
	
    .hero-overlay-bottom h2 {
        font-size: 8vw;
    }
}

