/*
Theme Name: Wolf Gardening
Author: Steven Wolf
Version: 1.0
*/
:root {

    --royal-navy: #0F172A;

    --gold: #C5A059;

    --slate: rgba(15, 23, 42, 0.9);

    --whatsapp: #25D366;

}

/* PREVENT SIDEBAR */

html, body {

    margin: 0; padding: 0; width: 100%;

    overflow-x: hidden; 

    background-color: var(--royal-navy);

    font-family: 'Raleway', sans-serif;

    color: var(--gold) !important;

}

.gold-text { color: var(--gold) !important; }

/* RECTANGLE PHOTO FIX */

.img-container {

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

}

.img-container img {

    width: 100%; height: 100%;

    object-fit: cover;

}

/* BACKGROUND LIGHTING */

.dynamic-body { 

    background: radial-gradient(circle at center, #1e2e4d 0%, #0F172A 100%); 

    width: 100%;

}

/* HEADER */

.main-header {

    width: 100vw;

    background: linear-gradient(rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.7)), 

                url('https://i.postimg.cc/d1n64rsc/7_20170219105456.jpg') fixed center/cover;

    border-bottom: 2px solid var(--gold);

}

.header-overlay { padding: 80px 15px; text-align: center; }

/* GRID & CARDS */

.grid { 

    display: grid; 

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 

    gap: 25px; padding: 20px; 

    max-width: 1200px; 

    margin: 0 auto; 

}

.premium-border { 

    border: 1px solid rgba(197, 160, 89, 0.2); 

    background: #1e293b; 

    border-radius: 12px; 

    overflow: hidden; 

}

.card-info { padding: 20px; text-align: left; }

/* STICKY WHATSAPP */

.whatsapp-sticky {

    position: fixed; bottom: 25px; right: 25px;

    background: var(--whatsapp); padding: 12px 20px;

    border-radius: 50px; display: flex; align-items: center; gap: 8px; text-decoration: none; z-index: 10000;

}

.whatsapp-sticky img { width: 22px; }

.btn-label { font-weight: bold; font-size: 0.9rem; }

/* CONTACT FORM */

.contact-form { display: flex; flex-direction: column; gap: 12px; }

.contact-form input, .contact-form textarea {

    padding: 15px; border-radius: 6px; border: 1px solid var(--gold);

    background: var(--royal-navy); color: var(--gold); font-family: inherit;

}

.submit-btn {

    background: var(--gold); color: #000 !important;

    padding: 16px; border: none; border-radius: 6px; font-weight: 800; cursor: pointer; text-transform: uppercase;

}

/* UTILITY */

.container { width: 92%; max-width: 800px; margin: auto; }

.section-padding { padding: 60px 0; }

.logo-box { width: 140px; height: 140px; margin: 0 auto 20px; border-radius: 50%; border: 3px solid var(--gold); overflow: hidden; display: flex; align-items: center; justify-content: center; }

.max-zoom-logo { width: 100%; height: 100%; object-fit: cover; transform: scale(2.4); }

.gold-divider { width: 40px; height: 2px; background: var(--gold); margin: 15px auto; }

.section-title { text-align: center; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; }

.footer-dark { padding: 40px; text-align: center; border-top: 1px solid rgba(197, 160, 89, 0.1); }

.social-row { display: flex; justify-content: center; gap: 20px; margin-top: 20px; }

.social-icon { font-size: 1.6rem; text-decoration: none; }

.glass-card { background: var(--slate); padding: 40px; border-radius: 20px; border: 1px solid rgba(197, 160, 89, 0.2); }

/* FACT GRID */

.fact-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 25px 0; }

@media (min-width: 600px) { .fact-grid { grid-template-columns: 1fr 1fr 1fr; } }

.fact-item { background: rgba(197, 160, 89, 0.1); padding: 15px; border-radius: 10px; border-left: 3px solid var(--gold); text-align: left; }

@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }

.pulse-animation { animation: pulse 3s infinite ease-in-out; }
body {
    background-size: cover !important;
    background-position: center bottom !important; 
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
}
/* ===== CLEAN SOCIAL ICONS (FINAL) ===== */
.social-icons {
    position: fixed;
    top: 15px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 9999;
}

.social-icons a {
    width: 32px;
    height: 32px;
    background: rgba(0,0,0,0.55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.social-icons a:hover {
    transform: scale(1.15);
    background: #c9a44c;
}

.social-icons svg {
    width: 16px !important;
    height: 16px !important;
    fill: white;
}
/* FORCE SMALL SOCIAL ICONS ON ALL DEVICES */
.social-icons img,
.social-icons svg {
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
}

.social-icons a {
    width: 32px !important;
    height: 32px !important;
}
.footer-policy {
  text-align: center;
  padding: 15px 0 5px 0;
  font-size: 14px;
  opacity: 0.8;
}

.footer-policy a {
  color: var(--gold);
  text-decoration: none;
}

.footer-policy a:hover {
  text-decoration: underline;
}
/* ===== TRUST SECTION FINAL FIX ===== */
.trust {
  margin: 80px auto;
  padding: 35px 40px;
  max-width: 620px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--gold);
  border-radius: 16px;
  text-align: center;
}

.trust h2 {
  color: var(--gold);
  font-size: 24px;
  margin-bottom: 20px;
}

.trust ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}

.trust li {
  color: var(--gold);
  font-size: 16px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Maakt 1 strak vinkje */
.trust li::before {
  content: "✔";
  color: var(--gold);
  font-weight: bold;
}
/* ===== PREMIUM SECTION DIVIDER ===== */
.section-padding {
    position: relative;
}

.section-padding::before {
    content: "";
    display: block;
    width: 120px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0 auto 25px auto;
    opacity: 0.6;
}
/* ===== SERVICE CARD PREMIUM HOVER ===== */
.service-card,
.fact-item {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border 0.35s ease;
}

.service-card:hover,
.fact-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
    border: 1px solid var(--gold);
}
/* ===== PREMIUM AMBIENT LIGHT EFFECT ===== */
body::before {
    content: "";
    position: fixed;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

body::after {
    content: "";
    position: fixed;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* Zorg dat content erboven blijft */
main, header, section, footer {
    position: relative;
    z-index: 1;
}
/* ===== PREMIUM TEXT GLOW ===== */
.gold-text {
    text-shadow: 0 0 8px rgba(212,175,55,0.15);
}
/* ===== SCROLL ANIMATION BASE ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.service-area {
  text-align: center;
  margin: 25px 0 40px 0;
  font-size: 17px;
  letter-spacing: 1px;
}
.trust {
  margin: 60px auto;
  padding: 40px 30px;
  max-width: 900px;
  border-radius: 16px;
  border: 1px solid rgba(212,175,55,0.4);
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  box-shadow: 0 0 40px rgba(212,175,55,0.08);
  backdrop-filter: blur(6px);
}
.trust {
  position: relative;
  z-index: 1;
}

.trust::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  right: -40px;
  bottom: -40px;
  background: radial-gradient(circle at center, rgba(212,175,55,0.08), transparent 70%);
  border-radius: 20px;
  z-index: -1;
}
.footer-policy {
  text-align: center;
  color: var(--gold);
  font-size: 14px;
  margin: 40px 0 10px;
  letter-spacing: 1px;
}
.cta {
  text-align: center;
  padding: 60px 20px;
  margin-top: 40px;
  background: rgba(212,175,55,0.08);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.cta h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.cta-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 14px 28px;
  background: var(--gold);
  color: #0b1622;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: scale(1.05);
}
/* ===== FAQ + INFO SECTIONS ===== */

.faq-item {
  margin-bottom: 20px;
  padding: 15px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 215, 0, 0.03);
  border-radius: 8px;
}

.faq-item h3 {
  margin-bottom: 6px;
  font-size: 18px;
  color: var(--gold);
}

.faq-item p {
  margin: 0;
  color: #ddd;
  font-size: 15px;
  line-height: 1.5;
}


/* ===== WASTE / POLICY SECTION ===== */

.waste-policy ul {
  list-style: none;
  padding-left: 0;
}

.waste-policy li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  color: #e6e6e6;
}

.waste-policy li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}


/* ===== HOW IT WORKS STYLE ===== */

.how-it-works ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.how-it-works li {
  margin-bottom: 12px;
  padding: 12px 18px;
  background: rgba(255, 215, 0, 0.04);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  color: #e6e6e6;
}


/* ===== BETTER SECTION SPACING ===== */

.section-padding {
  padding: 70px 20px;
}


/* ===== GOLD TITLE IMPROVEMENT ===== */

.section-title {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
  letter-spacing: 1px;
}


/* ===== REVEAL ANIMATION (if not already) ===== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* ==== PREMIUM BACKGROUND ==== */
body {
    background: radial-gradient(circle at top, #16283a 0%, #0b1622 45%, #070f18 100%);
}
/* ===== FIX: NOTHING SHOWS THROUGH THE WOLF STANDARD CARD ===== */

.container.glass-card {
  position: relative;
  z-index: 5;
  background: linear-gradient(180deg, #0b1622 0%, #0e1b2b 100%) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* remove transparency that lets the plant show */
.glass-card {
  background: linear-gradient(180deg, #0b1622 0%, #0e1b2b 100%) !important;
  border: 1px solid rgba(255,215,0,0.15);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}
