/* =====================================================
   DAISY CHAT - Shared Styles
   ===================================================== */

/* CSS Variables */
:root {
  --cream: #FDF8F3;
  --cream-dark: #FAF3EB;
  --yellow: #F5A623;
  --yellow-light: #FFD87A;
  --yellow-pale: #FFF8E7;
  --orange: #E8913A;
  --sage: #9CAF88;
  --sage-light: #E8EFE4;
  --blush: #F5E1DA;
  --text-dark: #2D2A26;
  --text-medium: #5C574F;
  --text-light: #8A857D;
  --white: #FFFFFF;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --container-max: 1200px;
  --section-padding: 100px;
  --section-padding-mobile: 60px;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--yellow);
  color: var(--text-dark);
  border-color: var(--yellow);
}

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

.btn-outline {
  background: transparent;
  border-color: var(--yellow);
  color: var(--text-dark);
}

.btn-outline:hover {
  background: var(--yellow-pale);
}

.btn-large {
  padding: 16px 36px;
  font-size: 17px;
}

/* =====================================================
   SECTION COMPONENTS
   ===================================================== */
.section-label {
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--sage);
  margin-bottom: 12px;
}

.section-title {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-medium);
  max-width: 600px;
}

/* Coming Soon Badge */
.coming-soon-badge {
  display: inline-block;
  background: var(--sage-light);
  color: var(--sage);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  vertical-align: middle;
}

/* =====================================================
   STICKY BANNER
   ===================================================== */
.sticky-banner {
  background: var(--yellow);
  color: var(--text-dark);
  text-align: center;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 500;
}

.sticky-banner a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sticky-banner a:hover {
  color: var(--orange);
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  background: var(--cream);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo {
  font-family: var(--font-serif);
  font-size: 28px;
  font-style: italic;
  color: var(--orange);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a:not(.btn) {
  font-size: 15px;
  color: var(--text-medium);
  transition: color 0.2s;
}

.nav-links a:not(.btn):hover {
  color: var(--text-dark);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--text-dark);
  color: var(--cream);
  padding: 60px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 24px;
  font-style: italic;
  color: var(--yellow);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-copyright {
  text-align: right;
  font-size: 14px;
  opacity: 0.6;
}

/* =====================================================
   UI SCREENSHOT STYLING
   ===================================================== */
.ui-screenshot {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  display: inline-block;
}

.ui-screenshot img {
  border-radius: 8px;
}

.ui-screenshot-tilted {
  transform: rotate(-2deg);
}

.ui-screenshot-tilted-right {
  transform: rotate(2deg);
}

/* =====================================================
   INLINE TESTIMONIAL
   ===================================================== */
.inline-testimonial {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid var(--yellow);
  margin-top: 32px;
}

.inline-testimonial.centered {
  max-width: 700px;
  margin: 60px auto 0;
}

.inline-testimonial blockquote {
  font-style: italic;
  font-size: 17px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.inline-testimonial cite {
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  color: var(--text-medium);
}

/* =====================================================
   RESPONSIVE - NAVIGATION
   ===================================================== */
@media (max-width: 768px) {
  .nav {
    padding: 16px 20px;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links .btn {
    width: 100%;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  
  .footer-links {
    gap: 16px 24px;
  }
  
  .footer-copyright {
    text-align: center;
  }
}
