/* Overall */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Urban-reg;
}
@font-face {
    font-family: Tondu;
    src: url(/Assets/fonts/Tondu-Beta.ttf);
}
@font-face {
    font-family: Urban-reg;
    src: url(/Assets/fonts/Urbanist/Urbanist-Regular.ttf);
}
@font-face {
    font-family: Urban-semi;
    src: url(/Assets/fonts/Urbanist/Urbanist-SemiBold.ttf);
}
@font-face {
    font-family:Script ;
    src: url(/Assets/fonts/Hertine.otf);
}

/* Body */
body {
    font-family: Urban-reg;
    overflow-x: hidden;
    background-color: #FF7701;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.cover{
    width: 100vw;
    position: absolute;
    z-index: -3;
}
.left{
    position: absolute;
    z-index: -2;
    height: 100%;
}
.right{
    width: 29vw;
    position: absolute;
    z-index: -2;
    left: 71%;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1024px; 
    margin: auto; 
    padding: 20px; 
}

.lungam {
    width: 65%;
    margin: 0 auto;
}
p{
    margin: auto;
    color: white;
    font-size: 160%;
    padding: 2% 0%;
    font-family: Urban-reg;
}

button{
    background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}
button img{
    width: 19%;
}

.footer {
    font-family: Urban-reg;
    text-align: center;
    padding: 15px;
    color: #ffffff;
    margin-top: auto; /* Keeps footer at the bottom */
} 
.social-links {
    display: inline-block;
}
.footer p{
    padding: 1%;
    font-size: 63%;
}
.social-links a {
    font-family: Urban-reg;
    color: #ffffff;
    text-decoration: none;
    font-size: 93%;
    margin: 0 5px;
    position: relative;
    transition: color 0.3s;
}   
.social-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: #ffffff;
    transition: width 0.3s;
}  
.social-links a:hover::after {
    width: 100%;
}
  
@media only screen and (max-width: 800px) {
    .left {
        display: none; /* Hide .left div */
    }
    .footer{
        font-family: Urban-reg;
        text-align: center;
        padding: 15px;
        color: #ffffff;
        margin-top: auto;
        margin-top: 0%;
    }
    .img-lunga-mtshali{
        display: none; /* Hide image */
    }
    .social-links a {
        font-size: 73%;
    }
    .container {
        width: 100%;
        transform: translateY(0); /* Remove vertical offset */
        justify-content: center; /* Center vertically */
    }
}