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

/* Body Styling */
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
background-color: #000000;
color: rgb(209, 137, 96);
padding: 20px;
}
/*
#a86d6d;
*/


.header {
margin-top: 0px;
justify-content: center;
text-align: center;
}

.header h1 {
font-size: 2.2rem;
font-weight: bold;
letter-spacing: 2px;
font-family: cursive;

}

.header h1 {
text-decoration: none;
color: white;
}

.navigation {
margin-top: 5px;
margin-bottom: 10px;
}

.navigation a {
color: whitesmoke;
text-decoration: none;
font-size: 19px;
font-weight: 300;
letter-spacing: 1px;
transition: color 0.3s;
padding-left: 11px;
}

.navigation a:hover {
color: #00ffff;
}


/* Mobile Navigation */
.mobile-nav {
display: none;
position: relative;
}

.hamburger {
position: relative;
width: 30px;
height: 20px;
border: none;
background: none;
cursor: pointer;
display: flex;
flex-direction: column;
justify-content: space-between;
z-index: 11;
}

.hamburger span {
display: block;
width: 100%;
height: 2px;
background-color: #413c3c;
border-radius: 4px;
transition: all 0.4s ease;
}

.hamburger.active span:nth-child(1) {
transform: rotate(45deg);
position: absolute;
top: 10px;
}

.hamburger.active span:nth-child(2) {
opacity: 0;
/* Hide the middle bar */
}

.hamburger.active span:nth-child(3) {
transform: rotate(-45deg);
position: absolute;
top: 10px;
}

.mobile-menu {
display: flex;
flex-direction: column;
position: fixed;
top: 0;
right: -100%;
width: 100%;
height: 40%;
background-color: rgba(0, 0, 0,0.84);
padding: 1rem;
text-align: center;
z-index: 10;
transition: right 0.4s ease;
}

.mobile-menu.active {
right: 0;
}

.mobile-menu a {
text-decoration: none;
color: #8f108f;
font-size: 22px;
font-weight: 500;
   font-family: monospace;
margin-bottom: 10px;
}

.mobile-menu a:hover {
color: aqua;
}
.mobile-nav.active .mobile-menu {
display: flex;
}


/* About Container */
.about-container {
display: flex;
flex-wrap: wrap;
gap: 20px;
max-width: 1200px;
margin: 0 auto;
margin-top: 15px;
}

/* Text Section */
.text-section {
flex: 1;
min-width: 300px;
}

.text-section h1 {
font-size: 2rem;
margin-bottom: 10px;
}

.text-section p {
margin-bottom: 15px;
font-size: 1.1rem;
line-height: 1.8;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Image Section */
.image-section {
flex: 1;
min-width: 300px;
padding-top: 25px;
}

.image-section img {
width: 100%;
border-radius: 10px;
object-fit: cover;

}

/* Responsive Design */
@media (max-width: 768px) {
.about-container {
flex-direction: column;
text-align: center;
}

.text-section,
.image-section {
flex: unset;
}


header .navigation {
display: none;
}

.mobile-nav {
display: block;
}

.hamburger {
font-size: 1.8rem;
background: none;
border: none;
color: rgb(250, 231, 231);
cursor: pointer;
position: absolute;
top: -45px;
right: 11px;
}

.image-section img {
max-width: 90%;
margin: 0 auto;
}
}


@media (max-width: 480px) { 

.mobile-nav {
display: block;
}

header .navigation {
display: none;
}

.mobile-nav {
display: block;
}

.hamburger {
font-size: 1.8rem;
background: none;
border: none;
color: rgb(250, 231, 231);
cursor: pointer;
position: absolute;
top: -60px;
right: -4px;
}

}
