:root {
  --burgundy: #830d50;
  --burgundy-dark: #6b0f2b;
  --cream: #f4e4d3;
  --cream-light: #faf7f2;
  --dark-text: #2d1420;
  --light-text: #faf7f2;
  --accent: rgba(244, 228, 211, 0.1);
}

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

html, body {
  height: 100%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
}

body {
  overflow: hidden;
}

.split-container {
  display: flex;
  height: 100vh;
  width: 100vw;
}

/* LEFT PANEL - BURGUNDY */
.left-panel {
  flex: 1;
  background: var(--burgundy);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 50px 40px;
  overflow: hidden;
}

.left-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.03) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 1px, transparent 1px),
    radial-gradient(circle at 40% 40%, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 30px 30px, 50px 50px, 80px 80px;
  pointer-events: none;
}

.logo-section {
  text-align: center;
  z-index: 1;
  position: relative;
}

.logo-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto 10px;
  border-radius: 50%;
  border: 3px solid var(--light-text);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: relative;
}

.logo-circle::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
}

.logo-circle img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.brand-text {
  max-width: 300px;
  height: auto;
  margin: 0 auto 15px;
  filter: brightness(0) invert(1);
}

.tagline {
  color: var(--light-text);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  opacity: 0.9;
  max-width: 300px;
  line-height: 1.4;
}

/* RIGHT PANEL - CREAM */
.right-panel {
  flex: 1;
  background: var(--cream);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.right-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 60% 20%, rgba(139,21,56,0.04) 2px, transparent 2px),
    radial-gradient(circle at 20% 80%, rgba(139,21,56,0.03) 1px, transparent 1px),
    radial-gradient(circle at 80% 60%, rgba(139,21,56,0.02) 1px, transparent 1px);
  background-size: 60px 60px, 40px 40px, 100px 100px;
  pointer-events: none;
}

.content-section {
  text-align: center;
  max-width: 400px;
  z-index: 1;
  position: relative;
  padding: 40px;
}

.logo-small {
  width: 60px;
  height: 60px;
  margin: 0 auto 40px;
  border-radius: 50%;
  border: 2px solid var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.logo-small img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.connect-title {
  color: var(--dark-text);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: var(--dark-text);
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
}

.social-icon {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
}

.social-link span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}


/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
  body {
    overflow: auto;
  }
  
  .split-container {
    flex-direction: column;
    height: 100vh;
    width: 100vw;
  }
  
  .left-panel {
    flex: 1;
    min-height: 50vh;
    max-height: 50vh;
    padding: 30px 20px;
  }
  
  .right-panel {
    flex: 1;
    min-height: 50vh;
    max-height: 50vh;
    padding: 20px;
  }
  
  .logo-circle {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }
  
  .logo-circle img {
    width: 60px;
    height: 60px;
  }
  
  .brand-text {
    max-width: 200px;
  }
  
  .tagline {
    font-size: 12px;
    max-width: 250px;
  }
  
  .social-links {
    gap: 25px;
    margin-bottom: 30px;
  }
  
  .social-icon {
    width: 60px;
    height: 60px;
  }
  
  .content-section {
    padding: 15px 20px;
    max-width: 100%;
  }
  
  .connect-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .left-panel {
    padding: 20px 15px;
  }
  
  .right-panel {
    padding: 15px;
  }
  
  .logo-circle {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }
  
  .logo-circle img {
    width: 50px;
    height: 50px;
  }
  
  .brand-text {
    max-width: 180px;
  }
  
  .tagline {
    font-size: 11px;
    max-width: 200px;
  }
  
  .social-links {
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .social-icon {
    width: 50px;
    height: 50px;
  }
  
  .connect-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .social-link span {
    font-size: 10px;
  }
}