
/*
Theme Name: Velvet Vault
Description: A dark romance publisher theme for Velvet Vault - seductive, obsessive, and luxurious love stories.
Author: Velvet Vault
Version: 1.0
Text Domain: velvet-vault
*/

/* Custom Velvet Vault Colors */
:root {
  --vault-black: #0a0a0a;
  --vault-deep-red: #8b1538;
  --vault-silver: #c0c0c0;
  --vault-silver-light: #e5e5e5;
  --vault-red-dark: #6b1027;
}

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

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

/* Typography */
.font-serif {
  font-family: 'Playfair Display', serif;
}

.font-sans {
  font-family: 'Inter', sans-serif;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.bg-vault-black {
  background-color: var(--vault-black);
}

.text-vault-silver {
  color: var(--vault-silver);
}

.text-vault-deep-red {
  color: var(--vault-deep-red);
}

.text-vault-silver-light {
  color: var(--vault-silver-light);
}

.bg-vault-deep-red {
  background-color: var(--vault-deep-red);
}

.bg-vault-red-dark {
  background-color: var(--vault-red-dark);
}

/* Navigation Styles */
.main-navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(192, 192, 192, 0.2);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--vault-silver);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: var(--vault-silver);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: var(--vault-deep-red);
}

.cta-button {
  background-color: var(--vault-deep-red);
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.2s;
}

.cta-button:hover {
  background-color: var(--vault-red-dark);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, var(--vault-black), var(--vault-black), var(--vault-red-dark));
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1494891848038-7bd202a2afeb?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: bold;
  color: var(--vault-silver);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title .italic {
  font-style: italic;
  color: var(--vault-deep-red);
  display: block;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--vault-silver-light);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  background-color: var(--vault-deep-red);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: var(--vault-red-dark);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  border: 2px solid var(--vault-silver);
  color: var(--vault-silver);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background-color: var(--vault-silver);
  color: var(--vault-black);
}

/* Featured Books */
.featured-books {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

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

.featured-book h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--vault-silver);
  margin-bottom: 0.5rem;
}

.featured-book p {
  color: var(--vault-silver-light);
  margin-bottom: 0.25rem;
}

.featured-book .author {
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .featured-books {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* WordPress Specific Styles */
.wp-block-group {
  margin: 0;
}

.aligncenter {
  text-align: center;
}

.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
  width: 1px;
}
