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

body{
font-family:Arial, sans-serif;
background:linear-gradient(180deg,#332C24,#000,#332C24);
color:#f5e4cb;
scroll-behavior:smooth;
}

/* =========================
   NAVBAR
========================= */
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 18px;
background:#332C24;
position:sticky;
top:0;
z-index:1000;
border-bottom:1px solid #684B35;
}

.logo{
display:flex;
align-items:center;
gap:10px;
}

.logo img{
width:38px;
height:38px;
border-radius:50%;
}

.nav-links{
display:flex;
gap:15px;
list-style:none;
}

.nav-links a{
color:#f5e4cb;
text-decoration:none;
transition:0.3s;
}

.nav-links a:hover{
color:#816644;
}

/* =========================
   HAMBURGER
========================= */
.menu-toggle{
display:block;
font-size:28px;
cursor:pointer;
color:#f5e4cb;
}
.nav-links.active{
display:flex;
}

/* =========================
   HOME
========================= */
.home{
text-align:center;
padding:90px 20px;
background:radial-gradient(circle,#684B35,#332C24);
}

.title{
font-family:'Orbitron', sans-serif;
font-size:42px;
color:#000000;
-webkit-text-stroke:2px #f5e4cb;
text-shadow:2px 1px 2px #f5e4cb;
}
/* =========================
   SECTION
========================= */
section{
padding:50px 20px;
}

/* =========================
   DROPDOWN
========================= */
.drop-btn{
background:#332C24;
border:1px solid #684B35;
color:#f5e4cb;
padding:10px 15px;
margin:5px;
cursor:pointer;
border-radius:8px;
transition:0.3s;
}

.drop-btn:hover{
background:#684B35;
color:white;
}

.drop{
display:none ;
padding:12px;
margin-top:5px;
background:rgba(200,185,161,0.08);
border-left:3px solid #816644;
}
/* =========================
   TABLE
========================= */
table{
width:100%;
border-collapse:collapse;
margin-top:15px;
table-layout:fixed;
}

table, th, td{
border:1px solid #000;
}

th, td{
text-align:center;
padding:2px;
font-size:14px;
word-break:break-word;
}

th{
background:#332C24;
color:#f5e4cb;
font-weight:bold;
}
th:nth-child(1), td:nth-child(1){
  width:42%;
}

th:nth-child(2), td:nth-child(2){
  width:42%;
}

th:nth-child(3), td:nth-child(3){
  width:16%;
}

.gov, .opp,.venue{
color:#f5e4cb;
font-weight:bold;
}

table tr:hover td{
background:rgba(129,102,68,0.2);
}/* =========================
   FOOTER
========================= */
footer{
text-align:center;
padding:20px;
background:#332C24;
border-top:1px solid #684B35;
margin-top:30px;
color:#f5e4cb;
}

/* =========================
   ROUND TITLE
========================= */
section h2{
text-align:center;
font-weight:bold;
margin:20px 0;
color:#f5e4cb;
}

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

.menu-toggle{
display:block;
}

.nav-links{
display:none;
flex-direction:column;
position:absolute;
top:60px;
right:0;
background:#332C24;
width:200px;
padding:10px;
}

.nav-links.active{
display:flex !important;
}
}
/* =========================
   HERO PERFECT ALIGN FIX
========================= */
.hero{
width:100%;
height:auto; /* 🔥 height remove */
display:block;
margin:0;
padding:0;
}

/* 🔥 FIXED BACKGROUND */
body::before{
content:"";
position:fixed;
top:0;
left:0;
width:100%;
height:100%;

background:url("https://i.postimg.cc/Kjq6qNh9/Background.png") no-repeat center center/cover;

filter:blur(6px) brightness(0.5);
z-index:-1;
}

/* 🔥 COVER IMAGE */
.cover{
width:100%;          /* 🔥 full width */
height:auto;
display:block;       /* 🔥 removes bottom gap */
margin:0;
}
/* 🔥 FORCE HIDE FIX */
.hidden{
display:none !important;
}
/* =========================
   footer
========================= */
/* Container Layout and Theme Setup */
.developer-footer {
  background-color: #1F1A17; /* Dark Chocolate Background */
  color: #F5F1EC; /* Soft chocolate white */
  padding: 1.25rem 2rem;
  border-top: 1px solid #3a2f29;
  font-family: system-ui, -apple-system, sans-serif;
}

.footer-credit-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Developer Profile */
.dev-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dev-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #c9b8a7; /* Light chocolate ring */
}

.dev-info {
  display: flex;
  flex-direction: column;
}

.dev-title {
  font-size: 0.75rem;
  color: #E8DED4; /* chocolate white */
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dev-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #F5F1EC;
}

/* Copyright Text */
.footer-copyright p {
  margin: 0;
  font-size: 0.875rem;
  text-align: center;
  color: #E8DED4;
}

/* Social Links */
.dev-social-links {
  display: flex;
  gap: 1.25rem;
}

.dev-link {
  color: #F5F1EC;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease, transform 0.2s ease;
}

.dev-link:hover {
  color: #d6c6b6; /* hover chocolate glow */
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-credit-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 1.2rem;
  }

  .dev-profile {
    flex-direction: column;
    gap: 0.5rem;
  }

  .dev-social-links {
    justify-content: center;
  }
}
.dev-social-links{
  display:flex;
  gap:12px;
}

.dev-link{
  text-decoration:none;
  padding:8px 14px;
  border-radius:8px;
  color:white;
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
}

.web-link{
  background:#444;
}

.fb-link{
  background:#1877f2;
}

.dev-link:hover{
  opacity:0.8;
}
