/*
 * --- Variant 1 Styles ---
 * Palette: Blue/Grey
 * Fonts: Oswald / Open Sans
 * Container: 1100px
 * Image: 350px
 */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Open+Sans:wght@400;600&display=swap');

:root {
  /* Colors */
  --primary-color: #2980B9;
  --secondary-color: #2C3D4F;
  --accent-color: #34495D;
  --light-color: #ECF0F1;
  --dark-color: #0F1021;
  --highlight-color: #F1C40F; /* Complementary */
  
  /* Gradients & Helpers */
  --gradient-primary: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
  --hover-color: #2471A3; /* Darker primary */
  --background-color: #ffffff;
  --text-color: #374151; /* Tailwind gray-700 */
  --border-color: rgba(41, 128, 185, 0.2);
  --divider-color: rgba(236, 240, 241, 0.2);
  --shadow-color: rgba(44, 61, 79, 0.1);

  /* Fonts */
  --heading-font: 'Oswald', sans-serif;
  --text-font: 'Open Sans', sans-serif;

  /* Sizes */
  --container-width: 1100px;
  --image-width: 350px;
}

body {
  font-family: var(--text-font);
  position: relative;
  overflow-x: hidden;
}

/* Background Pattern */
.background-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%232C3D4F' fill-opacity='0.4'%3E%3Cpath fill-rule='evenodd' d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 40h2l-2 2V40zM0 40h2l-2 2V40z'/%3E%3C/g%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
}

/* Layout Containers */
.header-container,
.footer-container,
.testimonial-container {
  max-width: var(--container-width);
}
.product-container {
  max-width: var(--container-width);
}

/* Header & Footer */
.header-container {
  max-width: 1400px; /* Header wider as requested */
}
.footer-container {
  max-width: 1400px; /* Footer wider as requested */
}
.footer-link {
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: white !important;
  text-decoration: underline;
}

/* Product Section */
.product-image {
  width: 100%;
  max-width: var(--image-width);
  height: auto;
  object-fit: contain;
}
.content-box {
  background-color: var(--light-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-color) 0px 2px 8px;
}
.decor-box {
  position: relative;
}

/* Highlight Box (Content 6) */
.highlight-box {
  background: var(--gradient-primary);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border: 2px solid var(--highlight-color);
}
.highlight-box p {
  color: white;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Button (Content 3) */
.cta-button {
  background: var(--highlight-color);
  color: var(--dark-color);
  border: 2px solid var(--dark-color);
}
.cta-button:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
}
.cta-button span {
  color: var(--dark-color) !important;
}
.cta-button:hover span {
  color: var(--light-color) !important;
}


/* Features List (Content 5) */
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Testimonials */
.testimonial-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}