/* 🧼 BASIC RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 🌍 BODY */
body {
  font-family: "Sour Gummy", sans-serif;
  background-color: #10141C;
  color: #fff;
  line-height: 1.6;
}

/* 📦 CONTAINER */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 80px;
}

/* 🔝 TAB BAR */
.tab-bar {
  background-color: #E2B4EF;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.tab-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 1rem 0;
  position: relative;
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: #10141C;
  font-weight: 500;
  padding: 8px 16px;
  transition: background 0.2s ease;
}

.connect-btn {
  border: 2px solid #10141C;
  border-radius: 20px;
}

/* 🍔 HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.hamburger span {
  background: #10141C;
  height: 3px;
  border-radius: 2px;
  width: 100%;
}

/* 📱 RESPONSIVE NAV */
@media (max-width: 768px) {
  .tab-content {
    flex-direction: row;
    align-items: center;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #E2B4EF;
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    padding: 20px;
    gap: 16px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }
}

/* 💬 CONNECT SECTION */
.connect-section {
  text-align: center;
  padding: 60px 0;
}

.connect-section h1 {
  font-size: 2.5rem;
  color: #E2B4EF;
  margin-bottom: 16px;
}

.timestamp {
  font-size: 1rem;
  color: #FFE3BB;
  margin-bottom: 60px;
}

/* 🔗 SOCIAL MEDIA CARDS */
.social-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  justify-content: center;
  margin-bottom: 60px;
}

.social-card {
  background: #272727;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.social-card i {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: #E2B4EF; /* Purple icon */
}

.social-card span {
  font-size: 1rem;
  color: #fff;
}

.social-card:hover {
  transform: translateY(-4px);
  background-color: #333;
}

/* 📥 EMAIL CARD */
.email-box {
  border: 2px solid #8FE8F0;
  padding: 32px;
  border-radius: 16px;
  background-color: #181C26;
  text-align: left;
}

.email-box h2 {
  font-size: 1.8rem;
  color: #8FE8F0;
  margin-bottom: 20px;
  text-align: center;
}

.email-box form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.email-box input,
.email-box textarea {
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-family: "Sour Gummy", sans-serif;
  background-color: #2B2B2B;
  color: white;
}

.email-box input::placeholder,
.email-box textarea::placeholder {
  color: #999;
}

.email-box button {
  background-color: #8FE8F0;
  color: #10141C;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s ease;
}

.email-box button:hover {
  background-color: #67dbe6;
}

/* 📱 MOBILE STYLING */
@media (max-width: 768px) {
  .container {
    padding: 40px;
  }

  .email-box {
    padding: 24px;
  }
}