@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

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

:root {
  --primary-color: #6B4E71;
  --dark-bg: #1a1a1a;
  --light-bg: #2d2d2d;
  --accent-gold: #d4af37;
  --text-light: #e8e8e8;
  --text-muted: #a8a8a8;
}

html, body {
  font-family: 'Libre Baskerville', serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  font-size: 17px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 36px;
  margin-bottom: 1.25rem;
  color: var(--accent-gold);
}

h3 {
  font-size: 24px;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #e8c547;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(26, 26, 26, 0.98);
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 1rem 0;
}

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

.logo {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-gold);
  text-decoration: none;
  transition: text-shadow 0.3s ease;
}

.logo:hover {
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

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

.nav-links a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
    font-size: 12px;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
}

body {
  padding-top: 80px;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

main {
  min-height: calc(100vh - 300px);
}

section {
  padding: 4rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

section:first-of-type {
  border-top: none;
  padding-top: 2rem;
}

.hero {
  background: linear-gradient(135deg, rgba(107, 78, 113, 0.15) 0%, rgba(26, 26, 26, 0.95) 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  animation: fadeIn 0.8s ease-in;
  text-shadow: 0 2px 20px rgba(107, 78, 113, 0.3);
}

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 1s ease-in;
}

.hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1.2s ease-in;
}

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

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.content-text {
  line-height: 1.8;
}

.content-text p {
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 17px;
}

.content-image {
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
}

@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .content-grid.reverse {
    direction: ltr;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  section {
    padding: 2rem 0;
  }
}

.disclaimer-block {
  background-color: rgba(107, 78, 113, 0.1);
  border-left: 3px solid var(--accent-gold);
  padding: 1.5rem;
  margin: 3rem 0;
  border-radius: 2px;
}

.disclaimer-block p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.disclaimer-block strong {
  color: var(--accent-gold);
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 0.8rem 2rem;
  text-decoration: none;
  margin-top: 1rem;
  transition: all 0.3s ease;
  border: 1px solid var(--primary-color);
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 1px;
}

.cta-button:hover {
  background-color: var(--accent-gold);
  color: var(--dark-bg);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  text-shadow: none;
}

footer {
  background-color: var(--light-bg);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-family: 'Cinzel', serif;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 16px;
}

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

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

.footer-section ul li a {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-section ul li a:hover {
  color: var(--accent-gold);
}

.footer-contact {
  font-size: 14px;
  line-height: 1.8;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.footer-contact strong {
  color: var(--text-light);
}

.footer-disclaimer {
  background-color: rgba(107, 78, 113, 0.1);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 3px solid var(--accent-gold);
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: var(--accent-gold);
}

.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background-color: rgba(45, 45, 45, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--text-light);
  font-family: 'Libre Baskerville', serif;
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="email"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

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

.form-submit {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 0.8rem 2rem;
  border: 1px solid var(--primary-color);
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background-color: var(--accent-gold);
  color: var(--dark-bg);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.product-item {
  background-color: var(--light-bg);
  padding: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.3s ease;
}

.product-item:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.product-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.product-item h3 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.product-item p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(26, 26, 26, 0.95);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding: 1.5rem 2rem;
  z-index: 999;
  display: none;
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--accent-gold);
}

.cookie-button {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 0.6rem 1.5rem;
  border: none;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-button:hover {
  background-color: var(--accent-gold);
  color: var(--dark-bg);
}

@media (max-width: 768px) {
  .cookie-banner.show {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-button {
    width: 100%;
    text-align: center;
  }
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

.ornament {
  text-align: center;
  margin: 2rem 0;
  color: rgba(212, 175, 55, 0.3);
  font-size: 24px;
  letter-spacing: 8px;
}
