/* Global settings */
body {
  background-color: #f0f0f0; /* Lighter gray background */
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}
@media (min-width: 1px) {
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }

  /* Flex container holding the left (header+image) and right (button) sections */
  .content {
    min-width: auto;
    display: flex;
    align-items: center;   /* Vertically center the sections */
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  /* Left section: header and image, aligned to the left */
  .left-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
    min-width: 500px;
  }

  /* Header styling using Yeseva One */
  header h1 {
    font-family: 'Yeseva One', cursive;
    font-style: italic;
    font-size: 2.5em;
    margin: 0;
    text-align: left;
  }

  /* Image container with a 4:3 ratio (600x450) */
  .image-container {
    width: 600px;       /* Increased width */
    height: 650px;      /* Increased height (maintains 4:3 ratio) */
    overflow: hidden;
    border-radius: 8px; /* Optional rounded corners */
    padding-right: 15px;
  }

  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% 46%;   /* Cropped toward the center */
    display: block;
  }

  .button-text {
      font-size: 75px;
      font-family: 'Yeseva One', cursive;
      font-style: italic;
      margin-bottom: 10px; /* Adds spacing between text and button */
      text-align: center;
      color: #333; /* Adjust color as needed */
  }


  /* Button container on the right; centers the button vertically relative to the left section */
  .above-button {
      display: flex;
      flex: 1;
      font-family: 'Yeseva One', cursive;
      font-style: italic;
      font-weight: bold;
      align-self: flex-start;
      font-size: 75px;
  }
  .button-container {
    display: flex;
    align-items: center;   /* Vertical centering */
    justify-content: center;
    flex-direction: column;
    flex: 1;
    min-width: 250px;
    align-items: flex-start;
    padding-left:75px;
    margin-left: 1%;
  }

  /* Pill-shaped button styling using Yeseva One */
  .action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #000;      /* Black background */
    color: #fff;                 /* White text */
    border: none;
    border-radius: 50px;         /* Pill shape */
    padding: 20px 40px;          /* Adjust padding to control the overall size */
    font-size: 3.0em;
    font-family: 'Yeseva One', cursive;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-left:0px;
    min-width: auto;
  }

  .action-button:hover {
    background-color: #333;
  }
}