* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  --gold: #d4af37;
  --red: #ff0000;
}

body {
  background-color: #0a0a0a;
  color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ===== HERO SECTION ===== */
header.hero {
  background: url('img/swisssss-lambo.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  position: relative;
  background-attachment: fixed;
}

header.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(-40px);
  animation: slideDown 1.5s ease-out forwards;
  animation-delay: 0.5s;
}

.logo {
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.8), 0 0 30px rgba(212, 175, 55, 0.6);
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeSlide 1.8s ease-out forwards;
  animation-delay: 1s;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
  text-shadow: 0 0 8px var(--gold), 0 0 20px var(--gold);
  transform: scale(1.05);
}

/* ===== HERO CONTENT ===== */
.hero-content {
  position: relative;
  z-index: 2;
  margin-top: 200px;
  animation: fadeIn 2s ease-in-out;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 10px;
  animation: float 3s ease-in-out infinite alternate;
}

.buttons a {
  text-decoration: none;
  color: #fff;
  padding: 10px 20px;
  border: 2px solid var(--gold);
  margin: 5px;
  transition: 0.3s;
}

.buttons a:hover {
  background-color: var(--gold);
  box-shadow: 0 0 15px var(--gold);
  color: #111;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 50px;
  text-align: center;
}

h2 {
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
  margin-bottom: 20px;
}

.music-grid, .video-grid, .gallery-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.music iframe, .video-grid iframe {
  width: 400px;
  height: 250px;
  border-radius: 10px;
}

.gallery-grid img {
  width: 300px;
  border-radius: 10px;
  transition: all 0.5s ease;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.gallery-grid img:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

/* ===== FORM ===== */
form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input, form textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
}

button {
  padding: 10px;
  background-color: var(--red);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

button:hover {
  background-color: var(--gold);
  box-shadow: 0 0 20px var(--gold);
  color: #111;
}

.socials a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
  transition: 0.3s;
}

.socials a:hover {
  color: var(--gold);
  text-shadow: 0 0 8px var(--gold), 0 0 20px var(--gold);
  transform: scale(1.05);
}

footer {
  text-align: center;
  padding: 20px;
  background: #111;
  font-size: 14px;
  border-top: 1px solid #222;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(-10px); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .music iframe, .video-grid iframe {
    width: 100%;
    height: 220px;
  }
  .gallery-grid img {
    width: 100%;
  }
  .navbar {
    flex-direction: column;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
