/**
 * @file
 * Webform paragraph styles for DV Base theme.
 *
 * This file provides base styles for webform paragraphs that can be
 * extended by child themes.
 */

/* ==========================================================================
   Webform Paragraph - Base Styles
   ========================================================================== */

.webform-paragraph {
  margin: 30px 0;
}

.webform-paragraph-wrapper {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.webform-paragraph-title h2 {
  color: #b28047;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.webform-paragraph-description {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  text-align: center;
}

.webform-paragraph-form {
  margin: 20px 0;
}

.webform-paragraph-footer-note {
  margin-top: 15px;
  font-size: 14px;
  color: #666;
  font-style: italic;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  padding-top: 15px;
}

/* ==========================================================================
   Landing Page - Base Styles
   ========================================================================== */

.landing-page {
  /* Base landing page styles */
}

.landing-page-wrapper {
  /* Landing page wrapper styles */
}

.landing-page-banner {
  background: linear-gradient(135deg, #b28047 0%, #8a5f2a 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
  margin-bottom: 40px;
}

.landing-page-banner h1 {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.landing-page-banner .banner-subtitle {
  font-size: 20px;
  font-weight: 300;
  opacity: 0.9;
}

.landing-page-content {
  padding: 40px 0;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
  .webform-paragraph-wrapper {
    margin: 20px 0;
    padding: 15px;
  }

  .webform-paragraph-title h2 {
    font-size: 24px;
  }

  .webform-paragraph-description {
    font-size: 14px;
  }

  .landing-page-banner {
    padding: 40px 0;
  }

  .landing-page-banner h1 {
    font-size: 32px;
  }

  .landing-page-banner .banner-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .landing-page-banner {
    padding: 30px 0;
  }

  .landing-page-banner h1 {
    font-size: 24px;
  }

  .landing-page-banner .banner-subtitle {
    font-size: 14px;
  }
}

/* ==========================================================================
   Site-Specific Override Classes
   ========================================================================== */

/* These classes allow child themes to override styles */
.webform-paragraph--site-vogelpaint-com .webform-paragraph-wrapper {
  /* Vogel Paint specific styles */
}

.webform-paragraph--site-vogelindustrial-com .webform-paragraph-wrapper {
  /* Vogel Industrial specific styles */
}

.webform-paragraph--site-vansicklepaint-com .webform-paragraph-wrapper {
  /* Van Sickle Paint specific styles */
}

.webform-paragraph--site-fill-n-spray-com .webform-paragraph-wrapper {
  /* Fill-n-Spray specific styles */
}

.webform-paragraph--site-pcc .webform-paragraph-wrapper {
  /* PCC specific styles */
}

.webform-paragraph--site-vogelcustom-com .webform-paragraph-wrapper {
  /* Vogel Custom specific styles */
}

.webform-paragraph--site-vogeltraffic-com .webform-paragraph-wrapper {
  /* Vogel Traffic specific styles */
}

.webform-paragraph--site-myoldmasters-com .webform-paragraph-wrapper {
  /* Old Masters specific styles */
}

.webform-paragraph--site-vansickleshop .webform-paragraph-wrapper {
  /* Van Sickle Shop specific styles */
}

.webform-paragraph--site-shop-powder .webform-paragraph-wrapper {
  /* Shop Powder specific styles */
}

.webform-paragraph--site-documents-vogelpaint-com .webform-paragraph-wrapper {
  /* Documents specific styles */
}

.webform-paragraph--site-locations .webform-paragraph-wrapper {
  /* Locations specific styles */
}

