/* Root Theme Variables */
:root {
  --primary: #8338EC;
  --accent: #3A86FF;
  --secondary: #8338EC;
  --text: #111;
  --bg: #fff;
  --bg-alt: #f9f9f9;
  --border: #ddd;
  --shadow: rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] {
  --text: #f1f1f1;
  --bg: #121212;
  --bg-alt: #1e1e1e;
  --border: #333;
  --shadow: rgba(255, 255, 255, 0.05);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

/* Header */
.hero {
  background: var(--bg-alt);
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.header-content {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  position: relative;
  gap: 1rem;
}

/* Burger Menu */
.burger-menu {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  transition: opacity 0.3s ease;
}

.burger-menu.hidden {
  opacity: 0;
  pointer-events: none;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Breadcrumb Styles */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
  grid-column: 2;
  justify-self: start;
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--text);
  opacity: 0.7;
}

/* Navigation Panel */
.nav-panel {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background-color: #000;
  z-index: 1000;
  transition: left 0.3s ease;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.nav-panel.open {
  left: 0;
}

.nav-content {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.close-nav {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem 0;
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.nav-logo-text {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-menu a {
  color: var(--secondary);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
  border-radius: 8px;
  margin: 0 -1rem;
  border-bottom: 1px solid rgba(131, 56, 236, 0.2);
}

.nav-menu a:last-child {
  border-bottom: none;
}

.nav-menu a:hover {
  background-color: #7BDFF2;
  transform: translateX(5px);
}

.branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.app-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
}

.app-name {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--secondary);
}

.app-store-button {
  grid-column: 4;
  justify-self: end;
}

.app-store-button img {
  height: 40px;
}

/* Header Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  grid-column: 3;
  justify-self: center;
}

.header-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.header-logo-text {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 1.8rem;
  color: var(--secondary);
  font-weight: 400;
}

/* Slideshow */
.slideshow-container {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.sub-heading-section {
  background: white;
  padding: 1rem 2rem;
  margin-bottom: 1.5rem;
  border-radius: 1rem;
  text-align: left;
}

.sub-heading-section h3 {
  font-size: 1.8rem;
  color: var(--secondary);
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

.sub-heading-logo {
  width: 20px;
  height: 20px;
  margin-bottom: 1rem;
  display: block;
  object-fit: contain;
  border-radius: 10px;
}

.floof-text {
  color: var(--secondary);
  font-size: 3.6rem;
  font-weight: 700;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
  animation: fadeIn 0.5s ease-in;
}

.feature {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.feature.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}

.feature-text h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #7BDFF2;
}

.feature-text p {
  font-size: 1rem;
  color: var(--text);
}

.feature img {
  flex: 1;
  min-width: 280px;
  max-width: 300px;
  border-radius: 1rem;
  box-shadow: 0 0 20px var(--shadow);
  object-fit: contain;
  width: 100%;
  height: auto;
  max-height: 400px;
}

.wellness-images {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Slideshow Controls */
.slideshow-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.nav-btn {
  background: var(--secondary);
  border: none;
  padding: 0.5rem 1rem;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 10px;
  cursor: pointer;
}

.slide-indicators {
  display: flex;
  gap: 0.5rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  background: transparent;
  cursor: pointer;
}

.indicator.active {
  background: var(--secondary);
}

/* Footer */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 2rem 1rem;
  margin-top: 3rem;
}

.footer-content {
  max-width: 1100px;
  margin: auto;
  position: relative;
  min-height: 200px;
}

.footer-branding {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo {
  width: 20px;
  height: 20px;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
  justify-content: center;
}

.footer-nav a,
.footer-email {
  color: var(--secondary);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.footer-first-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-first-line span {
  color: var(--secondary);
}

.footer-text p {
  margin-bottom: 0.5rem;
  display: inline;
  margin-right: 1.5rem;
}

.footer-email {
  display: block;
  margin-top: 0.5rem;
}

/* Privacy Page Styles */
.privacy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  min-height: calc(100vh - 200px);
}

.privacy-content {
  background: var(--bg);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px var(--shadow);
}

.privacy-content h1 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.privacy-text {
  color: var(--text);
  line-height: 1.6;
  font-size: 0.9rem;
}

.privacy-text h2 {
  color: var(--primary);
  font-size: 1.3rem;
  margin: 2rem 0 1rem 0;
  font-weight: 600;
}

.privacy-text h3 {
  color: var(--secondary);
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem 0;
  font-weight: 600;
}

.privacy-text p {
  margin-bottom: 1rem;
}

.privacy-text ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.privacy-text li {
  margin-bottom: 0.5rem;
}

.privacy-text a {
  color: var(--accent);
  text-decoration: none;
}

.privacy-text a:hover {
  text-decoration: underline;
}

.privacy-text hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */

/* Tablet-specific styles (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    padding: 1.25rem;
  }
  
  .header-content {
    gap: 1.5rem;
  }
  
  .header-logo-text {
    font-size: 1.6rem;
  }
  
  .header-logo-img {
    width: 30px;
    height: 30px;
  }
  
  .app-store-button img {
    height: 38px;
  }
  
  .breadcrumb {
    font-size: 0.85rem;
  }
  
  .sub-heading-section h3 {
    font-size: 1.6rem;
  }
  
  .feature {
    gap: 2.5rem;
  }
  
  .feature-text h2 {
    font-size: 1.4rem;
  }
  
  .feature img {
    max-width: 280px;
    object-fit: contain;
    width: 100%;
    height: auto;
    max-height: 380px;
  }
  
  .wellness-images img {
    max-width: 220px;
    object-fit: contain;
    width: 100%;
    height: auto;
    max-height: 280px;
  }
  
  .slideshow-container {
    padding: 0 1.5rem;
  }
  
  .privacy-container {
    padding: 1.5rem 1rem;
  }
  
  .privacy-content {
    padding: 1.5rem;
  }
  
  .privacy-content h1 {
    font-size: 1.8rem;
  }
}

/* Mobile and tablet styles (768px and below) */
@media (max-width: 768px) {
  .hero {
    padding: 1rem;
  }
  
  .header-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .header-logo {
    order: 2;
  }
  
  .burger-menu {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    order: 0;
  }
  
  .breadcrumb {
    order: 1;
    font-size: 0.8rem;
    margin-left: 3rem;
    align-self: flex-start;
  }
  
  .app-store-button {
    order: 3;
    margin-top: 0.5rem;
  }
  
  .app-store-button img {
    height: 35px;
  }
  
  .header-logo-text {
    font-size: 1.5rem;
  }
  
  .header-logo-img {
    width: 28px;
    height: 28px;
  }
  
  .sub-heading-section h3 {
    font-size: 1.4rem;
  }
  
  .feature {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .feature-text {
    min-width: auto;
    max-width: none;
  }
  
  .feature img {
    min-width: auto;
    max-width: 250px;
    object-fit: contain;
    width: 100%;
    height: auto;
    max-height: 350px;
  }
  
  .wellness-images {
    justify-content: center;
  }
  
  .wellness-images img {
    max-width: 200px;
    object-fit: contain;
    width: 100%;
    height: auto;
    max-height: 250px;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-first-line {
    flex-direction: column;
    gap: 0.25rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 0.75rem;
  }
  
  .header-logo-text {
    font-size: 1.3rem;
  }
  
  .header-logo-img {
    width: 24px;
    height: 24px;
  }
  
  .app-store-button img {
    height: 30px;
  }
  
  .sub-heading-section {
    padding: 0.75rem 1rem;
  }
  
  .sub-heading-section h3 {
    font-size: 1.2rem;
  }
  
  .feature-text h2 {
    font-size: 1.3rem;
  }
  
  .feature-text p {
    font-size: 0.9rem;
  }
  
  .slideshow-container {
    padding: 0 0.5rem;
  }
  
  .nav-panel {
    width: 100%;
    left: -100%;
  }
  
  .nav-content {
    padding: 1rem;
  }
  
  .breadcrumb {
    order: 1;
    margin-left: 2.5rem;
    font-size: 0.75rem;
  }
  
  .privacy-container {
    padding: 1rem 0.5rem;
  }
  
  .privacy-content {
    padding: 1rem;
  }
  
  .privacy-content h1 {
    font-size: 1.6rem;
  }
  
  .privacy-text h2 {
    font-size: 1.2rem;
  }
  
  .privacy-text h3 {
    font-size: 1rem;
  }
}

/* Large desktop screens (1200px and above) */
@media (min-width: 1200px) {
  .hero {
    padding: 2rem;
  }
  
  .header-content {
    gap: 2rem;
  }
  
  .header-logo-text {
    font-size: 2rem;
  }
  
  .header-logo-img {
    width: 36px;
    height: 36px;
  }
  
  .app-store-button img {
    height: 45px;
  }
  
  .breadcrumb {
    font-size: 1rem;
    margin-left: 1.5rem;
  }
  
  .sub-heading-section h3 {
    font-size: 2.2rem;
  }
  
  .feature {
    gap: 3rem;
  }
  
  .feature-text h2 {
    font-size: 1.7rem;
  }
  
  .feature-text p {
    font-size: 1.1rem;
  }
  
  .feature img {
    max-width: 350px;
    object-fit: contain;
    width: 100%;
    height: auto;
    max-height: 450px;
  }
  
  .wellness-images img {
    max-width: 250px;
    object-fit: contain;
    width: 100%;
    height: auto;
    max-height: 320px;
  }
  
  .slideshow-container {
    padding: 0 2rem;
  }
  
  .privacy-container {
    padding: 2rem;
  }
  
  .privacy-content {
    padding: 2.5rem;
  }
  
  .privacy-content h1 {
    font-size: 2.5rem;
  }
  
  .privacy-text h2 {
    font-size: 1.5rem;
  }
  
  .privacy-text h3 {
    font-size: 1.3rem;
  }
} 