* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: #0a192f;
  flex-wrap: wrap;
}

.logo {
  color: #ff004f;
  font-size: 26px;
}

.navbar ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.navbar ul li {
  margin-left: 25px;
}

.navbar ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.navbar ul li a:hover {
  color: #ff004f;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
              url("hero-bg.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
}

.hero-content {
  padding: 0 8%;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 10px 0;
}

.hero-content h2 {
  font-size: clamp(1rem, 3vw, 1.5rem);
}

.hero-content span {
  color: #ff004f;
}

/* BUTTONS */
.buttons {
  margin-top: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ff004f;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  margin-right: 15px;
  font-weight: bold;
}

.btn-outline {
  background: transparent;
  border: 2px solid #ff004f;
}

/* SECTIONS */
.section {
  padding: 80px 10%;
  background: #f2f4f8;
  min-height: 100vh;
}

.dark-section {
  background: #0a192f;
  color: white;
}

.section h2 {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 40px;
}

/* SKILLS */
.skills-section {
  position: relative;
  min-height: 100vh;
  padding: 80px 10% 80px 18%;
  background: linear-gradient(135deg, #020c1b, #0a192f);
  color: white;
  overflow: hidden;
}

.skills-label {
  position: absolute;
  left: -120px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 110px;
  font-weight: 900;
  letter-spacing: 14px;
  color: rgba(255, 255, 255, 0.04);
  user-select: none;
  pointer-events: none;
}

.skills-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
}

.skills-wrapper h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ffcc00;
  margin-bottom: 50px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
}

.skill-card {
  background: #112240;
  padding: 30px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: 0.3s ease;
  text-align: center;
}

.skill-card img {
  width: 60px;
  margin-bottom: 15px;
}

.skill-card p {
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.skill-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 35px rgba(255, 204, 0, 0.3);
}

/* PROJECTS */
.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.project-card {
  background: #112240;
  padding: 20px;
  border-radius: 10px;
}

/* CONTACT */
.contact-box {
  text-align: center;
}

/* HIDDEN */
.hidden {
  display: none;
}

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

  .navbar {
    flex-direction: column;
    padding: 15px;
  }

  .navbar ul {
    flex-direction: column;
    margin-top: 10px;
  }

  .navbar ul li {
    margin: 10px 0;
  }

  .hero {
    min-height: auto;
    padding: 100px 0;
    text-align: center;
  }

  .hero-content {
    padding: 0 5%;
  }

  .buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    margin-right: 0;
  }

  .section {
    padding: 50px 5%;
  }

  .projects-container {
    grid-template-columns: 1fr;
  }

  .skills-label {
    display: none;
  }

  .skills-section {
    padding-left: 10%;
  }
}
/* TABLET RESPONSIVE */
@media (max-width: 1024px) {
  .skills-section {
    padding-left: 12%;
  }
}