*{
	margin: 0;
	padding: 0;
    
	box-sizing: border-box;
}
body{
	background-image: url("background/IMG_7042.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
	color: #FFFFFF;
	font-family: 'Raleway', sans-serif;
	text-align: center;
}

html{
	scroll-behavior: smooth;
}

#header{
	width: 100%;
	height: auto;
    padding-top: 140px;

}

.container{
	padding: 1px 5%; 
}

.logo-container {
    position: absolute;
    top: 0px; /* Space from the top */
    left: 30px; /* Space from the left */
}

.logo-container img {
    width: 250px; /* Adjust the logo size */
    height: auto; /* Maintain aspect ratio */
}

.header-text{
	margin-top: -50px;
	font-size: 90px; /*---text size---*/
    text-align: center;
}

.header-text h1{
	font-size: 20px; /*---h1 text size---*/
	text-align: center;
}

p1{
	font-size: 15px;
	margin: 30px;
}
main {
    padding: 100px 20px; /* Adjust as needed */
    padding-bottom: 60px; /* Adds space above the fixed copyright */
    max-width: 800px;
    margin: 0 auto;
}


h1 {
    font-size: 3rem; /*---Welcome text---*/
    margin-bottom: 30px;
	
}

.links {
    display: flex;
    flex-direction: column;
    gap: 05px;
}
/* Text Buttons */
.links a {
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
    margin-top: 10px;
}

.links a:hover {
    color: #fff;
}

.links a::after {
    content: '';
    width: 0;
    height: 3px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: width 0.5s ease-in-out;
}

.links a:hover::after {
    width: 100%;
}
main {
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    color: #fff;
}
/*-------------Contact section---------------*/

.contact-left{
	flex-basis: 45%;
	font-size: 25px;
    margin-bottom: 40px;

}
.contact-left p{
	margin-top: 30px;
}


.copyright {
    position: fixed; /* Fixes the position */
    bottom: 0; /* Sticks it to the bottom of the viewport */
    left: 0; /* Aligns it to the left edge */
    width: 100%; /* Ensures it spans the entire width */
    text-align: center;
    background: #262626; /* Ensures the background stays consistent */
    font-size: 14px;
    padding: 30px 0; /* Add padding for better spacing */
    z-index: 1000; /* Ensures it stays on top of other elements */
}

nav .fa-solid{
	display: none;
}

@media only screen and (max-width: 600px) {
    body {
        background-image: url("background/IMG_7042.jpg");
        background-repeat: no-repeat;
        background-size: cover;
    }
    #header {
        padding-top: 180px; /* Reduce top padding */
    }
  
    .header-text {
        font-size: 60px; /* Adjust font size for smaller screens */
    }
    .header-text h1{
        font-size: 15px; /*---h1 text size---*/
        text-align: center;
    }

    .contact-left {
        font-size: 18px; /* Reduce font size for contact info */
        margin-bottom: 50px; /* Add more space above copyright */
    }
    h1 {
        font-size: 40px; /*---Welcome text---*/
        margin-bottom: 50px;
        
    }

    .copyright {
        font-size: 11px; /* Adjust font size for copyright */
        padding: 15px 0; /* Ensure proper spacing */
    }
}