/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background: #000;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(0,0,0,0.6);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
}

.nav-links a:hover {
  color: #ffd700;
}

/* Hero Section */
.hero {
  background: url('https://source.unsplash.com/1600x900/?friends,celebration')
    no-repeat center center / cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Buttons */
.btn {
  background: #ffd700;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.btn:hover {
  background: #ffa500;
}

/* Sections */
.section {
  padding: 80px 20px;
  text-align: center;
  background: #000;
  color: #fff;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Cards */
.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.4);
}

/* Current Vibe */
.vibe {
  background: #000;
}

.vibe-card {
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}

/* image full-width minus section padding */
.vibe-image-wrap {
  width: calc(100vw - 40px);
  margin-left: -20px;
  margin-right: -20px;
max-height: 520px;
overflow: hidden;
}

.vibe-image-wrap img {
  width: 100%;
max-height: 520px;
  height: auto;
  object-fit: contain;
  display: block;
  background: #000; /* optional: letterbox background */
}

/* Vibe text */
.vibe-card h3 {
  padding: 16px 16px 0;
  font-size: 1.3rem;
}

.vibe-card p {
  padding: 8px 16px 16px;
  color: #ccc;
}

/* Contact */
.contact {
  background: #111;
}

/* Footer */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 20px;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .vibe-image-wrap img {
    height: auto;
  }
}