/* =========================
   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:none;
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;
text-shadow:2px 2px 0px #e10600, 4px 4px 10px rgba(225, 6, 0, 0.5);
}
/* =========================
   SECTION
========================= */
section{
padding:50px 20px;
}
/* =========================
   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 image */
.cover-img{
width:100%;
box-shadow: 0 8px 20px #f5e4cb;
display:block;
}

/* 🔥 fade BELOW image */
.cover-bottom-fade{
width:100%;
height:120px;

/* fade from image → page bg */
background:linear-gradient(from bottom,
rgba(0,0,0,0) 0%,
rgba(0,0,0,0.7) 60%,
#000 100%);

/* একটু overlap দিলে smooth হয় */
margin-top:-5px;
}
/* 🔥 Heading Style */
/* 🔥 Heading Style */
.hl{
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    color: #f5e4cb !important;
    margin-bottom: 10px;
    padding: 0 15px;
}

.hl2{
    font-size: 21px;
    font-weight: bold;
    text-align: left;
    color: #f5e4cb !important;
    margin-bottom: 10px;
    padding: 0 15px;
}

/* 📝 Description Style */
.des{
    font-size: 15px;
    line-height: 1.7;
    color: #f5e4cb !important;
    text-align: justify;
    padding: 0 15px;
}

/* 📦 Container */
.container{
    padding: 0 15px;
}
.prep-btn{
  background: linear-gradient(135deg, #8B5E3C, #A97142);
  color: white;
  font-weight: 800;
  font-size: 18px;
  padding: 14px 30px;
  border: none;
         margin-top:50px;
  border-radius: 12px;
  cursor: pointer;
  letter-spacing: 1px;

  box-shadow: 0 0 10px #A97142,
              0 0 20px #8B5E3C,
              0 0 30px rgba(169,113,66,0.6);

  transition: 0.3s ease;
}

/* hover glow stronger */
.prep-btn:hover{
  transform: translateY(1px);
  box-shadow: 0 0 6px #A97142,
              0 0 12px rgba(169,113,66,0.6);
}

/* click effect */
.prep-btn:active{
  transform: scale(0.96);
}
.center{
text-align:center;
}
a{
  color: inherit;        /* আগের টেক্সটের কালার নিবে */
  text-decoration: none; /* underline remove */
}
/* =========================
   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;
}