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

/* BODY */
body {
font-family: 'Noto Sans Tamil', sans-serif;
background: linear-gradient(to bottom, #2c0d00, #8b0000);
color: white;
}

/* NAVBAR */
.navbar {
background: black;
padding: 15px 20px;
position: relative;
z-index: 10000;
}

/* CONTAINER */
.container {
display: flex;
justify-content: space-between;
align-items: center;
}

/* LOGO */
.logo {
color: gold;
font-size: 20px;
}

/* NAV DESKTOP */
.nav {
list-style: none;
display: flex;
gap: 20px;
}

.nav a {
color: white;
text-decoration: none;
}

.nav a.active {
color: gold;
}

/* MENU ICON */
.menu-toggle {
display: none;
font-size: 26px;
color: white;
cursor: pointer;
}

/* ABOUT SECTION */
.about-section {
padding: 80px 20px;
}

/* CARD */
.about-box {
max-width: 900px;
margin: auto;
background: rgba(255,255,255,0.08);
padding: 30px;
border-radius: 20px;
backdrop-filter: blur(6px);
box-shadow: 0 5px 20px rgba(0,0,0,0.3);
position: relative;
z-index: 1;
}

/* FLEX */
.about-flex {
display: flex;
align-items: center;
gap: 30px;
}

/* LOGO */
.about-logo img {
width: 150px;
border-radius: 10px;
}

/* CONTENT */
.about-content {
flex: 1;
}

.about-content h2 {
text-align: center;
margin-bottom: 20px;
color: gold;
}

.about-content p {
line-height: 1.7;
text-align: justify;
margin-bottom: 15px;
}

/* FOOTER */
footer {
text-align: center;
padding: 20px;
background: black;
margin-top: 50px;
}

/* 📱 MOBILE */
@media (max-width: 768px) {

/* SHOW ☰ */
.menu-toggle {
display: block;
}

/* RIGHT SIDE MENU */
.nav {
position: fixed;
top: 0;
right: -260px; /* hidden */
width: 260px;
height: 100vh;
background: black;

flex-direction: column;
align-items: center;
padding-top: 80px;

transition: right 0.3s ease;
z-index: 99999;
}

/* SHOW MENU */
.nav.active {
right: 0;
}

.nav li {
padding: 15px 0;
}

/* STACK CONTENT */
.about-flex {
flex-direction: column;
text-align: center;
}

.about-logo img {
width: 120px;
margin-bottom: 15px;
}

.about-box {
padding: 20px;
}

}

/* OPTIONAL OVERLAY */
body.menu-open::before {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
z-index: 9998;
}
