/*
Theme Name: RUCHTI Premium Gutenberg
Theme URI: https://example.com/
Author: OpenAI
Description: Premium WordPress Block Theme für RUCHTI Camper.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 8.0
Text Domain: ruchti-premium
*/

:root{
  --blue:#0057B8;
  --blue2:#006EE6;
  --dark:#071B33;
  --dark2:#061A33;
  --soft:#F4F8FF;
  --line:#DDE8F7;
  --muted:#5F6F89;
  --radius:22px;
  --shadow:0 18px 55px rgba(7,27,51,.12);
}

*{box-sizing:border-box}

body{
  margin:0;
  background:#fff;
  color:var(--dark);
  font-family:Inter,system-ui,-apple-system,Segoe UI,Arial,sans-serif;
}

.wp-site-blocks{overflow:hidden}
a{text-decoration:none}

.r-container{
  max-width:1440px;
  margin-inline:auto;
  padding-inline:clamp(20px,5vw,72px);
}

/* HEADER – MOCKUP LOOK */
.r-header{
  position:absolute;
  top:24px;
  left:0;
  width:100%;
  z-index:99;
  background:transparent;
  border:none;
}

.r-header-inner{
  height:96px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.r-logo img{
  height:72px;
  width:auto;
  display:block;
}

.r-nav{
  display:flex;
  gap:32px;
  align-items:center;
  font-size:15px;
  font-weight:900;
}

.r-nav a{
  color:#fff;
  text-shadow:0 2px 14px rgba(0,0,0,.35);
}

.r-nav a:hover{
  color:var(--blue2);
}

.r-btn,
.wp-block-button__link{
  display:inline-flex!important;
  gap:10px;
  align-items:center;
  border-radius:10px!important;
  padding:14px 22px!important;
  font-weight:900!important;
  background:var(--blue)!important;
  color:#fff!important;
  border:1px solid var(--blue)!important;
  box-shadow:0 14px 32px rgba(0,87,184,.25);
}

.r-header .r-btn{
  background:rgba(255,255,255,.10)!important;
  color:#fff!important;
  border:1px solid rgba(255,255,255,.55)!important;
  backdrop-filter:blur(12px);
  box-shadow:none;
}

.r-btn.secondary{
  background:rgba(255,255,255,.12)!important;
  color:#fff!important;
  border:1px solid rgba(255,255,255,.45)!important;
  backdrop-filter:blur(10px);
  box-shadow:none;
}

/* HERO */
.r-hero{
  min-height:860px;
  position:relative;
  display:flex;
  align-items:center;
  background-image:
    linear-gradient(
      90deg,
      rgba(7,27,51,.95) 0%,
      rgba(7,27,51,.86) 34%,
      rgba(7,27,51,.30) 67%,
      rgba(7,27,51,.02) 100%
    ),
    url('https://ruchti.tim-tec.com/wp-content/uploads/2026/06/Ruchti_camper_home.png');
  background-size:cover;
  background-position:center;
}

.r-hero-content{
  max-width:720px;
  padding-top:150px;
}

.r-eyebrow{
  color:var(--blue2);
  font-size:14px;
  font-weight:950;
  letter-spacing:.18em;
  text-transform:uppercase;
  margin:0 0 22px;
}

.r-hero h1{
  font-size:clamp(54px,7.2vw,112px);
  line-height:.9;
  letter-spacing:-.065em;
  color:#fff;
  margin:0 0 26px;
  font-weight:950;
  text-transform:uppercase;
}

.r-hero h1 span,
.r-title span{
  color:var(--blue2);
}

.r-hero p{
  color:rgba(255,255,255,.92);
  font-size:18px;
  line-height:1.75;
  max-width:620px;
}

.r-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:26px;
}

.r-side-dots{
  position:absolute;
  left:32px;
  top:38%;
  color:#fff;
  opacity:.8;
  font-weight:800;
  display:grid;
  gap:12px;
}

.r-side-dots span{
  width:7px;
  height:7px;
  border-radius:99px;
  background:#fff;
  display:block;
}

/* STATS */
.r-stat-wrap{
  margin-top:-62px;
  position:relative;
  z-index:5;
}

.r-stat{
  max-width:1180px;
  margin:auto;
  background:rgba(6,26,51,.96);
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  overflow:hidden;
}

.r-stat div{
  padding:28px 34px;
  color:#fff;
  border-right:1px solid rgba(255,255,255,.12);
}

.r-stat div:last-child{
  border-right:0;
}

.r-stat strong{
  font-size:34px;
  display:block;
}

.r-stat small{
  color:rgba(255,255,255,.78);
  font-weight:700;
}

/* SECTIONS */
.r-section{
  padding:clamp(70px,8vw,110px) 0;
}

.r-section.soft{
  background:linear-gradient(180deg,#fff,var(--soft));
}

.r-title{
  font-size:clamp(36px,4.2vw,66px);
  line-height:1;
  letter-spacing:-.05em;
  margin:0 0 18px;
  font-weight:950;
}

.r-lead{
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
  max-width:680px;
}

.r-center{text-align:center}

.r-grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.r-grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.r-grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:center;
}

/* CARDS */
.r-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 12px 35px rgba(7,27,51,.08);
  overflow:hidden;
  transition:.25s ease;
}

.r-card:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 70px rgba(7,27,51,.16);
  border-color:rgba(0,87,184,.35);
}

.r-card-img{
  height:190px;
  background:url('assets/hero-camper-lake.png') center/cover;
}

.r-card-body{padding:22px}

.r-card h3{
  margin:0 0 8px;
  font-size:20px;
  line-height:1.15;
}

.r-price{
  color:var(--blue);
  font-size:18px;
  font-weight:950;
}

.r-icon{
  font-size:34px;
  color:var(--blue);
  margin-bottom:18px;
}

/* BRANDS */
.r-brand-strip{
  background:linear-gradient(180deg,#fff,#F3F8FF);
  border:1px solid var(--line);
  border-radius:24px;
  padding:34px;
  box-shadow:0 12px 35px rgba(7,27,51,.06);
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  align-items:center;
  text-align:center;
}

.r-brand{
  font-size:30px;
  font-weight:950;
  color:var(--dark);
  letter-spacing:-.04em;
}

.r-brand.blue{color:var(--blue)}

/* IMAGE CTA */
.r-section-video{
  padding-top:40px;
  padding-bottom:60px;
}

.r-video-cta{
  position:relative;
  min-height:360px;
  overflow:hidden;
  border-radius:18px;
  background:
    linear-gradient(
      90deg,
      rgba(7,27,51,.88) 0%,
      rgba(7,27,51,.65) 45%,
      rgba(7,27,51,.25) 100%
    ),
    url('https://ruchti.tim-tec.com/wp-content/uploads/2026/06/Ruchti_camper_home.png');
  background-size:cover;
  background-position:center center;
  padding:50px;
  color:#fff;
  box-shadow:0 20px 60px rgba(7,27,51,.18);
}

.r-video-text{
  position:relative;
  z-index:3;
  max-width:420px;
}

.r-video-text h2{
  font-size:54px;
  line-height:.95;
  margin:0 0 15px;
  color:#fff;
  font-weight:900;
}

.r-video-text p{
  margin:0;
  max-width:380px;
  color:rgba(255,255,255,.88);
  font-size:16px;
  line-height:1.6;
}

.r-play{
  position:absolute;
  right:180px;
  top:50%;
  transform:translateY(-50%);
  width:90px;
  height:90px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,.9);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  color:#fff;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
  z-index:3;
}

.r-video-label{
  position:absolute;
  right:60px;
  top:50%;
  transform:translateY(-50%);
  font-size:14px;
  font-weight:700;
  color:#fff;
  z-index:3;
}

.r-video-features{
  position:absolute;
  left:50px;
  right:50px;
  bottom:30px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  z-index:3;
}

.r-video-features .feature{color:#fff}

.r-video-features span{
  display:block;
  font-size:28px;
  margin-bottom:10px;
}

.r-video-features strong{
  font-size:16px;
  line-height:1.4;
  font-weight:700;
}

/* TESTIMONIALS / CTA / FOOTER */
.r-testimonial{padding:28px}

.r-stars{
  color:#F4B431;
  letter-spacing:2px;
  font-size:20px;
}

.r-cta{
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  border-radius:22px;
  padding:36px 44px;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.r-cta h2{
  color:#fff;
  margin:0;
  font-size:32px;
}

.r-footer{
  background:#061A33;
  color:#fff;
  padding:48px 0;
}

.r-footer p,
.r-footer a{
  color:rgba(255,255,255,.78);
}

.r-page-hero{
  padding:110px 0 70px;
  background:linear-gradient(180deg,#fff,var(--soft));
}

.r-filter{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:28px 0;
}

.r-filter span{
  padding:10px 20px;
  border:1px solid var(--line);
  border-radius:99px;
  background:#fff;
  font-weight:800;
  font-size:13px;
}

.r-filter span:first-child{
  background:var(--blue);
  color:#fff;
}

.r-form{
  display:grid;
  gap:14px;
}

.r-form input,
.r-form textarea,
.r-form select{
  width:100%;
  border:1px solid var(--line);
  border-radius:12px;
  padding:16px;
  font:inherit;
  background:#fff;
}

.r-map{
  min-height:430px;
  border-radius:22px;
  background:linear-gradient(135deg,#e8f2ff,#fff);
  border:1px solid var(--line);
  display:grid;
  place-items:center;
  color:var(--blue);
  font-weight:900;
}

.r-team-photo{
  min-height:350px;
  background:
    linear-gradient(90deg,rgba(7,27,51,.15),rgba(7,27,51,0)),
    url('assets/hero-camper-lake.png') center/cover;
  border-radius:24px;
  box-shadow:var(--shadow);
}

/* MOBILE */
@media(max-width:980px){
  .r-nav{display:none}

  .r-header{
    position:absolute;
    top:10px;
  }

  .r-header-inner{height:76px}

  .r-logo img{height:48px}

  .r-header .r-btn{
    padding:11px 14px!important;
    font-size:13px;
  }

  .r-hero{
    min-height:720px;
    background-position:62% center;
  }

  .r-hero-content{
    padding-top:120px;
  }

  .r-hero h1{
    font-size:54px;
  }

  .r-stat,
  .r-grid-4,
  .r-grid-3,
  .r-grid-2,
  .r-brand-strip{
    grid-template-columns:1fr;
  }

  .r-stat div{
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.12);
  }

  .r-cta{display:block}
  .r-side-dots{display:none}

  .r-video-cta{
    min-height:520px;
    padding:35px;
  }

  .r-video-text h2{
    font-size:38px;
  }

  .r-play{
    top:42%;
    right:50%;
    transform:translate(50%,-50%);
  }

  .r-video-label{display:none}

  .r-video-features{
    grid-template-columns:repeat(2,1fr);
    left:35px;
    right:35px;
    gap:20px;
  }
}