/* style/beginner-guide-common-terms.css */

/* Base styles and variables for .page-beginner-guide-common-terms */
.page-beginner-guide-common-terms {
  font-family: 'Arial', sans-serif;
  color: #1a1a1a; /* Very dark grey for high contrast */
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-beginner-guide-common-terms__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-beginner-guide-common-terms__hero {
  position: relative;
  background: linear-gradient(135deg, #FFD700 0%, #1E90FF 100%); /* Gold to Blue gradient */
  color: #FFFFFF; /* White text on gradient for high contrast */
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.page-beginner-guide-common-terms__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #FFFFFF;
}

.page-beginner-guide-common-terms__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #EEEEEE;
}

.page-beginner-guide-common-terms__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.2;
}

.page-beginner-guide-common-terms__hero .page-beginner-guide-common-terms__container {
  position: relative;
  z-index: 1;
}

/* General Section Styles */
.page-beginner-guide-common-terms__section {
  padding: 60px 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid #e0e0e0;
}

.page-beginner-guide-common-terms__section--alt-bg {
  background-color: #f0f7ff; /* Lighter blue variant for contrast */
}

.page-beginner-guide-common-terms__section-title {
  font-size: 2.5em;
  color: #1E90FF; /* Dodger Blue for main titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-beginner-guide-common-terms__section p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #333333; /* Dark grey for body text */
}

.page-beginner-guide-common-terms__section strong {
  color: #1a1a1a;
}

/* Grid for Term Cards */
.page-beginner-guide-common-terms__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-beginner-guide-common-terms__term-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide-common-terms__term-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-beginner-guide-common-terms__term-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for term titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-beginner-guide-common-terms__term-card p {
  font-size: 1em;
  color: #555555;
}

/* Image styles within sections */
.page-beginner-guide-common-terms__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-common-terms__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide-common-terms__image--right {
  float: right;
  margin-left: 30px;
  width: 40%; /* Adjust as needed */
}

.page-beginner-guide-common-terms__image--left {
  float: left;
  margin-right: 30px;
  width: 40%; /* Adjust as needed */
}

.page-beginner-guide-common-terms__section:nth-of-type(3) .page-beginner-guide-common-terms__container::after,
.page-beginner-guide-common-terms__section:nth-of-type(4) .page-beginner-guide-common-terms__container::after {
  content: '';
  display: table;
  clear: both;
}

/* List for tips */
.page-beginner-guide-common-terms__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
}

.page-beginner-guide-common-terms__list li {
  background-color: #fefefe;
  border-left: 5px solid #FFD700;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333333;
}

.page-beginner-guide-common-terms__list li strong {
  color: #1E90FF;
}

/* Call to Action Section */
.page-beginner-guide-common-terms__section--cta {
  background-color: #1E90FF; /* Dodger Blue background */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-beginner-guide-common-terms__section--cta .page-beginner-guide-common-terms__section-title {
  color: #FFD700; /* Gold title on blue background */
}

.page-beginner-guide-common-terms__section--cta p {
  color: #EEEEEE;
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* Buttons */
.page-beginner-guide-common-terms__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-beginner-guide-common-terms__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1a1a1a; /* Dark text on gold */
  border: 2px solid #FFD700;
}

.page-beginner-guide-common-terms__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-common-terms__btn--secondary {
  background-color: #FFFFFF;
  color: #1E90FF; /* Blue text on white button */
  border: 2px solid #FFFFFF;
}

.page-beginner-guide-common-terms__btn--secondary:hover {
  background-color: #e0f0ff;
  border-color: #e0f0ff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Copyright */
.page-beginner-guide-common-terms__copyright {
  background-color: #1a1a1a;
  color: #b0b0b0;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-beginner-guide-common-terms__hero-title {
    font-size: 2.8em;
  }
  .page-beginner-guide-common-terms__hero-subtitle {
    font-size: 1.3em;
  }
  .page-beginner-guide-common-terms__section-title {
    font-size: 2em;
  }
  .page-beginner-guide-common-terms__image--right,
  .page-beginner-guide-common-terms__image--left {
    float: none;
    margin: 30px auto;
    width: 80%;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide-common-terms__hero {
    padding: 80px 0;
  }
  .page-beginner-guide-common-terms__hero-title {
    font-size: 2.2em;
  }
  .page-beginner-guide-common-terms__hero-subtitle {
    font-size: 1.1em;
  }
  .page-beginner-guide-common-terms__section {
    padding: 40px 0;
  }
  .page-beginner-guide-common-terms__section-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-common-terms__grid {
    grid-template-columns: 1fr;
  }
  .page-beginner-guide-common-terms__term-title {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-common-terms__hero-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-common-terms__hero-subtitle {
    font-size: 1em;
  }
  .page-beginner-guide-common-terms__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-beginner-guide-common-terms__section p,
  .page-beginner-guide-common-terms__list li {
    font-size: 0.95em;
  }
  .page-beginner-guide-common-terms__image {
    width: 95%;
  }
}