/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #111;
  color: #fff;
  line-height: 1.6;
}

a {
  color: #fff;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Hero Section */
.hero {
  background-image: url('../images/hero2.JPG');
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #e60073;
  color: #fff;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #ff3385;
}

/* About Me */
.about-me {
  background-color: #1c1c1c;
  padding: 3rem 0;
  text-align: center;
}

.about-me h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #e60073;
}

.about-me p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Featured Work */
.featured-work {
  padding: 3rem 0;
  background-color: #000;
  text-align: center;
}

.featured-work h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #e60073;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0 2rem;
}

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid #333;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 40px;
  right: 60px;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
}
