/* ----------------- RESET & BASE STYLES ----------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* ----------------- HEADER ----------------- */
header {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.logo {
  height: 60px;
  margin-bottom: 1rem;
}

.page-title {
  margin-top: 4rem; /* increase spacing between nav and heading */
}

.page-title h1 {
  font-size: 2.5rem;
  text-align: center;
  color: #fff;
}

/* Action area in header */
.header-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.shop-section {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 900px;
  margin: auto;
}

.plans-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem auto;
  max-width: 1200px;
  padding: 1rem;
}


.plan-card {
  border: 2px solid #000;
  border-radius: 10px;
  padding: 2rem;
  margin-top: 2rem;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.plan-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.plan-card .price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5rem;
}

.plan-card .coming-soon {
  color: #ff5c35;
  font-weight: bold;
  font-size: 1.1rem;
}

/* ----------------- BUTTON STYLES ----------------- */
.btn,
.btn-nav {
  display: inline-block;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Main CTA Button */
.btn {
  background-color: #000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: 2px solid #fff;
}

.btn:hover {
  background-color: #fff;
  color: #000;
}

/* Navigation Buttons */
.nav-buttons {
  display: flex;
  gap: 1rem;
}

.btn-nav {
  background-color: #000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: 2px solid #fff;
}

.btn-nav:hover {
  background-color: #e04a1f;
  color: #fff;
}

/* ----------------- SECTIONS ----------------- */
section {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: auto;
  align-items: center;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #111;
  align-items: center;
}

section p {
  margin-bottom: 1rem;
  align-items: center;
}

.hayden1 {
  display: block;
  margin: 2rem auto;
  width: 50%;
  height: auto;
  border-radius: 8px; /* optional: adds rounded corners */
}

/* Services List */
.services ul {
  list-style: none;
  padding-left: 1rem;
}

.services li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2rem;
}

.services li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #000;
}

.contacts-info {
  text-align: center;
  margin-top: 2rem;
}

.contacts-info a {
  color: #000;
  text-decoration: underline;
}

.contacts-info a:hover {
  color: #ff5c35;
}

/* ----------------- FOOTER ----------------- */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
}

.about-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start; /* Align content to the top */
  gap: 2rem;
  max-width: 1100px;
  margin: 2rem auto;  /* Adjust vertical spacing */
  padding: 1rem 2rem;
}

.about-text {
  flex: 1 1 50%;
  font-size: 1.2rem;      /* Slightly bigger text */
  line-height: 1.7;
  margin-top: 0;          /* Prevent extra space */
}

.about-images {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.about-images img {
  width: 100%;                /* Make images responsive */
  max-width: 300px;           /* Control size */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    align-items: center;
  }

  .about-text, .about-images {
    flex: 1 1 100%;
    text-align: center;
  }

  .about-images img {
    max-width: 80%;
  }
}

main {
  max-width: 900px;   /* limits width so it doesn't stretch too wide */
  margin: 2rem auto;  /* centers horizontally and adds vertical spacing */
  padding: 0 1rem;    /* adds a little side padding for small screens */
  text-align: center; /* centers text inside main */
}

main article {
  margin-bottom: 2rem;  /* space between posts */
}

main article h2 {
  margin-bottom: 0.5rem;
}

main article p {
  margin-bottom: 1rem;
}

/* ----------------- RESPONSIVE STYLES ----------------- */
@media (max-width: 600px) {
  header h1 {
    font-size: 2rem;
  }

  .btn,
  .btn-nav {
    padding: 0.6rem 1rem;
  }

  .nav-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }

  .header-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-nav {
    width: 100%;
    text-align: center;
  }
}
