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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

.burger {
  display: none;
}

main {
  flex: 1;
}

body {
  display: flex;
  flex-direction: column;
  font-family: 'Roboto', sans-serif;
  background: url('images/bg-gaming.jpg') center center no-repeat;
  background-size: cover;
  background-attachment: scroll; /* ✅ use scroll instead of fixed */
  color: #ffffff;
}

header, section {
  padding: 60px 10%;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(10, 10, 10, 0.95);
  padding: 20px 10%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav .logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  color: #f8500d;
}

.logo {
  text-decoration: none;
  color: #f8500d;
}
.logo:hover {
  text-shadow: 0 0 10px #f8500d;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #f8500d;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero img {
  width: 400px;
  border-radius: 50%;
  transition: all 0.4s ease;
}

/* Hover Effect */
.hero img:hover {
  box-shadow: 0 0 25px #f8500d,
              0 0 50px rgba(248, 80, 13, 0.6),
              0 0 80px rgba(248, 80, 13, 0.4);
  transform: scale(1.05);
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 48px;
  color: #f8500d;
  font-family: 'Orbitron', sans-serif;
}

.hero-text p {
  margin-top: 20px;
  font-size: 18px;
  background: rgba(0, 0, 0, 0.4);
  padding: 16px;
  border-left: 3px solid #f8500d;
  border-radius: 6px;
  color: #dddddd;
  text-shadow: 0 0 2px #ff3c00, 0 0 8px rgba(255, 92, 0, 0.3);
  letter-spacing: 0.5px;
  font-weight: 300;
}

.btns {
  margin-top: 30px;
}

.btns button {
  padding: 12px 24px;
  margin-right: 15px;
  background: transparent;
  border: 2px solid #f8500d;
  color: #f8500d;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.btns button:hover {
  background: #ff5722;
  color: #000;
}

.section-title {
  font-size: 36px;
  color: #f8500d;
  margin-bottom: 20px;
  font-family: 'Orbitron', sans-serif;
}

/* Specific styling only for ABOUT section layout */
#about .section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

#about .section-content .text {
  flex: 1;
  max-width: 600px;
}

#about .section-content img {
  width: 300px;
  border-radius: 20px;
}

#about .section-content .text p {
  font-size: 18px;
  line-height: 1.8;
  color: #dddddd;
  text-shadow: 0 0 2px #ff3c00, 0 0 8px rgba(255, 92, 0, 0.3);
  letter-spacing: 0.5px;
  font-weight: 300;
}

/* For other sections (Projects, Skills, etc.), let content flow naturally */
.section-content:not(#about .section-content) {
  margin-top: 20px;
  flex-direction: column;
}

.section-content img {
  width: 300px;
  border-radius: 20px;
  margin-top: 15px;
}

#journey .timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeline-item {
  background: rgba(0, 0, 0, 0.6);
  border-left: 4px solid #f8500d;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(248, 80, 13, 0.3);
  transition: transform 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(5px);
}

.timeline-item h3 {
  color: #f8500d;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 10px;
}

.timeline-item p {
  font-size: 17px;
  color: #dddddd;
  line-height: 1.7;
}



ul li {
  margin-bottom: 10px;
}

.contact form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
}

.contact input,
.contact textarea {
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
}

.contact button {
  padding: 12px;
  background-color: #f8500d;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #000;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.contact button:hover {
  background-color: #ff5722;
}

.socials {
  padding: 60px 10%;
  text-align: center;
}

.socials .section-title {
  color: #f8500d;
  font-family: 'Orbitron', sans-serif;
  font-size: 32px;
  margin-bottom: 16px;
}

.social-text {
  font-size: 17px;
  color: #ddd;
  margin-bottom: 30px;
  text-shadow: 0 0 2px #ff3c00, 0 0 8px rgba(255, 92, 0, 0.3);
  letter-spacing: 0.4px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(0.9);
}

.social-icons a:hover img {
  transform: scale(1.15);
  filter: brightness(1.2) drop-shadow(0 0 6px #f8500d);
}


footer {
  width: 100%;
  background-color: #1a1a1a;
  color: #ccc;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  margin-top: 40px; /* Push it away from content above */
}




.project-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.project-block.reverse {
  flex-direction: row-reverse;
}

.project-block img {
  width: 475px;
  height: 280px;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

/* Common image hover effect (except hero) */
.project-block img,
#about .section-content img,
.section-content img {
  transition: all 0.35s ease;
  cursor: pointer;
}

/* Hover effect */
.project-block img:hover,
#about .section-content img:hover,
.section-content img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 20px rgba(248, 80, 13, 0.25),
              0 0 20px rgba(248, 80, 13, 0.2);
}

.project-block .text {
  flex: 1;
  min-width: 280px;
}

.project-block h3 {
  font-family: 'Orbitron', sans-serif;
  color: #f8500d;
  font-size: 24px;
  margin-bottom: 10px;
}

.project-block p {
  font-size: 17px;
  color: #dddddd;
  line-height: 1.7;
  text-shadow: 0 0 2px #ff3c00, 0 0 8px rgba(255, 92, 0, 0.3);
}

.play-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: transparent;
  border: 2px solid #f8500d;
  color: #f8500d;
  font-size: 16px;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.play-btn:hover {
  background-color: #f8500d;
  color: #000;
}

.form-status {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}


.try{
margin-bottom: -90px
}