/* YT BEAUTY - Main Stylesheet */
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #E91E63;
  --secondary: #F8BBD9;
  --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;
  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-500: #a855f7;
  --border-radius-sm: 4px;
  --border-radius: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 20px;
  --border-radius-2xl: 24px;
  --border-radius-3xl: 32px;
  --border-radius-button: 8px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--gray-900);
  background: linear-gradient(to bottom right, var(--pink-50), var(--purple-50));
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Logo Font - Using fallback */
.logo {
  font-family: cursive;
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: bold;
}

/* Layout Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

header .container {
  padding: 1rem 1.5rem;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Navigation */
nav {
  display: none;
}

nav a {
  color: var(--gray-700);
  transition: color 0.3s;
  padding: 0.5rem;
}

nav a:hover {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius-button);
  transition: background-color 0.3s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: rgba(233, 30, 99, 0.9);
}

.menu-button {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .highlight {
  color: var(--primary);
}

.hero p {
  font-size: 1.25rem;
  color: var(--gray-700);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-button);
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: rgba(233, 30, 99, 0.9);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

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

/* Stats Section */
.stats-section {
  padding: 5rem 0;
  background: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.stat-card {
  text-align: center;
}

.stat-icon {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.stat-icon.gradient-1 {
  background: linear-gradient(to bottom right, var(--primary), var(--pink-400));
}

.stat-icon.gradient-2 {
  background: linear-gradient(to bottom right, var(--purple-500), var(--pink-400));
}

.stat-icon.gradient-3 {
  background: linear-gradient(to bottom right, var(--pink-500), var(--primary));
}

.stat-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: var(--gray-600);
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom right, var(--pink-50), var(--purple-50));
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--gray-700);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.about-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-image img {
  border-radius: var(--border-radius-xl);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 20rem;
  object-fit: cover;
}

/* Feature Cards */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius-xl);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-center;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(233, 30, 99, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
  font-size: 1.25rem;
}

.feature-card h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background: white;
}

.service-card {
  background: linear-gradient(to right, var(--pink-50), var(--purple-50));
  border-radius: var(--border-radius-2xl);
  padding: 2rem;
  margin-bottom: 3rem;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-number {
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.service-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.service-description {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.service-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
}

.service-price-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

.service-price-label {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.service-image img {
  border-radius: var(--border-radius-xl);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 20rem;
  object-fit: cover;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.pricing-card {
  background: white;
  border-radius: var(--border-radius-2xl);
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border: 3px solid var(--primary);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -1rem;
  right: 2rem;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-button);
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.pricing-amount {
  text-align: center;
  margin-bottom: 2rem;
}

.price-large {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary);
}

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

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0;
}

.pricing-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
  flex-shrink: 0;
}

/* Cases Section */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.case-card {
  background: white;
  border-radius: var(--border-radius-2xl);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.case-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-button);
  font-size: 0.875rem;
  font-weight: 600;
}

.case-content {
  padding: 2rem;
}

.case-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.case-description {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.case-results {
  background: linear-gradient(to right, var(--pink-50), var(--purple-50));
  padding: 1rem;
  border-radius: var(--border-radius);
}

.case-results h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.case-results ul {
  list-style: none;
  font-size: 0.875rem;
  color: var(--gray-700);
}

.case-results li {
  margin-bottom: 0.25rem;
}

.case-results li::before {
  content: '・';
  margin-right: 0.25rem;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-form {
  background: white;
  border-radius: var(--border-radius-2xl);
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
}

.checkbox-group label {
  font-size: 0.875rem;
  color: var(--gray-700);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: white;
  border-radius: var(--border-radius-2xl);
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.info-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.info-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

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

.highlight-card {
  background: linear-gradient(to right, var(--primary), var(--pink-400));
  color: white;
  border-radius: var(--border-radius-2xl);
  padding: 2rem;
}

.highlight-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.highlight-card p {
  margin-bottom: 1rem;
}

.highlight-card ul {
  list-style: none;
}

.highlight-card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.highlight-card li::before {
  content: '✓';
  font-weight: bold;
}

/* Company Section */
.company-section {
  padding: 5rem 0;
  background: white;
}

.company-card {
  background: linear-gradient(to bottom right, var(--pink-50), var(--purple-50));
  border-radius: var(--border-radius-2xl);
  padding: 2rem;
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.company-item h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.company-item p,
.company-item ul {
  color: var(--gray-700);
}

.company-item ul {
  list-style: none;
}

.company-item ul li {
  margin-bottom: 0.25rem;
}

.company-image {
  display: flex;
  align-items: center;
  justify-center;
}

.company-image img {
  border-radius: var(--border-radius-xl);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 20rem;
  object-fit: cover;
}

/* Footer */
footer {
  background: var(--gray-900);
  color: white;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--gray-400);
  font-size: 0.875rem;
  line-height: 1.8;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--gray-400);
  font-size: 0.875rem;
}

/* Privacy Page Specific */
.privacy-main {
  min-height: 100vh;
  padding: 5rem 0;
}

.privacy-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.privacy-card {
  background: white;
  border-radius: var(--border-radius-2xl);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.privacy-section {
  margin-bottom: 2rem;
}

.privacy-section h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.privacy-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.privacy-section p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.privacy-section ul {
  list-style-position: inside;
  color: var(--gray-700);
  line-height: 1.8;
  margin-left: 1rem;
}

.privacy-section li {
  margin-bottom: 0.25rem;
}

.privacy-highlight {
  background: linear-gradient(to right, var(--pink-50), var(--purple-50));
  border-radius: var(--border-radius-xl);
  padding: 1.5rem;
  margin-top: 1rem;
}

.privacy-footer {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
  margin-top: 2rem;
}

.privacy-footer p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.privacy-back {
  display: inline-block;
  margin-top: 3rem;
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
  
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.75rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .menu-button {
    display: none;
  }
  
  h1 {
    font-size: 4rem;
  }
  
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .company-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.hidden {
  display: none;
}

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

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

.w-full {
  width: 100%;
}
