/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #0f0f0f;
  color: white;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.6);
  z-index: 1000;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 25px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  position: relative;
  transition: 0.3s;
}

/* Hover underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: white;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(120deg, #111, #222);
}

.hero-content {
  animation: fadeUp 1s ease;
}

.hero h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.hero p {
  color: #aaa;
  margin-bottom: 20px;
}

.btn {
  padding: 10px 25px;
  border: none;
  background: white;
  color: black;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.1);
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
  transition: 0.3s;
}

/* MOBILE */
@media (max-width: 768px) {
  
  .nav-links {
    position: absolute;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: #111;
    width: 200px;
    text-align: center;
    transition: 0.4s;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .menu-toggle {
    display: flex;
  }
}

/* ABOUT SECTION */
.about {
  padding: 100px 40px;
  background: #111;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1000px;
  margin: auto;
}

.about-img img {
  width: 300px;
  border-radius: 20px;
}

.about-text {
  max-width: 500px;
}

.about-text h2 {
  margin-bottom: 15px;
  font-size: 28px;
}

.about-text p {
  color: #aaa;
  margin-bottom: 10px;
}

/* SCROLL ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-img img {
    width: 200px;
  }
}
.about-text h3 {
  margin: 10px 0;
  color: #fff;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin: 20px 0;
}

.about-stats h4 {
  font-size: 20px;
}

.about-stats p {
  font-size: 12px;
  color: #aaa;
}

/* ABOUT SECTION */
.about {
  padding: 100px 40px;
  background: #111;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1100px;
  margin: auto;
}

.about-img img {
  width: 300px;
  border-radius: 20px;
}

/* TEXT */
.about-text {
  max-width: 500px;
}

.about-text h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.about-text h3 {
  margin: 10px 0;
  color: #fff;
}

.about-text p {
  color: #aaa;
  margin-bottom: 10px;
}

/* STATS */
.about-stats {
  display: flex;
  gap: 30px;
  margin: 20px 0;
}

.about-stats h4 {
  font-size: 20px;
}

.about-stats p {
  font-size: 12px;
  color: #aaa;
}

/* BUTTON */
.btn {
  padding: 10px 25px;
  border: none;
  background: white;
  color: black;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-img img {
    width: 200px;
  }

  .about-stats {
    justify-content: center;
  }
}





/* LIFESTYLE SECTION */
.lifestyle {
  padding: 100px 40px;
  background: #1c1c1c;
  text-align: center;
}

.lifestyle-container {
  max-width: 1000px;
  margin: auto;
}

.lifestyle h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.lifestyle p {
  color: #aaa;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 50px;
}

.lifestyle-gallery {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.lifestyle-card {
  background: #222;
  border-radius: 15px;
  overflow: hidden;
  width: 250px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.lifestyle-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.lifestyle-card p {
  padding: 10px;
  color: #aaa;
  font-size: 14px;
}

/* Hover Effect */
.lifestyle-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

/* MOBILE */
@media (max-width: 768px) {
  .lifestyle-card {
    width: 90%;
  }
}

/* MOTIVATION SECTION */
.motivation {
  padding: 100px 40px;
  background: #111;
  text-align: center;
  color: #fff;
}

.motivation-container {
  max-width: 1000px;
  margin: auto;
}

.motivation h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.motivation p {
  font-size: 16px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 50px;
}

/* Motivation Cards */
.motivation-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.motivation-card {
  background: #222;
  border-radius: 15px;
  padding: 20px;
  width: 250px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.motivation-card h3 {
  margin-bottom: 10px;
}

.motivation-card p {
  color: #aaa;
  font-size: 14px;
}

/* Hover Effect */
.motivation-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

/* MOBILE */
@media (max-width: 768px) {
  .motivation-card {
    width: 90%;
  }
}













/* PROJECTS SECTION */
.projects {
  padding: 100px 40px;
  background: #1a1a1a;
  text-align: center;
}

.projects h2 {
  font-size: 32px;
  margin-bottom: 50px;
}

.projects-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Project Card */
.project-card {
  background: #222;
  border-radius: 15px;
  overflow: hidden;
  width: 300px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-card .project-info {
  padding: 15px;
  text-align: left;
}

.project-card .project-info h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.project-card .project-info p {
  font-size: 14px;
  color: #aaa;
}

/* Hover effect */
.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

/* MOBILE */
@media (max-width: 768px) {
  .projects-container {
    flex-direction: column;
    align-items: center;
  }

  .project-card {
    width: 90%;
  }
}

/* CONTACT SECTION */
.contact {
  padding: 100px 40px;
  background: #1a1a1a;
  text-align: center;
  color: #fff;
}

.contact-container {
  max-width: 600px;
  margin: auto;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact p {
  color: #aaa;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.contact-info a:hover {
  color: #1db954;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #1db954;
}

/* BUTTON */
.contact-form .btn {
  background: #1db954;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form .btn:hover {
  background: #17a34a;
  transform: scale(1.05);
}

/* FOOTER */
.footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-container {
    width: 90%;
  }
}