/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  /* Gentle Reset Theme */
  --bg-main: #FDFBF7; /* Soft Warm White */
  --bg-secondary: #F3EFE9; /* Delicate Beige */
  --bg-highlight: #FFF5F5; /* Very pale rose */

  --text-main: #2D2D2A; /* Soft Charcoal */
  --text-muted: #6B6B66; /* Warm Grey */
  --text-light: #FDFBF7;

  --accent-rose: #FF66CC; /* Bright Pink */
  --accent-sage: #84A98C; /* Calming Green */
  --accent-gold: #DDA15E; /* Warm Gold */
  
  --primary-btn: #FF66CC;
  --primary-btn-hover: #E055B0;

  --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.08);
  --radius-lg: 24px;
  --radius-md: 12px;

  /* Replaced Next.js font variables with Google Fonts */
  --font-main: 'Outfit', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif; 
  
  --width-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-main);
}

h1 {
  font-size: 2.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--width-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

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

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

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

/* Specific Styles */
.hero-section {
  min-height: 90vh; /* Almost full screen */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at 50% 50%, var(--bg-highlight) 0%, var(--bg-main) 100%);
  padding: 1.5rem 1.5rem;
}

.hero-text-col {
    text-align: left;
}

@media (max-width: 768px) {
    .hero-text-col {
        text-align: center;
        margin-bottom: 2rem;
    }
}


.hero-tag {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(226, 149, 120, 0.1);
  color: var(--accent-rose);
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.section-padding {
  padding: 6rem 1.5rem;
}

.card-soft {
  background: #FFFFFF;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,0.02);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background-color: var(--primary-btn);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(226, 149, 120, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--primary-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226, 149, 120, 0.4);
}

.check-list {
  list-style: none;
  margin-top: 2rem;
}

.check-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.check-icon {
  color: var(--accent-sage);
  margin-right: 1rem;
  font-weight: bold;
  font-size: 1.25rem;
}

.highlight-text {
  color: var(--accent-rose);
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Premium UI Utilities */
.glass-panel {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.bg-pattern-dots {
  background-color: var(--bg-secondary);
  background-image: radial-gradient(rgba(226, 149, 120, 0.15) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

.link-card-premium {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem; /* Larger padding */
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.03);
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.link-card-premium:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 40px rgba(226, 149, 120, 0.15);
  border-color: rgba(226, 149, 120, 0.3);
}

.link-card-premium .icon-box {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--bg-secondary);
  color: var(--accent-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.link-card-premium:hover .icon-box {
  background: var(--accent-rose);
  color: #fff;
  transform: rotate(-5deg) scale(1.1);
}

.link-card-premium .content {
  flex: 1;
}

.link-card-premium .title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.link-card-premium .subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.link-card-premium .arrow-icon {
  width: 2rem;
  height: 2rem;
  color: var(--text-muted);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.link-card-premium:hover .arrow-icon {
  color: var(--accent-rose);
  opacity: 1;
  transform: translateX(5px);
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  display: block;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--width-max);
  margin: 0 auto;
}

.nav-link {
  font-weight: 500;
  color: var(--text-main);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: all 0.2s ease;
}

.nav-link:hover {
  background: rgba(226, 149, 120, 0.1);
  color: var(--accent-rose);
}

.nav-logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-main);
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .section-padding {
    padding: 3rem 1rem;
  }

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

  .hero-section {
    padding: 3rem 1rem;
    min-height: auto; /* Allow content to dictate height on mobile */
  }

  .navbar {
    padding: 0.75rem 1rem;
  }

  /* Make navbar stack on very small screens if needed */
  .navbar-content {
      flex-wrap: wrap;
      gap: 0.5rem;
  }
  
  .nav-logo {
      font-size: 1.1rem;
  }

  .nav-link {
      padding: 0.4rem 0.8rem;
      font-size: 0.9rem;
  }

  .link-card-premium {
    padding: 1.25rem;
    gap: 1rem;
  }
  
  .link-card-premium .icon-box {
    width: 3rem;
    height: 3rem;
  }
  
  .link-card-premium .title {
    font-size: 1.1rem;
  }
  
  h1 {
      font-size: 2rem !important; /* Override inline styles if necessary via class, but usually just for main h1 */
  }
  
  h2 {
      font-size: 1.75rem !important;
  }
}

@media (max-width: 480px) {
    .navbar-content {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
    }
}
