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

/* Arrow hidden by default */
.see-more-btn span {
  opacity: 0;
  margin-left: 8px;
  transition: all 0.35s ease;
}

/* Hover effect */
.see-more-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

/* Show arrow on hover */
.see-more-btn:hover span {
  opacity: 1;
  margin-left: 14px;
}


html, body {
  height: 100%;
  overflow: hidden;
  background: #000;
  font-family: 'Poppins', sans-serif;
}

/* Sections / Banners */
section {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 3rem;
  font-weight: 700; /* Bold text for section titles */
  background-size: cover;
  background-position: center;
  transition: transform 1s ease, opacity 1s ease;
  opacity: 0;
  transform: translateY(100%);
  cursor: grab;
}

section.active {
  transform: translateY(0);
  opacity: 1;
  z-index: 2;
}

section h1 {
  text-shadow: 0 0 20px rgba(0,0,0,0.7);
  transition: transform 1s ease, opacity 1s ease;
  transform: translateY(40px);
  opacity: 0;
  font-weight: 700; /* Bold for section titles */
}

section.active h1 {
  transform: translateY(0);
  opacity: 1;
}

/* Menu Button */
.menu-btn {
  position: fixed;
  right: 20px;
  top: 10%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  border: none;
}

.menu-btn:hover {
  border-radius: 10%;
  transform: translateY(-50%) rotate(90deg);
  background: rgba(255,255,255,1);
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(0,0,0,0.9);
  z-index: 998;
  transition: height 0.8s ease;
  overflow: hidden;
}

.menu-overlay.active {
  height: 100%;
}

.menu-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  padding-left: 10%;
  color: #fff;
  font-size: 2rem;
  font-weight: 700; /* Bold for all menu text */
}

/* Menu Items */
.menu-item {
  color: #888;
  font-size: 1.8rem;
  font-weight: 700; /* Bold menu links */
  margin: 20px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.menu-item a {
  text-decoration: none;
  color: inherit;
  font-weight: 700; /* Ensures bold applies even on links */
}

.menu-item:hover {
  color: #fff;
}

.menu-item .arrow {
  margin-left: 10px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-item:hover .arrow {
  opacity: 1;
  transform: translateX(5px);
  color: blue;
}





/* Static Pages */
.static-section {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 40px;
}

.content-box {
  background: rgba(0,0,0,0.6);
  padding: 40px 60px;
  border-radius: 20px;
  max-width: 700px;
}

.content-box h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.content-box p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Portfolio Grid */
.portfolio-grid {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.portfolio-grid .card {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  overflow: hidden;
  width: 250px;
  text-align: center;
}

.portfolio-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.portfolio-grid p {
  padding: 10px;
  font-weight: 600;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
}

.contact-form button {
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #fff;
  color: #000;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #00bfff;
  color: #fff;
}