/*
  A more modern, interactive, and aesthetic design:
  - Diagonal hero overlay
  - Parallax sign-up section
  - Fade-in animations
  - Privacy policy is small, subtle, and at the bottom
*/

:root {
  --font-family: 'Inter', sans-serif;
  --primary-color: #e74c3c;       /* example brand color (red) */
  --secondary-color: #f39c12;     /* example brand color (gold) */
  --dark-color: #333;
  --light-color: #fff;
  --bg-color: #fafafa;
  --transition-speed: 0.4s;
  --border-radius: 6px;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--dark-color);
  line-height: 1.6;
}

/* Header / Navbar */
.site-header {
  background-color: var(--light-color);
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 1em 2em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .logo img {
  width: 40px;
  height: auto;
}

/* Add these lines to style your new "Stark" text next to the logo image */

/* Ensure the logo container is a flex container */
.logo {
  display: flex;
  align-items: center;  /* Vertically center the items */
  gap: 0.5rem;         /* Spacing between the image and text */
}

/* Keep your existing logo image styles here if any */
.logo img {
  width: 60px;         /* Example: adjust as desired */
  height: auto;
}

/* New text styling for "Stark" */
.logo-text {
  font-size: 1.3rem;   /* Adjust size as needed */
  font-weight: 700;    /* Bold or semi-bold */
  color: #333;         /* Match your brand’s color scheme */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5em;
}

.nav-links li {
  transition: opacity var(--transition-speed) ease;
}

.nav-links li:hover {
  opacity: 0.7;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark-color);
  font-weight: 500;
}

/* Hero Section */
.hero {
  position: relative;
  /* angled gradient background */
  background: linear-gradient(135deg, #FFD54F 0%, #EF5350 100%);
  color: var(--light-color);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5em 2em;
  overflow: hidden; /* for the diagonal overlay */
}

.hero-content {
  max-width: 600px;
  z-index: 2; /* above diagonal overlay */
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.brand-name {
  color: var(--light-color);
  font-weight: 800;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-btns .button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--light-color);
  text-decoration: none;
  padding: 0.8em 1.5em;
  margin-right: 0.5em;
  border-radius: var(--border-radius);
  transition: background-color var(--transition-speed), box-shadow var(--transition-speed), transform var(--transition-speed);
}

.hero-btns .button:hover {
  background-color: #c0392b;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

.button-light {
  background-color: var(--secondary-color);
}

.button-light:hover {
  background-color: #d3830b;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

/* Diagonal overlay on hero */
.hero-diagonal {
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 100%;
  background: rgba(0,0,0,0.1);
  transform: skewY(-4deg);
  transform-origin: 0;
  z-index: 1;
}

/* Fade-in effect (invisible by default) */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-speed) ease-out, transform var(--transition-speed) ease-out;
}

.fade-in-section.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Product Section */
.product-section {
  background-color: var(--light-color);
  padding: 4em 2em;
}

.product-section .container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.product-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.product-section p {
  margin-bottom: 2rem;
  color: #555;
  line-height: 1.8;
}

.product-section ul {
  list-style: none;
  text-align: left;
  margin: auto;
  max-width: 700px;
  padding-left: 0;
}

.product-section ul li {
  margin-bottom: 1rem;
  padding-left: 2em;
  position: relative;
}

.product-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-size: 1.3rem;
  line-height: 1;
  top: 0.1em;
}

/* Sign Up Section - Parallax background */
.signup-section {
  position: relative;
  background: url("assets/moon-background.jpg") center center / cover no-repeat fixed; /* parallax effect with 'fixed' */
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4em 2em;
}

.signup-overlay {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 3em 2em;
  text-align: center;
  border-radius: var(--border-radius);
  max-width: 600px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.signup-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.signup-content p {
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  line-height: 1.6;
}

.signup-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--light-color);
  text-decoration: none;
  padding: 0.8em 1.5em;
  border-radius: var(--border-radius);
  transition: background-color var(--transition-speed), box-shadow var(--transition-speed), transform var(--transition-speed);
}

.signup-button:hover {
  background-color: #c0392b;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  background-color: var(--light-color);
  text-align: center;
  padding: 1.5em;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.06);
}

.site-footer p {
  color: #666;
  font-size: 0.9rem;
}

/* DE-EMPHASIZED PRIVACY POLICY */
.privacy-section {
  background-color: #f9f9f9;
  padding: 2em 1em;
  font-size: 0.85rem;
  color: #777;
}

.privacy-section .container {
  max-width: 900px;
  margin: auto;
  text-align: left;
}

.privacy-heading {
  font-size: 1.3rem; 
  color: #999;
  margin-bottom: 1rem;
  font-weight: 600;
}

.privacy-section p {
  margin-bottom: 1rem;
  line-height: 1.5;
}

.privacy-section p strong {
  color: #666; 
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 3rem;
  right: 2rem;
  background-color: var(--primary-color);
  color: var(--light-color);
  text-decoration: none;
  padding: 0.6em 1em;
  border-radius: var(--border-radius);
  font-weight: 700;
  display: none;
  transition: background-color var(--transition-speed), box-shadow var(--transition-speed), transform var(--transition-speed);
}

.back-to-top:hover {
  background-color: #c0392b;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

.show-btn {
  display: inline-block;
}




/* Minimal extra styling for the standalone Privacy Policy page */
.privacy-body {
  background-color: #fafafa;
}

/* Make the privacy page fill the screen for a clean layout */
.standalone-privacy {
  min-height: 100vh;
  padding-top: 3em;
  font-size: 0.9rem;       /* slightly smaller text if you want it to be subtle */
  color: #777;            /* subdued color */
}

/* Adjust heading color / size */
.privacy-heading {
  font-size: 1.5rem;
  color: #999;
  margin-bottom: 1rem;
  font-weight: 600;
}







/* Fix alignment for standalone terms page */
.terms-body {
  background-color: #fafafa;
  font-family: 'Inter', sans-serif;
}

.standalone-terms {
  max-width: 800px; /* Restrict the width for readability */
  margin: 0 auto; /* Center the content horizontally */
  padding: 2em 1em; /* Add space around the content */
  font-size: 1rem; /* Standard font size */
  color: #555; /* Subtle text color */
}

.terms-heading {
  text-align: center; /* Center the heading */
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
  font-weight: 700;
}

.terms-section p {
  margin-bottom: 1rem;
  line-height: 1.6;
  text-align: justify; /* Ensure readable alignment */
}

.terms-section p strong {
  color: #444;
}