/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on July 24, 2025 */

@font-face {
    font-family: 'caprasimoregular';
    src: url('./fonts/caprasimo-regular-webfont.eot'); /* Corrected path */
    src: url('./fonts/caprasimo-regular-webfont.eot?#iefix') format('embedded-opentype'), /* Corrected path */
         url('./fonts/caprasimo-regular-webfont.woff2') format('woff2'), /* Corrected path */
         url('./fonts/caprasimo-regular-webfont.woff') format('woff'),   /* Corrected path */
         url('./fonts/caprasimo-regular-webfont.ttf') format('truetype'), /* Corrected path */
         url('./fonts/caprasimo-regular-webfont.svg#caprasimoregular') format('svg'); /* Corrected path */
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Rest of your CSS remains unchanged from the previous version you approved */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'caprasimoregular', 'Times New Roman', serif;
  line-height: 1.6;
  color: #8B2635;
  background-color: #F5F5DC;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(139, 38, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(205, 92, 92, 0.1) 0%, transparent 50%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background: linear-gradient(135deg, #DC143C 0%, #B22222 100%);
  border-bottom: 4px solid #8B2635;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(139, 38, 53, 0.3);
}

.nav-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 0;
}

.nav-links {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.logo {
  font-size: 28px;
  font-weight: 900;
  color: #F5F5DC;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 #C2B280;
  font-family: 'caprasimoregular', serif;
  background: linear-gradient(45deg, #F5F5DC 0%, #FFFACD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(3px 3px 0 #8B2635);
  transform: perspective(500px) rotateX(15deg);
  white-space: nowrap;
}

.nav-links a {
  color: #F5F5DC;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  position: relative;
  font-family: 'caprasimoregular', serif;
  text-shadow: 2px 2px 0 #8B2635;
}

.nav-links a:hover {
  color: #FFB6C1;
  transform: translateY(-2px);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #FFB6C1;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  background: linear-gradient(45deg, #F5F5DC 0%, #FFFACD 25%, #FFF8DC 50%, #FFFACD 75%, #F5F5DC 100%);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(139, 38, 53, 0.05) 10px,
      rgba(139, 38, 53, 0.05) 20px
    );
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 72px;
  font-weight: 900;
  color: #8B2635;
  margin-bottom: 30px;
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: 'caprasimoregular', serif;
  text-shadow: 4px 4px 0 #DC143C, 8px 8px 0 rgba(139, 38, 53, 0.3);
  animation: groovyBounce 2s ease-out;
}

.hero p {
  font-size: 24px;
  color: #8B2635;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.4;
  font-weight: 600;
  font-family: 'Times New Roman', serif;
  text-shadow: 2px 2px 0 rgba(245, 245, 220, 0.8);
  animation: groovySlide 2s ease-out 0.5s both;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #DC143C 0%, #B22222 100%);
  color: #F5F5DC;
  padding: 20px 40px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 0.3s ease;
  box-shadow:
    0 8px 20px rgba(220, 20, 60, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
  border: 3px solid #8B2635;
  font-family: 'caprasimoregular', serif;
  text-shadow: 2px 2px 0 #8B2635;
  animation: groovySlide 2s ease-out 1s both;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 12px 30px rgba(220, 20, 60, 0.6),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

@keyframes groovyBounce {
  0% { transform: translateY(50px) rotate(-2deg); opacity: 0; }
  50% { transform: translateY(-10px) rotate(1deg); opacity: 1; }
  100% { transform: translateY(0) rotate(0deg); opacity: 1; }
}

@keyframes groovySlide {
  0% { transform: translateX(-50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

/* Main Content Sections */
.content-section {
  padding: 80px 0;
  position: relative;
}

.content-section:nth-child(even) {
  background: linear-gradient(135deg, #F5F5DC 0%, #FFFACD 100%);
}

.content-section:nth-child(odd) {
  background: linear-gradient(135deg, #FFF8DC 0%, #F5F5DC 100%);
}

.section-title {
  font-size: 48px;
  font-weight: 900;
  color: #8B2635;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'caprasimoregular', serif;
  text-shadow: 3px 3px 0 #DC143C;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 6px;
  background: linear-gradient(45deg, #DC143C, #B22222);
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(139, 38, 53, 0.3);
}

.section-subtitle {
  font-size: 20px;
  color: #8B2635;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.7;
  font-weight: 500;
  font-family: 'Times New Roman', serif;
}

/* About Section Image Layout */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 3px solid #DC143C;
  box-shadow:
    0 10px 30px rgba(139, 38, 53, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.8);
  background: linear-gradient(135deg, #F5F5DC 0%, #FFFACD 100%);
  transition: all 0.4s ease;
}

.about-image:hover {
  transform: translateY(-5px) rotate(1deg);
  box-shadow:
    0 15px 40px rgba(139, 38, 53, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.8);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    repeating-conic-gradient(
      from 0deg at 50% 50%,
      transparent 0deg,
      rgba(220, 20, 60, 0.1) 30deg,
      transparent 60deg
    );
  animation: rotate 20s linear infinite;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.about-image:hover::before {
  opacity: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 17px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.02);
}

.about-text {
  padding: 0;
}

.about-text .section-subtitle {
  text-align: left;
  margin-bottom: 30px;
  max-width: none;
}

.about-text .section-subtitle:last-child {
  margin-bottom: 0;
}

/* Feature Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  background: linear-gradient(135deg, #F5F5DC 0%, #FFFACD 100%);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow:
    0 10px 30px rgba(139, 38, 53, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.8);
  border: 3px solid #DC143C;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    repeating-conic-gradient(
      from 0deg at 50% 50%,
      transparent 0deg,
      rgba(220, 20, 60, 0.1) 30deg,
      transparent 60deg
    );
  animation: rotate 20s linear infinite;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.feature-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow:
    0 15px 40px rgba(139, 38, 53, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.8);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #DC143C, #B22222);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  border: 3px solid #8B2635;
  box-shadow: 0 6px 15px rgba(139, 38, 53, 0.3);
  position: relative;
  z-index: 2;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #8B2635;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'caprasimoregular', serif; /* Changed font */
  text-shadow: 1px 1px 0 rgba(220, 20, 60, 0.3);
  position: relative;
  z-index: 2;
}

.feature-card p {
  color: #8B2635;
  line-height: 1.7;
  font-size: 16px;
  font-family: 'Times New Roman', serif;
  position: relative;
  z-index: 2;
}

/* Promise Section */
.promise-section {
  background: linear-gradient(135deg, #DC143C 0%, #B22222 100%);
  color: #F5F5DC;
  padding: 80px 0;
  position: relative;
}

.promise-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 50px,
      rgba(245, 245, 220, 0.05) 50px,
      rgba(245, 245, 220, 0.05) 100px
    );
}

.promise-section .section-title {
  color: #F5F5DC;
  text-shadow: 3px 3px 0 #8B2635;
}

.promise-section .section-subtitle {
  color: #F5F5DC;
  opacity: 0.9;
}

.promise-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.promise-item {
  background: linear-gradient(135deg, rgba(245, 245, 220, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 20px;
  padding: 35px;
  border: 3px solid rgba(245, 245, 220, 0.3);
  transition: all 0.3s ease;
  text-align: center;
}

.promise-item:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: 0 15px 35px rgba(139, 38, 53, 0.4);
  border-color: #FFB6C1;
}

.promise-number {
  background: linear-gradient(45deg, #FFB6C1, #FFA0C9);
  color: #8B2635;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  margin: 0 auto 20px;
  border: 3px solid #8B2635;
  box-shadow: 0 8px 20px rgba(139, 38, 53, 0.3);
  font-family: 'caprasimoregular', serif; /* Changed font */
  text-shadow: 2px 2px 0 #F5F5DC;
}

.promise-content h4 {
  font-size: 20px;
  font-weight: 800;
  color: #F5F5DC;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'caprasimoregular', serif; /* Changed font */
  text-shadow: 2px 2px 0 #8B2635;
}

.promise-content p {
  color: #F5F5DC;
  line-height: 1.7;
  font-size: 16px;
  font-family: 'Times New Roman', serif;
  opacity: 0.9;
}

/* Product Preview */
.product-preview {
  background: linear-gradient(135deg, #8B2635 0%, #A0522D 100%);
  color: #F5F5DC;
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.product-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(178, 34, 34, 0.1) 0%, transparent 50%);
}

.product-preview .section-title {
  color: #F5F5DC;
  text-shadow: 3px 3px 0 #DC143C;
}

.product-preview .section-subtitle {
  color: #F5F5DC;
  opacity: 0.9;
}

.product-preview .cta-button {
  background: linear-gradient(45deg, #F5F5DC 0%, #FFFACD 100%);
  color: #8B2635;
  border: 3px solid #DC143C;
  box-shadow: 0 8px 20px rgba(245, 245, 220, 0.3);
  text-shadow: none;
}

.product-preview .cta-button:hover {
  box-shadow: 0 12px 30px rgba(245, 245, 220, 0.5);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #FFF8DC 0%, #F5F5DC 100%);
  padding: 60px 0 40px;
  border-top: 4px solid #DC143C;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 800;
  color: #8B2635;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'caprasimoregular', serif; /* Changed font */
  text-shadow: 1px 1px 0 rgba(220, 20, 60, 0.3);
}

.footer-section p,
.footer-section a {
  color: #8B2635;
  text-decoration: none;
  line-height: 1.7;
  font-size: 16px;
  font-family: 'Times New Roman', serif;
}

.footer-section a:hover {
  color: #DC143C;
  text-shadow: 1px 1px 0 rgba(139, 38, 53, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid #DC143C;
  color: #8B2635;
  font-size: 14px;
  font-family: 'Times New Roman', serif;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-bar {
    flex-direction: column;
    gap: 20px;
    padding: 16px 0;
  }

  .nav-links {
    gap: 20px;
  }

  .logo {
    font-size: 24px; /* Adjusted for smaller screens */
  }

  .nav-links a {
    font-size: 14px; /* Adjusted for smaller screens */
  }

  .hero {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 48px;
    letter-spacing: 2px;
  }

  .hero p {
    font-size: 18px;
  }

  .content-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .features-grid,
  .promise-list {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .promise-item {
    padding: 30px;
  }

  .cta-button {
    font-size: 16px;
    padding: 18px 35px;
    letter-spacing: 2px;
  }

  /* About Section Responsive */
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .about-text .section-subtitle {
    text-align: center;
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Product Page Styles */
.product-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #F5F5DC 0%, #FFFACD 100%);
}

.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 15px 40px rgba(139, 38, 53, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.8);
  border: 4px solid #DC143C;
}

.product-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(139, 38, 53, 0.05) 10px,
      rgba(139, 38, 53, 0.05) 20px
    );
  z-index: 1;
}

.placeholder-image {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #DC143C 0%, #B22222 50%, #8B2635 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5F5DC;
  font-size: 64px;
  font-weight: 900;
  text-shadow: 3px 3px 0 #8B2635;
  position: relative;
  z-index: 2;
}

.product-info {
  padding: 20px 0;
}

.product-title {
  font-size: 48px;
  font-weight: 900;
  color: #8B2635;
  margin-bottom: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'caprasimoregular', serif;
  text-shadow: 3px 3px 0 #DC143C;
  animation: groovyBounce 2s ease-out;
}

.product-price {
  font-size: 36px;
  font-weight: 900;
  color: #DC143C;
  margin-bottom: 30px;
  font-family: 'caprasimoregular', serif;
  text-shadow: 2px 2px 0 rgba(139, 38, 53, 0.3);
}

.product-description {
  font-size: 18px;
  color: #8B2635;
  line-height: 1.8;
  margin-bottom: 40px;
  font-family: 'Times New Roman', serif;
  background: linear-gradient(135deg, rgba(245, 245, 220, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
  padding: 30px;
  border-radius: 15px;
  border: 2px solid rgba(139, 38, 53, 0.2);
}

.product-features {
  margin-bottom: 40px;
}

.features-title {
  font-size: 22px;
  font-weight: 800;
  color: #8B2635;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'caprasimoregular', serif;
  text-shadow: 1px 1px 0 rgba(220, 20, 60, 0.3);
}

.features-list {
  display: grid;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #8B2635;
  font-family: 'Times New Roman', serif;
}

.feature-item .feature-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(45deg, #DC143C, #B22222);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5F5DC;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(139, 38, 53, 0.3);
  margin: 0;
}

.purchase-section {
  background: linear-gradient(135deg, rgba(245, 245, 220, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
  padding: 40px;
  border-radius: 20px;
  border: 3px solid #DC143C;
  box-shadow: 0 10px 30px rgba(139, 38, 53, 0.2);
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.quantity-label {
  font-size: 18px;
  font-weight: 700;
  color: #8B2635;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'caprasimoregular', serif;
}

.quantity-input {
  width: 80px;
  height: 50px;
  border: 3px solid #DC143C;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #8B2635;
  background: #F5F5DC;
  font-family: 'caprasimoregular', serif;
}

.add-to-cart {
  display: block;
  width: 100%;
  background: linear-gradient(45deg, #DC143C 0%, #B22222 100%);
  color: #F5F5DC;
  padding: 20px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 0.3s ease;
  box-shadow:
    0 8px 20px rgba(220, 20, 60, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
  border: 3px solid #8B2635;
  font-family: 'caprasimoregular', serif;
  text-shadow: 2px 2px 0 #8B2635;
  text-align: center;
  margin-bottom: 20px;
}

.add-to-cart:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 12px 30px rgba(220, 20, 60, 0.6),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.buy-now {
  display: block;
  width: 100%;
  background: linear-gradient(45deg, #8B2635 0%, #A0522D 100%);
  color: #F5F5DC;
  padding: 20px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 0.3s ease;
  box-shadow:
    0 8px 20px rgba(139, 38, 53, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
  border: 3px solid #DC143C;
  font-family: 'caprasimoregular', serif;
  text-shadow: 2px 2px 0 #DC143C;
  text-align: center
  text-align: center;
}

/* Responsive Product Page Adjustments */
@media (max-width: 768px) {
  .product-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-image {
    height: auto;
  }

  .placeholder-image {
    height: 300px;
    font-size: 48px;
  }

  .product-title {
    font-size: 36px;
  }

  .product-price {
    font-size: 28px;
  }

  .product-description {
    font-size: 16px;
    padding: 20px;
  }

  .features-title {
    font-size: 20px;
  }

  .feature-item {
    font-size: 14px;
  }

  .purchase-section {
    padding: 30px;
  }

  .quantity-input {
    width: 60px;
    height: 40px;
    font-size: 16px;
  }

  .add-to-cart,
  .buy-now {
    font-size: 18px;
    padding: 16px;
  }
}
/* Press Page Styles */
.press-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #F5F5DC 0%, #FFFACD 100%);
}

.press-container {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(245, 245, 220, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
  padding: 40px;
  border-radius: 20px;
  border: 3px solid #DC143C;
  box-shadow: 0 10px 30px rgba(139, 38, 53, 0.2);
}

.press-title {
  font-size: 48px;
  font-weight: 900;
  color: #8B2635;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'caprasimoregular', serif; /* Changed font */
  text-shadow: 3px 3px 0 #DC143C;
}

.press-description {
  font-size: 18px;
  color: #8B2635;
  text-align: center;
  margin-bottom: 40px;
  font-family: 'Times New Roman', serif;
  line-height: 1.6;
}

.press-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.press-form input,
.press-form textarea {
  padding: 16px;
  border: 3px solid #DC143C;
  border-radius: 10px;
  font-size: 16px;
  font-family: 'Times New Roman', serif;
  color: #8B2635;
  background: #F5F5DC;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.press-form textarea {
  resize: vertical;
  min-height: 150px;
}

.press-form button {
  background: linear-gradient(45deg, #DC143C 0%, #B22222 100%);
  color: #F5F5DC;
  padding: 16px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 2px;
  border-radius: 25px;
  border: 3px solid #8B2635;
  cursor: pointer;
  font-family: 'caprasimoregular', serif; /* Changed font */
  transition: all 0.3s ease;
  text-shadow: 2px 2px 0 #8B2635;
  box-shadow: 0 8px 20px rgba(220, 20, 60, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.press-form button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(220, 20, 60, 0.6), inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

/* Press Page Styles - Matching Site Theme */
.press-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #F5F5DC 0%, #FFFACD 100%);
}

.press-container {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(245, 245, 220, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
  padding: 40px;
  border-radius: 20px;
  border: 3px solid #DC143C;
  box-shadow: 0 10px 30px rgba(139, 38, 53, 0.2);
}

.press-title {
  font-size: 48px;
  font-weight: 900;
  color: #8B2635;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'caprasimoregular', serif; /* Changed font */
  text-shadow: 3px 3px 0 #DC143C;
}

.press-description {
  font-size: 18px;
  color: #8B2635;
  text-align: center;
  margin-bottom: 40px;
  font-family: 'Times New Roman', serif;
  line-height: 1.6;
}

/* Responsive Press Page */
@media (max-width: 768px) {
  .press-container {
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow:
      0 6px 24px rgba(139, 69, 19, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .press-title {
    font-size: 32px;
    text-shadow:
      2px 2px 0 #cd853f,
      4px 4px 0 #a0522d,
      6px 6px 15px rgba(139, 69, 19, 0.4);
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .press-description {
    font-size: 16px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .press-container {
    padding: 30px 20px;
    border-radius: 12px;
  }

  .press-title {
    font-size: 28px;
    text-shadow:
      2px 2px 0 #cd853f,
      3px 3px 0 #a0522d,
      5px 5px 12px rgba(139, 69, 19, 0.4);
    letter-spacing: 0.5px;
  }

  .press-description {
    font-size: 15px;
  }
}

.press-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.press-form input,
.press-form textarea {
  padding: 16px;
  border: 3px solid #DC143C;
  border-radius: 10px;
  font-size: 16px;
  font-family: 'Times New Roman', serif;
  color: #8B2635;
  background: #F5F5DC;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.press-form textarea {
  resize: vertical;
  min-height: 150px;
}

.press-form button {
  background: linear-gradient(45deg, #DC143C 0%, #B22222 100%);
  color: #F5F5DC;
  padding: 16px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 2px;
  border-radius: 25px;
  border: 3px solid #8B2635;
  cursor: pointer;
  font-family: 'caprasimoregular', serif; /* Changed font */
  transition: all 0.3s ease;
  text-shadow: 2px 2px 0 #8B2635;
  box-shadow: 0 8px 20px rgba(220, 20, 60, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.press-form button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(220, 20, 60, 0.6), inset 0 2px 0 rgba(255, 255, 255, 0.3);
}
/* Care and Installation Page Styles */
.care-container {
  background: linear-gradient(135deg, #F5F5DC 0%, #E6E6C7 100%);
  max-width: 800px;
  margin: 40px auto;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(139, 69, 19, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 3px solid #DC143C;
  font-family: 'Times New Roman', serif;
}

.care-title {
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  color: #8B2635;
  text-shadow:
    2px 2px 0 #cd853f,
    4px 4px 0 #a0522d,
    6px 6px 20px rgba(139, 69, 19, 0.5);
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-family: 'caprasimoregular', serif; /* Changed font */
}

.care-description {
  font-size: 18px;
  line-height: 1.7;
  color: #8B2635;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 500;
}

.section-title {
  font-size: 28px;
  font-weight: 900;
  color: #8B2635;
  text-shadow:
    2px 2px 0 #cd853f,
    3px 3px 0 #a0522d,
    5px 5px 15px rgba(139, 69, 19, 0.4);
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: 'caprasimoregular', serif; /* Changed font */
}

.installation-video {
  margin-bottom: 40px;
  text-align: center;
}

.video-placeholder {
  background: linear-gradient(135deg, #DC143C 0%, #B22222 100%);
  border-radius: 15px;
  padding: 60px 40px;
  border: 3px solid #8B2635;
  box-shadow:
    0 8px 20px rgba(220, 20, 60, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.video-icon {
  font-size: 48px;
  color: #F5F5DC;
  margin-bottom: 15px;
  text-shadow: 2px 2px 0 #8B2635;
}

.video-placeholder p {
  font-size: 22px;
  color: #F5F5DC;
  font-weight: 900;
  text-shadow: 2px 2px 0 #8B2635;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.coming-soon {
  background: rgba(255, 255, 255, 0.2);
  color: #F5F5DC;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.installation-guide,
.care-guide {
  margin-bottom: 40px;
}

.instruction-step,
.care-tip {
  background: rgba(255, 255, 255, 0.3);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 20px;
  border: 2px solid #DC143C;
  box-shadow:
    0 4px 15px rgba(220, 20, 60, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.instruction-step h3,
.care-tip h3 {
  font-size: 20px;
  color: #8B2635;
  margin-bottom: 12px;
  font-weight: 700;
  text-shadow: 1px 1px 0 #cd853f;
}

.instruction-step p,
.care-tip p {
  font-size: 16px;
  line-height: 1.6;
  color: #8B2635;
  margin: 0;
}

.warranty-info {
  background: rgba(220, 20, 60, 0.1);
  padding: 30px;
  border-radius: 15px;
  border: 2px solid #DC143C;
  margin-bottom: 40px;
  box-shadow:
    0 4px 15px rgba(220, 20, 60, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.warranty-text {
  font-size: 16px;
  line-height: 1.6;
  color: #8B2635;
  margin: 0;
  text-align: center;
}

.contact-section {
  text-align: center;
}

.contact-text {
  font-size: 16px;
  line-height: 1.6;
  color: #8B2635;
  margin-bottom: 25px;
}

.contact-button {
  background: linear-gradient(45deg, #DC143C 0%, #B22222 100%);
  color: #F5F5DC;
  padding: 16px 32px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 2px;
  border-radius: 25px;
  border: 3px solid #8B2635;
  cursor: pointer;
  font-family: 'caprasimoregular', serif; /* Changed font */
  transition: all 0.3s ease;
  text-shadow: 2px 2px 0 #8B2635;
  box-shadow: 0 8px 20px rgba(220, 20, 60, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.contact-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(220, 20, 60, 0.6), inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .care-container {
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow:
      0 6px 24px rgba(139, 69, 19, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .care-title {
    font-size: 32px;
    text-shadow:
      2px 2px 0 #cd853f,
      4px 4px 0 #a0522d,
      6px 6px 15px rgba(139, 69, 19, 0.4);
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .care-description {
    font-size: 16px;
    line-height: 1.5;
  }

  .section-title {
    font-size: 24px;
  }

  .video-placeholder {
    padding: 40px 20px;
  }

  .video-icon {
    font-size: 36px;
  }

  .video-placeholder p {
    font-size: 18px;
  }

  .instruction-step,
  .care-tip {
    padding: 20px;
  }

  .warranty-info {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .care-container {
    padding: 30px 20px;
    border-radius: 12px;
  }

  .care-title {
    font-size: 28px;
    text-shadow:
      2px 2px 0 #cd853f,
      3px 3px 0 #a0522d,
      5px 5px 12px rgba(139, 69, 19, 0.4);
    letter-spacing: 0.5px;
  }

  .care-description {
    font-size: 15px;
  }

  .section-title {
    font-size: 22px;
  }

  .video-placeholder {
    padding: 30px 15px;
  }

  .video-icon {
    font-size: 32px;
  }

  .video-placeholder p {
    font-size: 16px;
  }

  .instruction-step,
  .care-tip {
    padding: 15px;
  }

  .instruction-step h3,
  .care-tip h3 {
    font-size: 18px;
  }

  .instruction-step p,
  .care-tip p {
    font-size: 15px;
  }

  .warranty-info {
    padding: 20px;
  }

  .warranty-text {
    font-size: 15px;
  }

  .contact-text {
    font-size: 15px;
  }

  .contact-button {
    padding: 14px 28px;
    font-size: 16px;
  }
}
/* Universal responsive safeguard */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
}

.container, .content, .wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
/* Header responsive styles */
.site-header {
  width: 100%;
  padding: 1rem 0;
}

.site-header .container {
  padding: 0 1rem;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  flex: 0 0 auto;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  white-space: nowrap;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .nav-bar {
    flex-direction: column;
    gap: 1rem;
  }

  .logo {
    order: -1; /* Move logo to top */
    margin-bottom: 0.5rem;
    font-size: 22px; /* Adjusted for even smaller screens */
  }

  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links a {
    font-size: 0.9rem;
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .site-header .container {
    padding: 0 0.5rem;
  }

  .nav-links {
    gap: 0.75rem;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

  .logo {
    font-size: 18px; /* Adjusted for very small screens */
  }
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
