/* === Reset & global === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fdf1de;
  color: #2C3E50;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* === Dark mode === */
body.dark-mode {
  background-color: #1E1E1E;
  color: #EAEAEA;
}

body.dark-mode .logo span {
  color: #EAEAEA;
}

body.dark-mode .navbar {
  background: rgba(40, 40, 40, 0.85);
}

body.dark-mode .btn-login,
body.dark-mode .btn-primary {
  background: #3498DB;
}

body.dark-mode footer {
  background: #1E1E1D;
}

/* === Navbar === */
.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4rem;
  background: rgba(253, 241, 222, 0.85);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background 0.4s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: #2C3E50;
}

.logo img {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  border: 2px solid #5DADE2;
  object-fit: cover;
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* === Navigation === */
.navbar nav a {
  text-decoration: none;
  color: inherit;
  margin: 0 1rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.navbar nav a::after {
  content: '';
  display: block;
  height: 2px;
  background: #5DADE2;
  transition: width 0.3s;
  width: 0;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.navbar nav a:hover::after,
.navbar nav a.active::after {
  width: 100%;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* === Buttons === */
.btn-login {
  background: #5DADE2;
  border: none;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  font-weight: 500;
}

.btn-login:hover {
  background: #3498DB;
  transform: scale(1.05);
}

.btn-darkmode {
  background: transparent;
  border: 2px solid #5DADE2;
  color: #5DADE2;
  font-size: 1.1rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-darkmode:hover {
  background: #5DADE2;
  color: white;
}

/*===== SECTION CONTACT PREMIUM =====*/
.contact-premium {
  padding: 120px 20px;
  display: flex;
  justify-content: center;
}

.contact-premium-container {
  max-width: 1000px;
  width: 100%;
  text-align: center;
}

/* Header */
.contact-premium-header .subtitle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #6c7bff;
  text-transform: uppercase;
}

.contact-premium-header h2 {
  font-size: 42px;
  margin-top: 10px;
  font-weight: 700;
}

.contact-premium-header p {
  margin-top: 15px;
  font-size: 17px;
  color: #444;
  line-height: 1.6;
}

/* Grid */
.contact-premium-grid {
  margin-top: 60px;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Cards */
.contact-premium-box {
  background: rgba(255, 249, 239, 0.85);
  padding: 45px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(65, 84, 241, 0.1);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.contact-premium-box::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 160px;
  height: 160px;
  background: rgba(108, 123, 255, 0.08);
  border-radius: 50%;
  transition: 0.4s ease;
}

.contact-premium-box:hover::before {
  transform: scale(1.4);
  opacity: 0.12;
}

.contact-premium-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(65, 84, 241, 0.15);
}

/* Rounded Icons */
.icon-circle {
  width: 65px;
  height: 65px;
  background: #eef1ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.icon-circle img {
  width: 60px;
  opacity: 0.9;
}

/* Titles */
.contact-premium-box h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.discord-tag {
  font-size: 17px;
  font-weight: 500;
  margin-top: 5px;
}

.mail {
    font-size: 17px;
    font-weight: 500;
    margin-top: 5px;
}

/* Email */
.email-premium {
  font-size: 18px;
  font-weight: 500;
  color: #4d61ff;
  text-decoration: none;
}

.email-premium:hover {
  text-decoration: underline;
}

/* Premium button */
.premium-btn {
  margin-top: 20px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #6b7bff, #4353ff);
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.25s ease;
}

.premium-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #5565ff, #2c3dff);
}
