/* ========================= */
/* GLOBAL STYLES */
/* ========================= */
body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #000;
  color: #FFD700;
  overflow-x: hidden;
}

/* ========================= */
/* HEADER */
/* ========================= */
header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 50px;
  background: #111;
  border-bottom: 1px solid #FFD700;
  position: relative;
  z-index: 1000;
}

/* ========================= */
/* HAMBURGER MENU */
/* ========================= */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger .bar {
  height: 4px;
  width: 100%;
  background-color: #FFD700;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================= */
/* NAV MENU */
/* ========================= */
nav {
  position: fixed;
  top: 80px;
  right: 60px;
  text-align: right;
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 1001;
  pointer-events: none;
}

nav.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(-10px);
}

nav.active ul li {
  animation: fadeDown 0.4s forwards;
}

nav.active ul li:nth-child(1) { animation-delay: 0.2s; }
nav.active ul li:nth-child(2) { animation-delay: 0.4s; }
nav.active ul li:nth-child(3) { animation-delay: 0.6s; }
nav.active ul li:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

nav a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.8em;
  transition: color 0.3s, transform 0.3s;
}

nav a:hover {
  color: #fff;
  transform: translateX(-5px);
}

/* ========================= */
/* FOLLOW US SECTION */
/* ========================= */
.follow-us {
  margin-top: 40px;
  text-align: right;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

nav.active .follow-us {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s; /* appears after menu items */
}

.follow-us p {
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 10px;
  font-size: 1em;
}

.social-icon {
  display: inline-block;
  font-size: 1.8em;
  color: #FFD700;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  color: #fff;
  transform: scale(1.2);
}

/* ========================= */
/* BLUR BACKGROUND OVERLAY */
/* ========================= */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 999;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ========================= */
/* HERO SECTION */
/* ========================= */
.hero {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(to bottom, #000, #111);
}

.hero h1 img {
  height: 320px;
  width: auto;
  max-width: 90%;
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero p {
  font-size: 1.2em;
  color: #e0c46c;
  margin-bottom: 30px;
}

.btn {
  background-color: #FFD700;
  color: #000;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  transition: all 0.3s;
}

.btn:hover {
  background-color: #fff;
}

/* ========================= */
/* ABOUT SECTION */
/* ========================= */
.about {
  padding: 60px 20px;
  text-align: center;
  background: #0a0a0a;
}

.about h2 {
  font-size: 2em;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  display: inline-block;
  padding-bottom: 5px;
}

/* ========================= */
/* SERVICES SECTION */
/* ========================= */
.services {
  padding: 60px 20px;
  background: #111;
  text-align: center;
}

.services h2 {
  font-size: 2em;
  margin-bottom: 40px;
  border-bottom: 2px solid #FFD700;
  display: inline-block;
  padding-bottom: 5px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.card {
  background: #000;
  border: 1px solid #FFD700;
  border-radius: 8px;
  padding: 25px;
  width: 250px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

/* ========================= */
/* FOOTER */
/* ========================= */
footer {
  text-align: center;
  padding: 20px;
  background: #000;
  border-top: 1px solid #FFD700;
  font-size: 0.9em;
  color: #e0c46c;
}

.fa-brands {
  display: inline-block;
  font-size: 2em;
  color: #FFD700;
}

.fa-brands:hover {
  color: #fff;
}
