/* 🌟 BODY STYLING */
body {
  background-color: blanchedalmond; /* Light beige background */
}

/* 🌟 MAIN TITLE */
.title {
  font-size: 50px; /* Large headline */
  color: rgb(255, 162, 0); /* Orange */
}

/* 🌟 MAIN IMAGE */
.img1 {
  margin-top: 8px; /* Small gap from top */
  width: 90%; /* Responsive width */
}

/* 🌟 DESCRIPTION */
.desc1 {
  font-size: 20px;
  word-spacing: normal;
}

/* 🌟 DONATE SECTION */
.donatesection {
  margin-top: 150px; /* Spacing from top */
}

/* 🌟 DONATION FORM CONTAINER */
.donateform {
  background-color: white;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* 🌟 BUTTON CONTAINERS */
.center-btn {
  align-items: center;
  display: flex;
  gap: 10px; /* Spacing between buttons */
  margin-bottom: 20px;
}


/* 🌟 PRIMARY DONATE BUTTONS */
.btn1, .btn2 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  width: 270px;
  height: 60px;
  font-size: 18px;
  color: rgb(255, 162, 0); /* Orange text */
  background-color: white;
  border: 2px solid rgb(255, 162, 0);
  text-decoration: none;
  transition: all 0.3s ease; /* Smooth hover effect */
}

/* 🔥 Hover + Focus/Active + JS Active = Orange background, White text */
.btn1:hover, .btn1:focus, .btn1:active,
.btn2:hover, .btn2:focus, .btn2:active,
.center-btn a.active,
.btn-monthly .center-btn a.active {
  background-color: rgb(255, 162, 0);
  color: white;
  outline: none;
}


/* 🌟 NOTE BOXES */
.note1 {
  text-align: center;
  margin: 10px 0 20px 0;
  padding: 20px 20px 10px 20px;
  background-color: blanchedalmond;
}

/* 🌟 NOTE TEXT */
.p1 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  color: rgb(241, 118, 10);
}

.p2 {
  font-size: 13px;
  color: rgb(241, 118, 10);
}


/* 🌟 GIVE MONTHLY SECTION */
.btn-monthly {
  margin: 0;
}

/* Monthly button grid */
.btn-monthly .center-btn {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.btn-monthly .center-btn a {
  display: block;
  padding: 12px;
  text-decoration: none;
  border-radius: 0;
}

/* Highlighted text colors */
.dollar, .privacy {
  color: rgb(255, 162, 0); /* Orange */
}

/* 🌟 MONTHLY BUTTONS */
.btnm1, .btnm2, .btnm3, 
.btnm4, .btnm5, .btnm6  {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  background-color: white;
  border: 2px solid rgb(255, 162, 0);
  text-decoration: none;
  transition: all 0.3s ease; /* Smooth hover */
}

/* Different sizes */
.btnm1, .btnm2, .btnm3, .btnm4, .btnm5, .btnm6 {
  width: 165px;
  height: 60px;
}

/* Default colors */
.btnm1, .btnm2, .btnm3, .btnm4, .btnm5 {
  color: rgb(255, 162, 0);
}

.btnm6 {
  color: rgb(0, 0, 0);
}

/* 🔥 Hover + Focus/Active for monthly buttons */
.btnm1:hover, .btnm1:focus, .btnm1:active,
.btnm2:hover, .btnm2:focus, .btnm2:active,
.btnm3:hover, .btnm3:focus, .btnm3:active,
.btnm4:hover, .btnm4:focus, .btnm4:active,
.btnm5:hover, .btnm5:focus, .btnm5:active,
.btnm6:hover, .btnm6:focus, .btnm6:active{
  background-color: rgb(255, 162, 0);
  color: white;
  outline: none;
}

/* 🌟 DETAILS SECTION */
.details {
  background-color: white;
  width: 90%;
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pdt {
  color: rgb(255, 162, 0);
  font-size: 25px;
  font-weight: bold;
}

/* Details list layout */
.details-list {
  display: flex;
  flex-direction: column;
  padding: 0 50px 50px 50px;
  gap: 0;
}

/* Single detail item */
.detail-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}

/* 🌟 CIRCLE ICONS */
.music-icon,
.detail-icon {
  width: 80px;
  height: 80px;
  background: #f89b1e; /* Orange background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.music-icon img,
.detail-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Text inside detail */
.detail-item p {
  margin: 0;
  text-align: left;
  font-size: 1.1rem;
}

/* Divider line */
.details-list hr {
  border: none;
  border-top: 2px solid #565656;
  margin: 0 0 0 105px;
}

/* 🌟 GLOBAL BREAK LINE */
.break {
  border: none;
  border-top: 2px solid #565656;
  margin: 40px 0;
}




/* 📱 EXTRA SMALL DEVICES (≤425px) */
@media (max-width: 425px), (max-height: 896px) {
  body {
    background-color: white !important;
  }

  /* Donate form simplified */
  .donateform {
    margin: 0;
    padding: 10px 0;
    width: 100%;
    max-width: 100%;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  /* Stack buttons vertically */
  .center-btn {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-bottom: 16px;
  }

  /* Mobile donate buttons */
  .btn1, .btn2 {
    width: 100%;
    height: 50px;
    font-size: 16px;
    margin: 0 0 8px 0 !important;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Mobile note */
  .note {
    width: 100%;
    text-align: center;
    margin: 12px 0;
    padding: 16px 8px;
    background-color: #ffe7c2;
    color: #f35023;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
  }

  .col1 {
    order: 1;
    width: 100%;
    text-align: center;
  }

  .col2 {
    order: 2;
    width: 100%;
    text-align: center;
  }

  .col1 > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .col1 .img1 {
    order: 1;
    width: 100%;
    max-width: none;
    height:auto;
    margin: 0;
    display: block;  
}

  .col1 .title {
    order: 2;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
    text-align: center;
    font-size: 26px;
  }

  .col1 .desc1 {
    order: 3;
    text-align: center;
    font-size: 15px;
    padding: 0px;
    margin-top: 10px;
    line-height: 1.5;
  }

  /* Hide details */
  .details {
    display: none !important;
  }

  /* ✅ Make btnm1–btnm6 into 2 columns */
.btn-monthly .center-btn {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 equal columns */
  max-width: 600px;
  margin: 0;
  text-align: center;
  justify-items: center;
}

.btn-monthly .center-btn a {
  display: block;
  padding: 12px;
  text-decoration: none;
  border-radius: 0;
}

  /* HR fix */
  .details-list hr {
    border: none;
    border-top: 2px solid #565656;
    margin: 0;
  }
}
