/*
Theme Name: FirmaSaunagus
Theme URI: https://firmasaunagus.dk
Author: Custom
Description: Lead generation theme for firmasaunagus
Version: 1.0
*/

/* =========================================================
   1. ROOT / DESIGN TOKENS
========================================================= */
:root{
  --bg:#f7f7f7;
  --bg-soft:#ffffff;
  --white:#ffffff;
  --text:#000000;
  --muted:#555555;
  --border:rgba(0,0,0,0.08);
  --border-strong:rgba(0,0,0,0.14);
  --radius-sm:12px;
  --radius-md:18px;
  --radius-lg:24px;
  --radius-xl:32px;
}

/* =========================================================
   2. GLOBAL BASE
========================================================= */
html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  display:block;
  max-width:100%;
}

.btn {
    font-weight: 700 !important;
    text-transform: uppercase !important;
    border-radius: 10px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

/* =========================================================
   3. HERO / OVERORDNET WRAPPER
========================================================= */
.hero-header {
    display: flex;
    align-items: center;
    background: var(--bg);
    padding: 26px 0 48px;
    min-height: 645px;
}

.hero-content{
  width:100%;
  padding-top:0;
  padding-bottom:0;
  margin-top:78px;
}

.hero-row{
  min-height:auto;
  align-items:center;
}

.hero-left{
  display:flex;
  align-items:center;
  height:100%;
}

.hero-copy{
  width:100%;
  max-width:640px;
}

/* =========================================================
   4. TOP NAVIGATION
========================================================= */
.hero-nav-wrap{
  width:100%;
  border-bottom:1px solid var(--border);
  background:var(--white);
}

.hero-nav{
  min-height:84px;
}

.navbar-brand{
  font-size:1.2rem;
  font-weight:800;
  letter-spacing:-0.03em;
  color:var(--text);
}

.navbar-brand span{
  color:#000000;
}

.nav-link{
  color:var(--text);
  font-weight:500;
  padding-left:1rem;
  padding-right:1rem;
}

.nav-link:hover{
  color:#000000;
}

.nav-cta{
  border-radius:14px;
  padding:0.82rem 1.15rem;
  font-weight:700;
}

/* =========================================================
   5. HERO CONTENT
========================================================= */
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:0.55rem;
  padding:0.7rem 0.95rem;
  border-radius:16px;
  background:#f1f1f1;
  color:#000000;
  font-size:0.86rem;
  font-weight:700;
  margin-bottom:1rem;
}

.hero-title {
    max-width: 700px;
    font-size: clamp(2.2rem, 4.1vw, 4rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    font-weight: 800;
    margin: 0 0 16px;
    color: #000000;
}

.hero-text {
    max-width: 560px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--muted);
    margin: 22px 0 15px;
}
/* =========================================================
   6. HERO BENEFITS
========================================================= */
.hero-benefits{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin:0 0 24px;
}

.hero-benefit {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--muted);
}

.hero-benefit i {
    font-size: 1.15rem;
    color: #000000;
    flex: 0 0 auto;
    margin-top: -2px;
}

/* =========================================================
   7. HERO SALES BOXES
========================================================= */
.hero-sales{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:0.95rem;
  max-width:620px;
  margin-top:1.2rem;
}

.hero-sales-item{
  display:flex;
  align-items:flex-start;
  gap:0.85rem;
  padding:1rem;
  background:#ffffff;
  border:1px solid var(--border);
  border-radius:18px;
  opacity:0;
  transform:translateY(10px);
  animation:salesFadeUp 0.6s ease forwards;
  transition:transform 0.22s ease, border-color 0.22s ease;
}

.hero-sales-item:nth-child(1){ animation-delay:0.08s; }
.hero-sales-item:nth-child(2){ animation-delay:0.16s; }
.hero-sales-item:nth-child(3){ animation-delay:0.24s; }
.hero-sales-item:nth-child(4){ animation-delay:0.32s; }

.hero-sales-item:hover{
  transform:translateY(-3px);
  border-color:rgba(0,0,0,0.14);
}

.hero-sales-icon{
  width:42px;
  height:42px;
  flex:0 0 42px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#f7f7f7;
  color:#000000;
  font-size:1rem;
  margin-top:0.1rem;
}

.hero-sales-item strong{
  display:block;
  font-size:0.98rem;
  line-height:1.3;
  margin-bottom:0.2rem;
  color:#000000;
}

.hero-sales-item span{
  display:block;
  color:var(--muted);
  font-size:0.92rem;
  line-height:1.55;
}

/* =========================================================
   8. BUTTONS / CTA
========================================================= */
.hero-actions{
  display:flex;
  align-items:center;
  gap:10px;
  width:100%;
  margin-top:20px;
}

.hero-actions .btn{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight:600;
  transition:all .2s ease;
}

.btn-pill{
  border-radius:12px;
  padding:0.88rem 1.2rem;
  font-weight:700;
}

.btn-dark{
  font-weight:700;
  padding:0.88rem 1.2rem;
}

.hero-actions .btn-dark:hover{
  transform:translateY(-2px);
}

.hero-actions .btn-outline-dark{
  opacity:.92;
}

.hero-actions .btn-outline-dark:hover{
  opacity:1;
}

/* =========================================================
   9. LEAD CARD / FORM WRAPPER
========================================================= */
.lead-card{
  width:100%;
  background:#ffffff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:24px;
  padding:0;
  overflow:hidden;
}

.lead-card-inner{
  display:flex;
  flex-direction:column;
  height:100%;
  min-height:unset;
  padding:22px;
  padding-top:40px;
  padding-bottom:40px;
}

.lead-head{
  margin-bottom:12px;
}

.lead-title{
  font-size:1.65rem;
  line-height:1;
  letter-spacing:-0.04em;
  font-weight:800;
  margin:0 0 8px;
  color:#000000;
}

.lead-text{
  font-size:0.94rem;
  line-height:1.5;
  color:var(--muted);
  margin:0;
}

/* =========================================================
   10. FORM ELEMENTS
========================================================= */
.form-label{
  font-weight:600;
  margin-bottom:6px;
  color:#000000;
  font-size:0.9rem;
}

.form-control,
.form-select{
  width:100%;
  min-height:46px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,0.12);
  padding:0.7rem 0.9rem;
  box-shadow:none;
  background:#ffffff;
  color:#000000;
  box-sizing:border-box;
  font-size:0.95rem;
}

.form-control::placeholder,
.form-select:invalid{
  color:#7a7a7a;
}

.form-control:focus,
.form-select:focus{
  border-color:#000000;
  box-shadow:none;
  outline:none;
}

textarea.form-control{
  min-height:96px;
  resize:vertical;
}

.is-invalid{
  border-color:#dc3545;
  box-shadow:none;
}

/* =========================================================
   11. FORM LAYOUT / COMPACT GRID
========================================================= */
.form-row-2{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.form-progress{
  height:10px;
  background:#e9ecef;
  border-radius:999px;
  overflow:hidden;
  margin-bottom:20px;
}

.form-progress .progress-bar{
  height:100%;
  background:#111111;
  transition:width 0.25s ease;
}

.lead-form{
  display:flex;
  flex-direction:column;
  flex:1;
  width:100%;
}

.lead-form-step{
  display:none;
  width:100%;
}

.lead-form-step.active{
  display:block;
  width:100%;
}

.step-actions{
  margin-top:20px;
}

.step-actions-split{
  display:flex;
  gap:12px;
}

.step-actions .btn,
.step-actions-split .btn{
  min-height:46px;
}

.mb-3{
  margin-bottom:12px;
}

.mb-0{
  margin-bottom:0;
}

/* =========================================================
   12. GENERELLE SECTIONS
========================================================= */
.section {
    padding: 76px 0;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    margin-top: -22px;
}

.section-soft{
  background:#ffffff;
}

.section-head{
  max-width:860px;
  margin:0 auto 2.25rem;
  text-align:center;
}

.section-head.text-start{
  margin-left:0;
  margin-right:0;
  text-align:left;
}

.section-kicker{
  display:inline-block;
  font-size:0.8rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.06em;
  color:#000000;
  margin-bottom:0.65rem;
}

.section-title{
  font-size:clamp(2rem,3vw,3.1rem);
  line-height:1.08;
  letter-spacing:-0.045em;
  font-weight:800;
  margin-bottom:0.8rem;
  color:#000000;
}

.section-text{
  font-size:1.02rem;
  line-height:1.75;
  color:var(--muted);
  margin-bottom:0;
}

/* =========================================================
   13. CARDS
========================================================= */
.feature-card,
.step-card,
.occasion-card,
.area-card,
.seo-text-card{
  height:100%;
  background:#ffffff;
  border:1px solid var(--border);
  border-radius:22px;
  padding:1.45rem;
}

.card-icon,
.step-number{
  width:50px;
  height:50px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#f7f7f7;
  color:#000000;
  font-size:1rem;
  font-weight:800;
  margin-bottom:0.85rem;
}

.feature-card h3,
.step-card h3,
.occasion-card h3,
.area-card h3,
.seo-text-card h3{
  font-size:1.1rem;
  line-height:1.3;
  letter-spacing:-0.02em;
  font-weight:700;
  margin-bottom:0.55rem;
  color:#000000;
}

.feature-card p,
.step-card p,
.occasion-card p,
.area-card p,
.seo-text-card p{
  color:var(--muted);
  line-height:1.7;
  margin-bottom:0;
}

/* =========================================================
   14. IMAGE + CONTENT SECTION
========================================================= */
.content-image-wrap{
  overflow:hidden;
  border-radius:26px;
}

.content-image{
  width:100%;
  min-height:600px;
  object-fit:cover;
}

.content-copy{
  max-width:620px;
}

.content-copy h2{
  font-size:clamp(2rem,3vw,3rem);
  line-height:1.08;
  letter-spacing:-0.04em;
  font-weight:800;
  margin-bottom:0.9rem;
  color:#000000;
}

.content-copy p{
  font-size:1.02rem;
  line-height:1.75;
  color:var(--muted);
  margin-bottom:0;
}

/* =========================================================
   15. CHECK LIST
========================================================= */
.check-list{
  list-style:none;
  padding:0;
  margin:1.2rem 0 0;
}

.check-list li{
  position:relative;
  padding-left:1.75rem;
  margin-bottom:0.7rem;
  color:#000000;
  line-height:1.65;
}

.check-list li i{
  position:absolute;
  left:0;
  top:0.06rem;
  color:#000000;
  font-size:0.95rem;
}

/* =========================================================
   16. OMRÅDER / BADGES / REGIONS
========================================================= */
.area-badges{
  display:flex;
  flex-wrap:wrap;
  gap:0.75rem;
  margin-top:1.3rem;
}

.area-region-block{
  margin-top:32px;
  background:#fff;
}

.area-region-block:first-of-type{
  margin-top:0;
}

.area-region-head{
  margin-bottom:18px;
  padding-bottom:14px;
  border-bottom:1px solid #f0f0f0;
}

.area-region-title{
  margin:0;
  font-size:24px;
  font-weight:700;
  color:#111;
}

.area-badge,
.area-badge-full{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  gap:0.5rem;
  padding:14px 16px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  color:#000;
  font-weight:600;
  text-align:left;
  transition:all .2s ease;
}

.area-badge:hover,
.area-badge-full:hover{
  border-color:#111;
  background:#fafafa;
  color:#111;
}

.area-badge span,
.area-badge-text{
  flex:1;
  text-align:left;
  display:block;
  padding-right:12px;
}
.area-badge-icon-pill,
.area-badge i{
  margin-left:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  line-height:1;
}

.area-badge-icon-pill i {
    border: none;
    width: auto;
    min-width: 0;
    height: auto;
    margin-left: 0;
    background: transparent;
    float: right;
}

/* =========================================================
   17. FAQ / ACCORDION
========================================================= */
.faq-wrap{
  max-width:860px;
  margin:0 auto;
}

.accordion-item{
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  margin-bottom:0.9rem;
  background:#ffffff;
}

.accordion-button{
  padding:1rem 1.1rem;
  font-weight:700;
  box-shadow:none;
  color:#000000;
  font-size:0.98rem;
}

.accordion-button:not(.collapsed){
  background:#ffffff;
  color:#000000;
}

.accordion-button:focus{
  box-shadow:none;
  border-color:transparent;
}

.accordion-body{
  padding:0 1.1rem 1.1rem;
  color:var(--muted);
  line-height:1.75;
}

/* =========================================================
   18. FULL WIDTH CTA + BOTTOM CTA
========================================================= */
.bottom-cta-section{
  background:#111;
  color:#fff;
  padding:64px 0;
}

.bottom-cta{
  border-radius:26px;
  background:#000000;
  color:#ffffff;
  padding:1.8rem;
}

.bottom-cta h2{
  font-size:clamp(2rem,3vw,3rem);
  line-height:1.08;
  letter-spacing:-0.04em;
  font-weight:800;
  margin-bottom:0.7rem;
  color:#ffffff;
}

.bottom-cta p{
  margin-bottom:0;
  color:rgba(255,255,255,0.78);
  line-height:1.75;
  font-size:16px;
}

/* =========================================================
   19. FOOTER
========================================================= */
.site-footer{
  background:#0b0b0b;
  color:#fff;
  padding:56px 0 24px;
  border-top:none;
}

.footer-main{
  padding-bottom:28px;
}

.footer-col{
  height:100%;
}

.footer-title{
  font-size:18px;
  font-weight:700;
  margin-bottom:16px;
  color:#fff;
}

.footer-text{
  font-size:15px;
  line-height:1.7;
  color:rgba(255,255,255,0.72);
  margin-bottom:20px;
}

.footer-links{
  list-style:none;
  margin:0;
  padding:0;
}

.footer-links li{
  margin-bottom:10px;
}

.footer-links a{
  color:rgba(255,255,255,0.78);
  transition:all .2s ease;
}

.footer-links a:hover{
  color:#fff;
}

.footer-powered{
  margin-top:20px;
  margin-bottom:0;
  color:rgba(255,255,255,0.62);
  font-size:14px;
}

.footer-powered a{
  color:#fff;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08);
  padding-top:20px;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.footer-meta{
  margin:0;
  color:rgba(255,255,255,0.56);
  font-size:14px;
}

/* =========================================================
   20. ANIMATIONS
========================================================= */
@keyframes salesFadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* =========================================================
   21. TABLET / SMALL DESKTOP
========================================================= */
@media (max-width:991.98px){
  .hero-header{
    padding:22px 0 38px;
  }

  .hero-content{
    margin-top:70px;
  }

  .hero-left{
    align-items:flex-start;
    margin-bottom:22px;
  }

  .hero-sales{
    grid-template-columns:1fr;
  }

  .lead-card-inner{
    min-height:auto;
    padding:20px;
  }

  .section{
    padding:60px 0;
  }

  .section-head{
    margin-bottom:2rem;
  }

  .content-copy{
    max-width:100%;
  }

  .content-image{
    min-height:320px;
  }

  .navbar-collapse{
    padding:1rem 0 0.5rem;
  }

  .bottom-cta{
    padding:1.5rem;
    border-radius:22px;
  }

  .bottom-cta h2{
    font-size:28px;
  }

  .site-footer{
    padding:44px 0 24px;
  }
}

/* =========================================================
   22. MOBILE
========================================================= */
@media (max-width:767.98px){
  .hero-content{
    margin-top:58px;
  }

  .hero-copy{
    margin-top:20px;
  }

  .hero-actions{
    display:flex;
    flex-wrap:nowrap;
    width:100%;
    gap:10px;
  }

  .hero-actions .btn{
    flex:1 1 0;
    width:0;
    min-width:0;
    padding-left:10px;
    padding-right:10px;
    font-size:14px;
  }

  .form-row-2{
    grid-template-columns:1fr;
  }

  .step-actions-split{
    flex-direction:column;
  }

  .step-actions-split .w-50{
    width:100%;
  }

  .area-region-block{
    margin-top:20px;
    padding:18px;
    border-radius:16px;
  }

  .area-region-head{
    margin-bottom:14px;
    padding-bottom:12px;
  }

  .area-region-title{
    font-size:20px;
  }

  .area-badge,
  .area-badge-full{
    padding:12px 14px;
    border-radius:14px;
    font-size:14px;
  }
}

@media (max-width:575.98px){
  .hero-header{
    padding:14px 0 28px;
  }

  .hero-title{
    font-size:1.95rem;
    line-height:0.98;
    margin-bottom:12px;
  }

  .hero-text{
    font-size:0.96rem;
    line-height:1.62;
    margin-bottom:16px;
  }

  .hero-benefits{
    gap:8px;
    margin-bottom:16px;
  }

  .hero-benefit{
    font-size:0.89rem;
  }

  .hero-sales{
    gap:0.7rem;
  }

  .hero-sales-item{
    padding:0.82rem;
  }

  .lead-card{
    border-radius:18px;
  }

  .lead-card-inner{
    padding:16px;
    padding-top:24px;
    padding-bottom:24px;
  }

  .lead-title{
    font-size:1.35rem;
    margin-bottom:6px;
  }

  .lead-text{
    font-size:0.88rem;
    line-height:1.45;
  }

  .form-control,
  .form-select{
    min-height:44px;
    padding:0.68rem 0.86rem;
    font-size:0.94rem;
  }

  textarea.form-control{
    min-height:88px;
  }

  .form-progress{
    margin-bottom:16px;
  }

  .step-actions{
    margin-top:12px;
  }

  .step-actions-split{
    gap:8px;
  }

  .step-actions .btn,
  .step-actions-split .btn{
    width:100%;
    min-height:44px;
  }

  .section{
    padding:46px 0;
  }

  .section-title{
    font-size:clamp(1.6rem,7vw,2.15rem);
    line-height:1.12;
  }

  .section-text,
  .content-copy p,
  .feature-card p,
  .step-card p,
  .occasion-card p,
  .area-card p,
  .seo-text-card p{
    font-size:0.95rem;
    line-height:1.62;
  }

  .feature-card,
  .step-card,
  .occasion-card,
  .area-card,
  .seo-text-card{
    padding:1.1rem;
    border-radius:18px;
  }

  .card-icon,
  .step-number{
    width:44px;
    height:44px;
    font-size:0.92rem;
    margin-bottom:0.75rem;
  }

  .content-image-wrap{
    border-radius:18px;
  }

  .content-image{
    min-height:230px;
  }

  .check-list{
    margin-top:1rem;
  }

  .check-list li{
    padding-left:1.5rem;
    margin-bottom:0.62rem;
    line-height:1.58;
  }

  .area-badges{
    gap:0.55rem;
  }

  .area-badge,
  .area-badge-full{
    width:100%;
    justify-content:space-between;
    font-size:0.9rem;
  }

  .accordion-button{
    padding:0.9rem;
    font-size:0.95rem;
    line-height:1.35;
  }

  .accordion-body{
    padding:0 0.9rem 0.9rem;
    font-size:0.93rem;
    line-height:1.62;
  }

  .bottom-cta-section{
    padding:38px 0;
  }

  .bottom-cta{
    padding:18px;
    border-radius:18px;
  }

  .bottom-cta h2{
    font-size:clamp(1.5rem,7vw,2rem);
  }

  .bottom-cta p{
    font-size:0.94rem;
    line-height:1.62;
  }

  .site-footer{
    padding:40px 0 20px;
  }

  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-main{
    padding-bottom:18px;
  }
}