/* NarrativeClarity Theme Preview CSS */

/* Base Styling */
body {
  font-family: "Neue Haas Grotesk", sans-serif;
  color: #0D1C33; /* Deep Navy */
  background-color: #FCFCFC; /* Gallery White */
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Miller Display", serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 0.75em;
}

h2 {
  font-size: 2.5rem;
}

p {
  margin-bottom: 1.5em;
}

a {
  color: #C8B273; /* Brushed Gold */
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #0D1C33; /* Deep Navy */
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.flex {
  display: flex;
}

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

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

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

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

/* Button Styles */
.theme-button {
  display: inline-block;
  background-color: #C8B273; /* Brushed Gold */
  color: #FCFCFC; /* Gallery White */
  font-family: "Neue Haas Grotesk", sans-serif;
  font-weight: 500;
  padding: 16px 32px;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-button:hover {
  background-color: #0D1C33; /* Deep Navy */
  color: #FCFCFC; /* Gallery White */
}

.theme-button-outline {
  display: inline-block;
  background-color: transparent;
  color: #C8B273; /* Brushed Gold */
  font-family: "Neue Haas Grotesk", sans-serif;
  font-weight: 500;
  padding: 14px 30px;
  border: 2px solid #C8B273; /* Brushed Gold */
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-button-outline:hover {
  background-color: #C8B273; /* Brushed Gold */
  color: #FCFCFC; /* Gallery White */
}

/* Responsive Classes */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  
  .section {
    padding: 80px 0;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0;
  }
  
  .section {
    padding: 40px 0;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
}

/* Section Specific Styles */
/* Hero Section */
.hero-section {
  background-color: #0D1C33; /* Deep Navy */
  color: #FCFCFC; /* Gallery White */
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-heading {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #FCFCFC; /* Gallery White */
}

.hero-subheading {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 300;
}

.hero-hook {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.social-proof {
  margin-top: 30px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Animations */
.fade-in {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slide-up {
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
