/*
Theme Name: ReddyBook Theme
Theme URI: https://www.reddybookappid.com/
Description: Minimalist golden landing page for ReddyBook ID.
Version: 1.0.0
Author: ReddyBook
Text Domain: reddybook
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0a0a;
  color: #f5f5f5;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── HEADER ─── */
.site-header {
  padding: 20px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo a {
  font-size: 22px;
  font-weight: 800;
  color: #D4AF37;
  letter-spacing: -0.5px;
}
.site-logo a span {
  color: #fff;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  text-align: center;
  padding: 120px 0 140px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.13) 0%, rgba(212,175,55,0.03) 40%, transparent 70%);
  pointer-events: none;
  animation: glow 5s ease-in-out infinite;
}
@keyframes glow {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.12); }
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
}
.hero h1 span {
  background: linear-gradient(135deg, #D4AF37, #F5D060);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.15rem;
  color: #999;
  max-width: 500px;
  margin: 0 auto 40px;
  position: relative;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #D4AF37, #F5D060);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  letter-spacing: 0.3px;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

/* ─── FOOTER ─── */
.site-footer {
  background: #111;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #D4AF37;
  margin-bottom: 16px;
}
.footer-col p {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  font-size: 14px;
  color: #888;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #D4AF37;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span {
  font-size: 13px;
  color: #555;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero { padding: 80px 0 100px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}