@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%;
   
}


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




/* Navigation */
header {
    background: none;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
	margin: 0px auto;
}

/* Hero Section - General Styles (Default/Desktop) */
.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%;
    min-height: 100vh; /* Makes sure it fills the screen */
    height: auto; /* Allows it to grow if content needs */
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* Changed from 'fixed' for mobile safety */
}


/* 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;
}


@media screen and (min-width: 1920px) {
    .home_page_container {
        margin: 0px auto;
        padding: 0;
        background-color: #000000;
        color: #ffffff; /* Changed to white */
        max-width: 1920px;
        height: auto;
        border: 4px solid rgba(44,168,247,1.00);
 
    }
	
	/* Navigation */
header {
    background: none;
    padding: 0;
    position: center;
	width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
	margin: 0px auto;
}
	
	.hero {
    background-image: url(../img/home_page/hero_image_1920px.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 1080px;
    height: auto;
    width: 100%;
  }

	 .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;
    }
}



@media (min-width: 1201px) and (max-width: 1920px) {

.hero {
    background-image: url(../img/home_page/hero_image_1920px.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    height: auto;
    width: 100%;
  }

	 .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;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
	
  .hero {
    background-image: url(../img/home_page/hero_image_1200px.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 100vh;
    height: auto;
    width: 100%;
  }
	
	 .hero-overlay-top  {
        top: 10%;
    }
	
		 .hero-overlay-bottom  {
        bottom: 10%;
    }
	
	
    .hero-overlay-top h1 {
        font-size: 50px;
    }

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

@media (min-width: 481px) and (max-width: 768px) {
  .hero {
    background-image: url(../img/home_page/hero_image_768px.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 100vh;
    height: auto;
    width: 100%;
  }
	
	
	 .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;
    }
}

@media (min-width: 301px) and (max-width: 480px) {
  .hero {
    background-image: url(../img/home_page/hero_image_480px.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 100vh;
    height: auto;
    width: 100%;
  }


	 .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 {
    background-image: url(../img/home_page/hero_image_300px.jpg);
    background-attachment: scroll; /* Ensures mobile compatibility */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 100vh;
    height: auto; /* Let it grow if needed */
    width: 100%;
  }

    .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-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;
    }
}

