/*
Theme Name: Roguu Classic
Version: 1.0
*/

:root{
  --stone:#F2F3F1;
  --charcoal:#1F2022;
  --near:#101113;
  --ink:#2C313D;
  --champagne:#B8AD8A;
}

/* reset */
html, body{
  margin: 0;
  padding: 0;
  background: #F6F5F2; /* slightly warmer than stone */
}


/* hero wrapper */
.roguu-hero{
  background: var(--stone);
  min-height: 100vh;                 /* fills the screen */
  padding: 16px 16px 24px;           /* keep your frame */
  display: flex;
  align-items: center;               /* centers the card vertically */
}

.roguu-shell{ width: min(95vw, 1720px); margin: 0 auto; }

/* card */
.roguu-panel{
  position: relative;
  min-height: 82vh;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);

  background-image:
    radial-gradient(ellipse at 60% 45%,
      rgba(242,243,241,.88) 0%,
      rgba(242,243,241,.62) 52%,
      rgba(242,243,241,.80) 100%),
    var(--hero-img);

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  box-shadow: 0 30px 90px rgba(16,17,19,.08);
}

/* overlay */
.roguu-content{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(48px, 6vw, 96px); /* elegant vertical space */
}


/* center content */
.roguu-inner{
  width: min(720px, 100%);
  text-align: center;
}

/* logo */
.roguu-logo{
  width: min(620px, 90%);
  height: auto;
  display: block;
  margin: 0 auto 24px;
  transform: none;

}

/* text */
.roguu-h1{
  margin: 0 0 16px;
  color: var(--charcoal);
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: clamp(44px, 4.8vw, 72px);
  line-height: 1.05;
}

.roguu-lede{
  margin: 0 0 24px;
  color: rgba(31,32,34,.70);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.7;
}

/* button */
.roguu-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--champagne);
  color: var(--near);
  text-decoration:none;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
}

.roguu-socials{
  margin-top: 14px;
  display:flex;
  gap: 8px;
  justify-content:center;
  flex-wrap: wrap;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  color: rgba(31,32,34,.55);
}
.roguu-socials a{ color: rgba(31,32,34,.72); text-decoration:none; }
.roguu-socials a:hover{ color: var(--ink); text-decoration: underline; }


.roguu-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 72px;
  gap: 28px; /* controls overall vertical rhythm */
}

.roguu-logo{
  margin-bottom: 12px;
}

.roguu-h1{
  margin: 0;
}

.roguu-lede{
  margin-top: 8px;
  margin-bottom: 16px;
}

.roguu-cta{
  margin-top: 12px;
}

.roguu-socials{
  margin-top: 8px;
  font-size: 13px;
}

/* large screens only: your perfect position */
@media (min-width: 1100px){
  .roguu-logo{
    transform: translate(325px, -50px);
  }
}

/* tablets */
@media (min-width: 700px) and (max-width: 1099px){
  .roguu-logo{
    width: min(460px, 80%);
    transform: translate(120px, 3px);
  }
}




/* mobile */
@media (max-width: 900px){
  .roguu-panel{ min-height: 520px; background-position:center; }
  .roguu-content{ padding: 22px; }
  .roguu-inner{ width: 100%; }
  .roguu-logo{ width: min(520px, 90%); }
}

/* MOBILE FIX: stop side overflow */
@media (max-width: 600px){
  html, body{
    overflow-x: hidden;
  }

  .roguu-hero{
    padding: 16px; /* equal small padding */
  }

  .roguu-shell{
    width: 100%;
    max-width: none;
  }

  .roguu-panel{
    min-height: 78vh;
    border-radius: 16px;
  }

  .roguu-content{
    padding: 26px 18px; /* less side padding */
  }

  .roguu-logo{
    width: min(420px, 92%);
  }
}
