/* Styles for section shortcodes */

/* Base section styles */
.section {
  margin-bottom: 2rem;
  padding: 2rem;
}

/* Full-width section */
.full-width {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.full-width-content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Two-column section */
.two-column-section {
  display: block;
}

.two-column-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.column {
  padding: 1rem;
}

/* Section colors */
.section-dark {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.section-light {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.section-accent {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

/* Section with background image */
.section-image {
  position: relative;
  color: var(--secondary-color);
}

.section-image-content {
  position: relative;
  z-index: 1;
}

.section-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

/* Card with image */
.card-image {
  border: 1px solid var(--primary-color);
  overflow: hidden;
  margin-bottom: 2rem;
}

.card-image-top {
  width: 100%;
  overflow: hidden;
}

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

.card-content {
  padding: 1.5rem;
}

.card-title {
  margin-top: 0;
  margin-bottom: 1rem;
  border-bottom: 3px solid var(--accent-color);
  padding-bottom: 0.5rem;
}

/* Hero section with image */
.hero-image {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .two-column-container {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
}