:root {
  --primary-color: #4f46e5;
  --primary-hover: #4338ca;
  --primary-light: #e0e7ff;
  --dark-color: #111827;
  --surface-color: #f9fafb;
  --text-color: #374151;
  --text-light: #6b7280;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-color);
  background-color: white;
  height: 100vh;
  overflow-x: hidden;
}

/* Ortak Bileşenler */
.text-primary-custom {
  color: var(--primary-color) !important;
}
.bg-primary-light {
  background-color: var(--primary-light) !important;
  color: var(--primary-color);
}

.btn-primary-custom {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2);
}

.btn-primary-custom:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
  color: white;
}

.btn-google {
  background-color: white;
  border: 1px solid #e5e7eb;
  color: var(--text-color);
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 12px;
  transition: all 0.2s;
}

.btn-google:hover {
  background-color: #f9fafb;
  border-color: #d1d5db;
}

.form-control {
  padding: 0.8rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background-color: var(--surface-color);
  font-size: 0.95rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  background-color: white;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.navbar-brand-box {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
}

/* Layout Specifics */
.split-screen {
  min-height: 100vh;
  display: flex;
}

.left-pane {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  background: white;
  position: relative;
  z-index: 10;
}

.right-pane {
  flex: 1;
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  perspective: 1000px; /* 3D effect context */
}

/* Decorative Blobs on Right Pane */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
  z-index: 1;
}
.blob-1 {
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: var(--primary-color);
}
.blob-2 {
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: #10b981;
}

/* Phone Mockup Styling */
.phone-mockup {
  width: 280px;
  height: 540px;
  background: #fff;
  border-radius: 36px;
  border: 8px solid #1f2937;
  position: relative;
  z-index: 5;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: rotate(-5deg) translateY(0);
  transition: transform 0.5s ease;
  overflow: hidden;
}

.phone-mockup:hover {
  transform: rotate(0deg) translateY(-10px);
}

/* Notch */
.phone-mockup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 20px;
  background: #1f2937;
  border-radius: 0 0 14px 14px;
  z-index: 10;
}

/* Phone Screen Content */
.phone-screen {
  height: 100%;
  background: #f3f4f6;
  display: flex;
  flex-direction: column;
}

.fake-header {
  background: var(--primary-color);
  height: 70px;
  display: flex;
  align-items: flex-end;
  padding: 10px 20px;
  color: white;
}

.menu-item-skeleton {
  background: white;
  border-radius: 12px;
  padding: 10px;
  margin: 10px 15px 0 15px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.skeleton-img {
  width: 40px;
  height: 40px;
  background: #e5e7eb;
  border-radius: 8px;
}
.skeleton-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.skeleton-line {
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  width: 80%;
}
.skeleton-line.short {
  width: 40%;
}
.skeleton-btn {
  width: 24px;
  height: 24px;
  background: var(--primary-light);
  border-radius: 6px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* Floating Info Cards */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-radius: 16px;
  color: var(--dark-color);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 4s ease-in-out infinite;
}

.card-1 {
  top: 25%;
  right: 15%;
  animation-delay: 0s;
}
.card-2 {
  bottom: 30%;
  left: 15%;
  animation-delay: 2s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .right-pane {
    display: none;
  }
  .left-pane {
    padding: 2rem;
  }
}
