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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #000;
  overflow-x: hidden;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.logo h1 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  letter-spacing: 2px;
}

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

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #ffd700;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffd700;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #ccc;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #ffd700, #cfae61);
  color: #000;
  padding: 1.2rem 3rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 0.4s both;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  font-size: 1.1rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Collections Section */
.collections {
  padding: 5rem 0;
  background: #111;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  text-align: center;
  color: #fff;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #ffd700;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.collection-card {
  background: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.collection-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.collection-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.collection-card:hover img {
  transform: scale(1.1);
}

.collection-info {
  padding: 1.5rem;
}

.collection-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.collection-info p {
  color: #ccc;
  margin-bottom: 1rem;
}

.collection-link {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.collection-link:hover {
  color: #fff;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background: #000;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid #ffd700;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: #ccc;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-author strong {
  color: #fff;
  display: block;
}

.testimonial-author span {
  color: #888;
  font-size: 0.9rem;
}

/* Newsletter */
.newsletter {
  padding: 4rem 0;
  background: linear-gradient(135deg, #ffd700, #cfae61);
}

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

.newsletter h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 1rem;
}

.newsletter p {
  color: #333;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

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

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
}

.newsletter-form button {
  background: #000;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #333;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #000;
  color: #fff;
  padding: 3rem 0 1rem;
  border-top: 1px solid #333;
}

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

.footer-section h3,
.footer-section h4 {
  font-family: "Playfair Display", serif;
  color: #ffd700;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ffd700;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #888;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Page Headers */
.page-header {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1573408301185-9146fe634ad0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80");
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 0;
}

.page-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
}

.page-subtitle {
  color: #ccc;
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 1s ease 0.2s both;
}

.content-section {
  padding: 5rem 0;
  background: #111;
}

.content-section p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* About Page Styles */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-section img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 2rem;
}

.about-section ul {
  color: #ccc;
  margin-top: 1rem;
  list-style-type: none;
}

.about-section ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.about-section ul li:before {
  content: "•";
  color: #ffd700;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.about-quote {
  text-align: center;
  background: #1a1a1a;
  padding: 3rem;
  border-radius: 15px;
  margin-top: 4rem;
}

.about-quote h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 2rem;
}

.about-quote p {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-style: italic;
}

.about-quote .author {
  color: #ffd700;
  font-weight: 600;
  margin-top: 2rem;
  font-style: normal;
}

/* Shop Page Styles */
.filter-section {
  background: #111;
  padding: 2rem 0;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-button {
  background: #333;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-button.active,
.filter-button:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-2px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
}

.product-name {
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.product-price {
  color: #ffd700;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.add-to-cart {
  background: linear-gradient(45deg, #ffd700, #cfae61);
  color: #000;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.add-to-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Journal Page Styles */
.journal-layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 3rem;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
}

.journal-card {
  background: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.journal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.journal-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.journal-content {
  padding: 1.5rem;
}

.journal-date {
  color: #ffd700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.journal-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.journal-excerpt {
  color: #ccc;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.journal-link {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.journal-link:hover {
  color: #fff;
}

.journal-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.journal-category {
  background: #333;
  color: #ccc;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

.journal-sidebar {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 15px;
  height: fit-content;
}

.journal-sidebar h3 {
  font-family: "Playfair Display", serif;
  color: #ffd700;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.journal-sidebar ul {
  list-style: none;
  margin-bottom: 2rem;
}

.journal-sidebar ul li {
  margin-bottom: 1rem;
}

.journal-sidebar a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.journal-sidebar a:hover {
  color: #ffd700;
}

.journal-search {
  display: flex;
  margin-bottom: 2rem;
}

.journal-search input {
  flex: 1;
  padding: 0.8rem;
  border: 1px solid #333;
  background: #000;
  color: #fff;
  border-radius: 5px 0 0 5px;
  outline: none;
}

.journal-search button {
  background: #ffd700;
  color: #000;
  border: none;
  padding: 0 1rem;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.sidebar-newsletter {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-newsletter input {
  padding: 0.8rem;
  background: #000;
  border: 1px solid #333;
  color: #fff;
  border-radius: 5px;
  outline: none;
}

.sidebar-newsletter button {
  background: #ffd700;
  color: #000;
  border: none;
  padding: 0.8rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
}

/* Contact Page Styles */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.contact-form-section h2,
.contact-info-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 2rem;
}

.contact-form {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 15px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #333;
  border-radius: 8px;
  background: #000;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffd700;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.submit-btn {
  background: linear-gradient(45deg, #ffd700, #cfae61);
  color: #000;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.contact-info {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 15px;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h3 {
  color: #ffd700;
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
}

.contact-item p {
  color: #ccc;
}

.contact-social {
  display: flex;
  gap: 1rem;
}

.contact-social a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-social a:hover {
  color: #ffd700;
}

.faq-section {
  margin-top: 4rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #1a1a1a;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  border-bottom: 1px solid #333;
  position: relative;
}

.faq-question h3 {
  color: #ffd700;
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer p {
  color: #ccc;
  padding: 1.5rem 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* Cart Page Styles */
.cart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.cart-items-section h2,
.cart-summary-section h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 2rem;
}

.cart-item {
  display: flex;
  align-items: center;
  background: #1a1a1a;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 1rem;
}

.cart-item-info {
  flex: 1;
  color: #fff;
}

.cart-item-name {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cart-item-price {
  color: #ffd700;
  font-weight: 600;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 1rem;
}

.quantity-btn {
  background: #ffd700;
  color: #000;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
}

.remove-btn {
  background: #ff4444;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.cart-total {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 15px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: #ccc;
}

.summary-row hr {
  border: 1px solid #333;
  margin: 1rem 0;
  width: 100%;
}

.total-row {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.total-amount {
  font-size: 2rem;
  color: #ffd700;
  font-weight: bold;
}

.checkout-btn {
  background: linear-gradient(45deg, #ffd700, #cfae61);
  color: #000;
  border: none;
  padding: 1rem 3rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 1rem;
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.continue-shopping {
  display: block;
  text-align: center;
  color: #ffd700;
  text-decoration: none;
  margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .collections-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .journal-layout {
    grid-template-columns: 1fr;
  }

  .journal-grid {
    grid-template-columns: 1fr;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .filter-buttons {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 1rem;
  }
}
