@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --primary-color: hsl(345, 75%, 22%);     /* Deep Crimson / Royal Maroon */
  --primary-hover: hsl(345, 75%, 16%);
  --secondary-color: hsl(43, 75%, 48%);    /* Warm Silk Gold */
  --secondary-hover: hsl(43, 75%, 40%);
  --bg-cream: hsl(35, 40%, 98%);           /* Soft Ivory/Cream background */
  --text-dark: hsl(210, 25%, 12%);         /* Soft charcoal for readability */
  --text-muted: hsl(210, 12%, 40%);
  --bg-card: hsl(0, 0%, 100%);
  --border-color: hsl(35, 20%, 90%);
  --gold-light: hsl(43, 80%, 96%);
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-medium: 0 10px 30px rgba(128, 0, 32, 0.06); /* Crimson tinted shadow */
  --border-radius: 12px;
}

/* Base resets & styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Reusable buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(120, 18, 43, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Header & Navigation */
header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-subtle);
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-family: var(--font-heading);
  font-weight: bold;
  font-size: 1.2rem;
  border: 1px solid var(--secondary-color);
}

.brand-name {
  font-size: 1.4rem;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

.brand-tagline {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary-color);
  display: block;
  margin-top: -3px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links.active {
  display: flex;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 80px 24px;
  background: linear-gradient(135deg, hsl(345, 60%, 15%) 0%, hsl(345, 75%, 25%) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  background-color: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--secondary-color);
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border: 3px solid var(--secondary-color);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

/* Sections General */
section {
  padding: 80px 24px;
}

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

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  color: var(--secondary-color);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
}

/* About Section */
.about {
  background-color: #fff;
  border-bottom: 1px solid var(--border-color);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
}

.feature-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Categories Section */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.category-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(212, 175, 55, 0.4);
}

.category-img {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.category-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.category-content h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.category-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.category-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--secondary-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.category-link:hover {
  color: var(--primary-color);
}

/* Contact & Info Section */
.contact {
  background-color: var(--gold-light);
  border-top: 1px solid var(--border-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}

.info-item {
  display: flex;
  gap: 15px;
}

.info-icon {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-weight: bold;
  border: 1px solid var(--border-color);
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.info-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 35px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-medium);
  text-align: center;
}

.contact-card h3 {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

/* Privacy Page specific styling */
.privacy-page {
  padding: 60px 24px;
}

.privacy-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 50px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-subtle);
}

.privacy-container h1 {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.privacy-meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
}

.privacy-content h2 {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.privacy-content p {
  color: var(--text-dark);
  margin-bottom: 20px;
  font-size: 0.98rem;
}

.privacy-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style-type: disc;
}

.privacy-content li {
  margin-bottom: 8px;
  font-size: 0.98rem;
  color: var(--text-dark);
}

/* Footer Section */
footer {
  background-color: var(--primary-color);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 24px 30px;
  font-size: 0.9rem;
  border-top: 3px solid var(--secondary-color);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 15px;
  max-width: 320px;
}

.footer-title {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
}

.footer-bottom-links a:hover {
  color: var(--secondary-color);
}

/* Responsiveness Utilities */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero-description {
    margin: 0 auto 35px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-container {
    grid-template-columns: 1.5fr 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 24px;
  }
  .nav-links {
    display: none;
  }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
    gap: 15px;
  }
  .nav-toggle {
    display: block;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .hero h1 {
    font-size: 2.3rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .features-list {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .privacy-container {
    padding: 30px 20px;
  }
  .privacy-container h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 14px 16px;
  }
  .brand-name {
    font-size: 1.1rem;
  }
  .brand-tagline {
    font-size: 0.58rem;
    letter-spacing: 1.2px;
  }
  section,
  .hero {
    padding: 50px 16px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .contact-card,
  .privacy-container {
    padding: 24px 16px;
  }
  .btn {
    width: 100%;
  }
}
