/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  background-color: #f8f4e9;
  color: #333;
  line-height: 1.6;
}

p {
  font-size: 1.5rem;
}

/* Container */
.minimalist-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo-icon {
  width: 40px;
  height: 40px;
  color: #c8b1d9;
}
.logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.1em;
}

.main-nav {
  display: flex;
  gap: 2rem;
}
.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #c8b1d9;
  transition: width 0.3s ease;
}
.main-nav a:hover::after {
  width: 100%;
}

/* Main Content */
.main-content {
  margin-top: 80px;
}

/* Hero Section */
.hero-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  padding-right: 2rem;
}
.hero-text h2 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.2;
  color: #c8b1d9;
}
.hero-text p {
  font-size: 1.5rem;
  color: #333;
  margin: 0;
}

.hero-image {
  position: relative;
}

.image-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.image-container .portrait {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.image-container .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(200, 177, 217, 0.1), rgba(196, 154, 51, 0.1));
  mix-blend-mode: overlay;
}
.image-container:hover .portrait {
  transform: scale(1.05);
}

/* Categories Section */
.categories-section {
  padding: 6rem 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Category Colors */
.sci-fi {
  background-color: #d7c1e0;
  color: white;
}

.fantasy {
  background-color: #c49a33;
  color: white;
}

.modern {
  background-color: #f26d3d;
  color: white;
}

.reviews {
  background-color: #d3bf99;
  color: white;
}

/* Gradient Styles */
.gradient-purple {
  background: linear-gradient(135deg, #c8b1d9 0%, rgb(163.7284482759, 125.5603448276, 191.9396551724) 100%);
}

.gradient-gold {
  background: linear-gradient(135deg, #c49a33 0%, rgb(135.2955465587, 106.3036437247, 35.2044534413) 100%);
}

.gradient-orange {
  background: linear-gradient(135deg, #f26d3d 0%, rgb(212.2753623188, 66.7463768116, 14.2246376812) 100%);
}

.gradient-neutral {
  background: linear-gradient(135deg, #d3bf99 0%, rgb(187.9452054795, 157.4657534247, 99.5547945205) 100%);
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
.category-card:hover {
  transform: translateY(-5px);
}
.category-card .card-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  text-align: center;
}
.category-card .card-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.category-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background-color: #f8f4e9;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 1.875rem;
  color: #c8b1d9;
  margin-bottom: 1.5rem;
}
.about-text p {
  line-height: 1.8;
  color: #333;
}

/* Newsletter Section */
.newsletter-section {
  padding: 6rem 0;
  background-color: #f8f4e9;
  position: relative;
  overflow: hidden;
}

.newsletter-icon {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  color: #c8b1d9;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.newsletter-content h2 {
  font-size: 1.875rem;
  color: #c8b1d9;
  margin-bottom: 1rem;
}
.newsletter-content p {
  color: #333;
  margin-bottom: 2rem;
}

.newsletter-header {
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  flex: 1;
}

.newsletter-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(200, 177, 217, 0.2);
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.newsletter-input:focus {
  outline: none;
  border-color: #c8b1d9;
}

.newsletter-button {
  padding: 1rem 2rem;
  background-color: #c8b1d9;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.newsletter-button:hover {
  background-color: rgb(175.8189655172, 142.7068965517, 200.2931034483);
}

.newsletter-message {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #333;
}

/* Newsletter Loading States */
.newsletter-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: #c8b1d9;
  animation: spin 1s ease-in-out infinite;
  margin-bottom: 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.newsletter-message-warning {
  color: #856404;
  background-color: #fff3cd;
  padding: 10px;
  border-radius: 4px;
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-text h2 {
    font-size: 1.875rem;
  }
}
@media (max-width: 576px) {
  .logo h1 {
    font-size: 1.25rem;
  }
  .hero-text h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-text {
    padding-right: 0;
    text-align: center;
  }
  .hero-text h2 {
    font-size: 2.5rem;
  }
  .newsletter-icon {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 768px) {
  .minimalist-container {
    padding: 0 1rem;
  }
  .header-content {
    padding: 0 1rem;
  }
  .main-nav {
    gap: 1rem;
  }
  .form-group {
    flex: 1;
  }
  .newsletter-button {
    padding: 1rem;
  }
  .newsletter-icon {
    width: 150px;
    height: 150px;
    right: 0;
  }
}
@media (max-width: 480px) {
  .logo h1 {
    font-size: 1.2rem;
  }
  .hero-text h2 {
    font-size: 2rem;
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-icon {
    display: none;
  }
}

/*# sourceMappingURL=home.css.map */
