.outfit-<uniquifier> {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.lexend-giga-<uniquifier> {
  font-family: "Lexend Giga", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.inter-<uniquifier> {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

html {
    scroll-behavior: smooth;
}

/* Apply global styles */
body {
    background-color: #F2FDFF;
    color: #001c55;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    margin: 0;
    padding-top: 100px; /* Ensures header doesn't overlap content */
}

/* Header styles */
header {
    position: fixed;
    width: 100%;
    height: 70px; /* Adjusted height */
    top: 0;
    left: 0;
    z-index: 1000;
    background-image: url('Images/bg1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #F2FDFF;
    text-align: left;
    padding: 20px 80px; /* Adjusted padding */
    font-family: 'Lexend Giga', sans-serif;
    font-size: 40px;
    font-weight: bold;
    line-height: 70px; /* Centers text vertically */
}

/* Navigation */
header nav {
    display: flex;
    gap: 60px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 100;
    position: absolute;
    right: 230px;
    top: 50%;
    transform: translateY(-50%);
}

header nav a {
    color: #F2FDFF;
    font-weight: 300;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s;
}

/* Section styling */
main {
    width: 90%;
    max-width: 1000px;
    margin: 20px auto;
}

/* Prevents header from hiding section titles */
section::before {
    content: "";
    display: block;
    height: 120px; /* Same as header height */
    margin-top: -120px; /* Pulls content back up */
    visibility: hidden;
}

h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 27px;
	margin-top: 30px;
    color: #001c55;
}

p, li {
    margin-bottom: 30px; /* Adjust this value for more or less space */
    line-height: 1.8; /* Also improves readability */
}

/* Contact link styling */
a {
    color: #0E4A6F;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
	/* Center "BETELVIA HOLDINGS" on small screens */
    main {
        width: 95%;
    }

    /* Centering logo and removing menu on mobile */
    header {
        font-size: 27px; /* Adjust font size for smaller screens */
        height: 50px;
        line-height: 50px;
    }
}

@media (max-width: 1180px) {
	header {
		text-align: center;
		padding: 0;
		height: 110px;
		line-height: 110px;
	}
}

@media (max-width: 1540px) {
    header nav {
        display: none;
    }
}

/* Footer styling */
footer {
    background-image: url('Images/bg1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	color: #F2FDFF;
    text-align: center;
	padding: 10px;
}

footer h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 27px;
    color: #F2FDFF;
}

footer p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #F2FDFF;
	line-height: 1;
}

footer a {
    color: #F2FDFF;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
