/* Vite Bundle - Apple Style Minimalist Design */

/* ==================== VARIABLES ==================== */
:root {
  --primary: #FF3B5C;
  --dark: #0A0A0A;
  --light: #FAFAFA;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
}

/* ==================== BASE STYLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  background-color: var(--dark);
  color: var(--light);
  line-height: 1.6;
  font-weight: 400;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}

h3 {
  font-size: 1.875rem;
  color: var(--white);
}

h4 {
  font-size: 1.5rem;
  color: var(--white);
}

p {
  font-size: 1.0625rem;
  color: var(--gray-300);
  line-height: 1.8;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ff5571;
}

/* ==================== NAVIGATION ==================== */
nav {
  background: var(--dark);
  border-bottom: 1px solid var(--gray-800);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background-color: rgba(10, 10, 10, 0.95);
}

nav .max-w-7xl {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: none;
  font-size: 1rem;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: #e63350;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 59, 92, 0.25);
}

.btn-secondary {
  background-color: var(--gray-800);
  color: var(--light);
}

.btn-secondary:hover {
  background-color: var(--gray-700);
  transform: translateY(-2px);
}

.btn-ghost {
  background-color: transparent;
  color: var(--light);
  border: 1.5px solid var(--gray-700);
}

.btn-ghost:hover {
  background-color: var(--gray-900);
  border-color: var(--primary);
  color: var(--primary);
}

/* ==================== FORMS ==================== */
.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--light);
}

input, textarea, select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--gray-700);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: var(--gray-900);
  color: var(--light);
}

input::placeholder, textarea::placeholder {
  color: var(--gray-600);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 59, 92, 0.15);
  background-color: var(--gray-800);
}

textarea {
  resize: none;
  min-height: 120px;
  font-family: inherit;
}

/* ==================== SECTIONS ==================== */
section {
  padding: 4rem 2rem;
}

.min-h-screen {
  min-height: 100vh;
}

.py-20 {
  padding: 5rem 0;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ==================== GRADIENTS & BACKGROUNDS ==================== */
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, #0A0A0A, #1A1A1A);
}

.from-\[\#0A0A0A\] {
  --gradient-from: #0A0A0A;
}

.to-\[\#1A1A1A\] {
  --gradient-to: #1A1A1A;
}

/* ==================== FLEXBOX & GRID ==================== */
.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.items-center {
  align-items: center;
}

.flex-col {
  flex-direction: column;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

/* ==================== SIZING ==================== */
.max-w-4xl {
  max-width: 56rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.w-full {
  width: 100%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ==================== TEXT STYLES ==================== */
.text-center {
  text-align: center;
}

.text-white {
  color: var(--white);
}

.text-gray-300 {
  color: var(--gray-300);
}

.text-\[#FF3B5C\] {
  color: #FF3B5C;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.text-7xl {
  font-size: 4.5rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.font-bold {
  font-weight: 700;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

.sm\:text-6xl {
  font-size: 3.75rem;
}

.lg\:text-7xl {
  font-size: 4.5rem;
}

.sm\:text-xl {
  font-size: 1.25rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .sm\:text-6xl {
    font-size: 2.25rem;
  }
  
  .lg\:text-7xl {
    font-size: 2.25rem;
  }
  
  section {
    padding: 2rem 1rem;
  }
  
  .min-h-screen {
    min-height: auto;
  }
}

/* ==================== BORDERS ==================== */
.border-b {
  border-bottom: 1px solid;
}

.border-gray-800 {
  border-color: var(--gray-800);
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.z-50 {
  z-index: 50;
}

.bg-opacity-95 {
  background-color: rgba(10, 10, 10, 0.95);
}

.rounded-lg {
  border-radius: 0.5rem;
}

.hover\:bg-\[\#e63350\]:hover {
  background-color: #e63350;
}

.transition-colors {
  transition-property: background-color, border-color, color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.gap-8 {
  gap: 2rem;
}

/* ==================== TAILWIND UTILITY CLASSES ==================== */

/* Background Colors */
.bg-\[\#0A0A0A\] {
  background-color: #0A0A0A;
}

.bg-\[\#1A1A1A\] {
  background-color: #1A1A1A;
}

.bg-\[\#FF3B5C\] {
  background-color: #FF3B5C;
}

.bg-\[\#e63350\] {
  background-color: #e63350;
}

.bg-gray-900 {
  background-color: var(--gray-900);
}

.bg-gray-800 {
  background-color: var(--gray-800);
}

/* Text Colors */
.text-\[#FAFAFA\] {
  color: #FAFAFA;
}

.text-\[#0A0A0A\] {
  color: #0A0A0A;
}

/* Borders */
.border-gray-800 {
  border-color: var(--gray-800);
}

/* Padding */
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.sm\:px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.lg\:px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.sm\:py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.lg\:py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* Margins */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Max Width */
.max-w-7xl {
  max-width: 80rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-2xl {
  max-width: 42rem;
}

/* Height */
.h-screen {
  height: 100vh;
}

.min-h-screen {
  min-height: 100vh;
}

/* Display */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.gap-8 {
  gap: 2rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

/* Hover States */
.hover\:bg-\[\#e63350\]:hover {
  background-color: #e63350;
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

/* Border Radius */
.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

/* Transitions */
.transition-colors {
  transition-property: background-color, border-color, color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

/* Grid & Layout */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sm\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lg\:grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lg\:grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

/* Specific Text Sizes */
.text-4xl {
  font-size: 2.25rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-sm {
  font-size: 0.875rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.pt-8 {
  padding-top: 2rem;
}

.p-6 {
  padding: 1.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-full {
  border-radius: 9999px;
}

.w-16 {
  width: 4rem;
}

.h-16 {
  height: 4rem;
}

.w-full {
  width: 100%;
}

.h-32 {
  height: 8rem;
}

.bg-gray-400 {
  background-color: var(--gray-400);
}

.text-gray-400 {
  color: var(--gray-400);
}

.text-gray-300 {
  color: var(--gray-300);
}

.text-gray-500 {
  color: var(--gray-500);
}

.text-gray-600 {
  color: var(--gray-600);
}

.border {
  border: 1px solid currentColor;
}

.border-0 {
  border: 0;
}

.border-gray-800 {
  border-color: var(--gray-800);
}

.border-\[\#FF3B5C\] {
  border-color: #FF3B5C;
}

.hover\:border-\[\#FF3B5C\]:hover {
  border-color: #FF3B5C;
}

.bg-opacity-10 {
  background-color: rgba(255, 59, 92, 0.1);
}

.sm\:flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.pt-12 {
  padding-top: 3rem;
}

.pt-20 {
  padding-top: 5rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, #1A1A1A, #0A0A0A);
}

.max-w-6xl {
  max-width: 72rem;
}

.gap-3 {
  gap: 0.75rem;
}

/* Additional Tailwind Utilities */
.lg\:grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.aspect-video {
  aspect-ratio: 16 / 9;
}

.overflow-hidden {
  overflow: hidden;
}

.group {
  position: relative;
}

.group-hover\:bg-black\/30:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.group-hover\:scale-105:hover {
  transform: scale(1.05);
}

.inset-0 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.scale-105 {
  transform: scale(1.05);
}

.from-purple-500\/20 {
  --gradient-from: rgba(168, 85, 247, 0.2);
}

.to-\[\#FF3B5C\]\/20 {
  --gradient-to: rgba(255, 59, 92, 0.2);
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, rgba(168, 85, 247, 0.2), rgba(255, 59, 92, 0.2));
}

.flex-items-end {
  display: flex;
  align-items: flex-end;
}

.flex-items-center {
  display: flex;
  align-items: center;
}

.flex-items-start {
  display: flex;
  align-items: flex-start;
}

.flex-justify-center {
  display: flex;
  justify-content: center;
}

.p-4 {
  padding: 1rem;
}

.space-y-1 > * + * {
  margin-top: 0.25rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-x-3 > * + * {
  margin-left: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.bg-green-900\/20 {
  background-color: rgba(20, 83, 11, 0.2);
}

.border-green-500 {
  border-color: rgb(34, 197, 94);
}

.text-green-400 {
  color: rgb(74, 222, 128);
}

.bg-red-900\/20 {
  background-color: rgba(127, 29, 29, 0.2);
}

.border-red-500 {
  border-color: rgb(239, 68, 68);
}

.text-red-400 {
  color: rgb(248, 113, 113);
}

.text-red-300 {
  color: rgb(252, 165, 165);
}

.text-green-400 {
  color: rgb(74, 222, 128);
}

.from-\[\#FF3B5C\]\/30 {
  --gradient-from: rgba(255, 59, 92, 0.3);
}

.to-purple-500\/30 {
  --gradient-to: rgba(168, 85, 247, 0.3);
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right);
}

.group-hover\:bg-black\/30:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.focus\:border-\[\#FF3B5C\]:focus {
  border-color: #FF3B5C;
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.placeholder-gray-500::placeholder {
  color: var(--gray-500);
}

.focus\:border-\[\#FF3B5C\]:focus {
  border-color: #FF3B5C;
}

.justify-items-center {
  justify-items: center;
}

.text-sm {
  font-size: 0.875rem;
}

/* Additional Utilities */
.block {
  display: block;
}

.hidden {
  display: none;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.border-2 {
  border-width: 2px;
}

.border-dashed {
  border-style: dashed;
}

.sm\:grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.w-4 {
  width: 1rem;
}

.h-4 {
  height: 1rem;
}

.cursor-pointer {
  cursor: pointer;
}

.mt-1 {
  margin-top: 0.25rem;
}

.focus\:ring-\[\#FF3B5C\]:focus {
  box-shadow: 0 0 0 3px rgba(255, 59, 92, 0.15);
}

.hover\:underline:hover {
  text-decoration: underline;
}

.text-lg {
  font-size: 1.125rem;
}

.border-t {
  border-top: 1px solid;
}

.items-start {
  align-items: flex-start;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.font-semibold {
  font-weight: 600;
}

.space-x-3 > * + * {
  margin-left: 0.75rem;
}

/* Image styling */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
