/*
Theme Name: GO Theme
Theme URI: https://gokhanal.com
Author: Govinda Khanal
Description: Minimal nothing page.
Version: 1.0
*/
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: #f4f4f4;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    padding-bottom: 120px; /* space for sticky button */
}

/* ------------------------
   Center GO Circle
------------------------ */
.wrapper {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle {
    width: 240px;
    height: 240px;
    background: #111;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.circle h1 {
    color: #fff;
    font-size: 80px;
    margin: 0;
    letter-spacing: 4px;
}

/* ------------------------
   Support Tier Grid
------------------------ */
.support.wp-block-columns {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr); /* desktop 4 per row */
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Cards styling */
.support.wp-block-columns > .wp-block-column {
    width: 100% !important;
    flex: unset !important;
}

.inner-support {
    background: #ffffff;
    padding: 10px;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.inner-support:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* ------------------------
   Responsive Mobile 2 per row
------------------------ */
@media (max-width: 768px) {
    .support.wp-block-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

/* ------------------------
   Sticky Bottom Button
------------------------ */
.support-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 14px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    z-index: 9999;
}

.support-btn {
background: #1354ab;
color: #ffffff;
border: none;
padding: 10px 20px;
font-size: 16px;
border-radius: 30px;
width: 90%;
max-width: 200px;
cursor: pointer;
font-weight: 600;
transition: background 0.2s ease;
}

.support-btn:hover {
    background: #1354ab;
}

/* ------------------------
   Expand Section
------------------------ */
.support-expand {
  position: fixed;
bottom: 60px;
left: 50%;
transform: translate(-50%, 110%);
width: 90%;
max-width: 400px;
background: #ffffff;
padding: 10px;
box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
transition: transform 0.35s ease;
z-index: 9998;
border-top-left-radius: 24px;
border-top-right-radius: 24px;
text-align: center;
}

.support-expand.active {
    transform: translate(-50%, 0);
}

.support-expand img {
    width: 350px;
    max-width: 100%;
    margin-top: 16px;
    border-radius: 12px;
}

/* Support section layout */
.support {
  gap: 20px;
  margin-top: 25px;
}

/* Donation cards */
.inner-support {
  background: #f7f8fb;
  padding: 22px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}

/* Hover effect */
.inner-support:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Price text */
.inner-support strong {
  font-size: 30px;
  color: #2c3e50;
}

/* Description spacing */
.inner-support p {
  margin-bottom: 8px;
}

/* Info section */
.info {
  margin-top: 40px;
}

.text-info {
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
}

