/* ==========================================================================
   DORIT SPORTS - MINIMAL SPLASH PORTAL
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg-dark: #090a0f;
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --moto-orange: #ff5500;
  --sports-cyan: #00d2ff;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-x: hidden;
}

/* Simple Minimal Header */
.simple-header {
  padding: 30px 20px 10px;
  text-align: center;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}

.brand-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Banner Container Grid */
.banner-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 30px auto;
  padding: 0 20px;
  flex: 1;
  display: flex;
  align-items: center;
}

.banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
}

@media (max-width: 768px) {
  .banner-grid {
    grid-template-columns: 1fr;
  }
}

/* Banner Card Component */
.portal-banner-card {
  position: relative;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 30px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  filter: brightness(0.65) contrast(1.1);
  z-index: 1;
}

.portal-banner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 10, 15, 0.1) 0%, rgba(9, 10, 15, 0.9) 85%);
  z-index: 2;
}

/* Moto Gear Banner Specifics */
.banner-moto {
  border-color: rgba(255, 85, 0, 0.3);
}

.banner-moto:hover {
  transform: translateY(-8px);
  border-color: var(--moto-orange);
  box-shadow: 0 20px 45px rgba(255, 85, 0, 0.3);
}

.banner-moto:hover .banner-bg {
  transform: scale(1.08);
  filter: brightness(0.8) contrast(1.15);
}

/* Sportswear Banner Specifics */
.banner-sports {
  border-color: rgba(0, 210, 255, 0.3);
}

.banner-sports:hover {
  transform: translateY(-8px);
  border-color: var(--sports-cyan);
  box-shadow: 0 20px 45px rgba(0, 210, 255, 0.3);
}

.banner-sports:hover .banner-bg {
  transform: scale(1.08);
  filter: brightness(0.8) contrast(1.15);
}

/* Banner Content Text & Button */
.banner-content {
  position: relative;
  z-index: 3;
}

.banner-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tag-moto {
  background: rgba(255, 85, 0, 0.25);
  color: #ff884d;
  border: 1px solid rgba(255, 85, 0, 0.5);
}

.tag-sports {
  background: rgba(0, 210, 255, 0.25);
  color: #66e0ff;
  border: 1px solid rgba(0, 210, 255, 0.5);
}

.banner-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}

.btn-moto {
  background: linear-gradient(135deg, #ff5500 0%, #ff2a00 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 85, 0, 0.4);
}

.btn-sports {
  background: linear-gradient(135deg, #00d2ff 0%, #00ff87 100%);
  color: #090a0f;
  box-shadow: 0 6px 20px rgba(0, 210, 255, 0.4);
}

.portal-banner-card:hover .banner-btn {
  transform: translateX(4px);
}

/* Minimal Footer */
.simple-footer {
  padding: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
