/*
Theme Name: Jamie's Flowers
Theme URI: https://www.jamiesflowers.nl
Author: ITS Claude
Description: Custom one-page theme voor Jamie's Flowers - Interieur Bloemen Studio. Premium kunstbloemen styling & verse bloemen.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: jamies-flowers
*/

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #3d3530;
  background: #faf7f4;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

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

ul, ol {
  list-style: none;
}

button, input {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ============================================
   NAVIGATION
   ============================================ */
.jf-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 5%;
  background: rgba(45, 41, 38, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.3s ease, background 0.3s ease;
}

.jf-nav.scrolled {
  padding: 16px 5%;
  background: rgba(45, 41, 38, 0.95);
}

.jf-nav__logo {
  font-size: 16px;
  color: #c9b8a5;
  letter-spacing: 4px;
  font-weight: 300;
  text-transform: uppercase;
}

.jf-nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.jf-nav__links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(210, 190, 170, 0.6);
  transition: color 0.3s ease;
}

.jf-nav__links a:hover {
  color: rgba(210, 190, 170, 1);
}

/* Mobile menu toggle */
.jf-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.jf-nav__toggle span {
  width: 24px;
  height: 1px;
  background: #c9b8a5;
  transition: all 0.3s ease;
}

.jf-nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.jf-nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.jf-nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.jf-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(135deg, #2d2926 0%, #3d3530 40%, #4a3f38 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.jf-hero__bg-effects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(180, 160, 140, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(200, 180, 160, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.jf-hero__shape-1 {
  position: absolute;
  top: 10%;
  right: 8%;
  width: 280px;
  height: 380px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: linear-gradient(160deg, rgba(200, 170, 145, 0.15), rgba(180, 150, 120, 0.08));
  filter: blur(1px);
  pointer-events: none;
}

.jf-hero__shape-2 {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 200px;
  height: 260px;
  border-radius: 50% 50% 50% 50% / 55% 55% 45% 45%;
  background: linear-gradient(200deg, rgba(160, 140, 120, 0.12), rgba(140, 120, 100, 0.06));
  filter: blur(1px);
  pointer-events: none;
}

.jf-hero__content {
  text-align: center;
  z-index: 2;
  padding: 0 24px;
  max-width: 800px;
}

.jf-hero__subtitle {
  font-size: 13px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(210, 190, 170, 0.7);
  margin-bottom: 32px;
}

.jf-hero__title {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  color: #e8ddd4;
  line-height: 1.1;
  margin: 0 0 28px 0;
  letter-spacing: -1px;
}

.jf-hero__title em {
  font-style: italic;
  color: #c9b8a5;
}

.jf-hero__desc {
  font-size: 18px;
  color: rgba(210, 190, 170, 0.6);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 48px;
  font-weight: 300;
}

.jf-hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.jf-btn {
  padding: 16px 40px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
  display: inline-block;
  text-align: center;
}

.jf-btn--primary {
  border: 1px solid rgba(200, 180, 160, 0.4);
  background: rgba(200, 180, 160, 0.1);
  color: #d4c4b0;
}

.jf-btn--primary:hover {
  background: rgba(200, 180, 160, 0.25);
  border-color: rgba(200, 180, 160, 0.6);
}

.jf-btn--secondary {
  border: 1px solid rgba(200, 180, 160, 0.15);
  background: transparent;
  color: rgba(200, 180, 160, 0.6);
}

.jf-btn--secondary:hover {
  border-color: rgba(200, 180, 160, 0.4);
  color: rgba(200, 180, 160, 0.9);
}

.jf-btn--solid {
  background: #3d3530;
  color: #e8ddd4;
  border: none;
  padding: 16px 32px;
  font-size: 13px;
}

.jf-btn--solid:hover {
  background: #4a3f38;
}

.jf-btn--outline-dark {
  border: 1px solid rgba(200, 180, 160, 0.3);
  background: transparent;
  color: #3d3530;
  padding: 16px 0;
  width: 100%;
}

.jf-btn--outline-dark:hover {
  background: rgba(200, 180, 160, 0.08);
}

/* Scroll indicator */
.jf-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.jf-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(200, 180, 160, 0.3));
}

.jf-hero__scroll-text {
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(200, 180, 160, 0.4);
  text-transform: uppercase;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.jf-services {
  padding: 120px 5%;
  background: #faf7f4;
}

.jf-services__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.jf-section-label {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #a09080;
  margin-bottom: 16px;
  text-align: center;
}

.jf-section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: #3d3530;
  text-align: center;
  margin: 0 0 64px;
  line-height: 1.2;
}

.jf-section-title em {
  font-style: italic;
}

.jf-services__grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.jf-service-card {
  flex: 1 1 300px;
  padding: 48px;
  background: rgba(245, 240, 235, 0.5);
  border: 1px solid rgba(200, 180, 160, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.jf-service-card:hover {
  background: rgba(245, 240, 235, 0.8);
  border-color: rgba(200, 180, 160, 0.3);
  transform: translateY(-4px);
}

.jf-service-card__tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a7a6a;
  background: rgba(200, 180, 160, 0.15);
  padding: 4px 12px;
}

.jf-service-card__label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #a09080;
  margin-bottom: 16px;
}

.jf-service-card__title {
  font-size: 28px;
  font-weight: 300;
  color: #3d3530;
  margin: 0 0 20px;
  line-height: 1.3;
}

.jf-service-card__desc {
  font-size: 15px;
  color: #8a7a6a;
  line-height: 1.8;
  font-weight: 300;
}

.jf-service-card__link {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #a09080;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.jf-service-card:hover .jf-service-card__link {
  color: #3d3530;
}

.jf-service-card__link .arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.jf-service-card:hover .jf-service-card__link .arrow {
  transform: translateX(4px);
}

/* ============================================
   TRUST / STATS SECTION
   ============================================ */
.jf-trust {
  padding: 100px 5%;
  background: linear-gradient(135deg, #2d2926, #3d3530);
  color: #e8ddd4;
}

.jf-trust__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.jf-trust__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  margin-bottom: 80px;
}

.jf-stat {
  text-align: center;
  flex: 1 1 150px;
}

.jf-stat__number {
  font-size: 48px;
  font-weight: 300;
  color: #c9b8a5;
  margin-bottom: 8px;
}

.jf-stat__label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(210, 190, 170, 0.5);
}

.jf-trust__quote {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.jf-trust__quote-text {
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: rgba(210, 190, 170, 0.8);
  line-height: 1.7;
  margin-bottom: 24px;
}

.jf-trust__quote-author {
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(210, 190, 170, 0.4);
  text-transform: uppercase;
  font-style: normal;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.jf-pricing {
  padding: 120px 5%;
  background: #faf7f4;
}

.jf-pricing__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.jf-pricing__subtitle {
  text-align: center;
  color: #8a7a6a;
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto 64px;
  font-weight: 300;
  line-height: 1.7;
}

.jf-pricing__grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.jf-pricing-card {
  flex: 1 1 280px;
  padding: 48px;
  background: white;
  border: 1px solid rgba(200, 180, 160, 0.12);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jf-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(45, 41, 38, 0.06);
}

.jf-pricing-card--featured {
  background: rgba(60, 52, 46, 0.04);
  border: 1px solid rgba(200, 180, 160, 0.3);
}

.jf-pricing-card--featured::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #c9b8a5, #a09080);
}

.jf-pricing-card__name {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #a09080;
  margin-bottom: 24px;
}

.jf-pricing-card__price {
  margin-bottom: 32px;
}

.jf-pricing-card__amount {
  font-size: 40px;
  font-weight: 300;
  color: #3d3530;
}

.jf-pricing-card__period {
  font-size: 14px;
  color: #a09080;
}

.jf-pricing-card__feature {
  padding: 12px 0;
  border-top: 1px solid rgba(200, 180, 160, 0.1);
  font-size: 14px;
  color: #6a5a4a;
  font-weight: 300;
}

.jf-pricing-card .jf-btn {
  margin-top: 32px;
  width: 100%;
}

/* ============================================
   CTA SECTION
   ============================================ */
.jf-cta {
  padding: 120px 5%;
  background: #faf7f4;
  text-align: center;
}

.jf-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}

.jf-cta__desc {
  font-size: 15px;
  color: #8a7a6a;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 40px;
}

.jf-cta__form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Contact Form 7 styling overrides */
.jf-cta .wpcf7 {
  width: 100%;
}

.jf-cta .wpcf7-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.jf-cta .wpcf7-form p {
  margin: 0;
}

.jf-cta .wpcf7-form-control-wrap {
  display: inline-block;
}

.jf-cta .wpcf7 input[type="email"],
.jf-cta .wpcf7 input[type="text"] {
  padding: 16px 24px;
  border: 1px solid rgba(200, 180, 160, 0.3);
  background: white;
  font-family: 'Georgia', serif;
  font-size: 14px;
  color: #3d3530;
  width: 280px;
  outline: none;
  transition: border-color 0.3s ease;
}

.jf-cta .wpcf7 input[type="email"]:focus,
.jf-cta .wpcf7 input[type="text"]:focus {
  border-color: rgba(200, 180, 160, 0.6);
}

.jf-cta .wpcf7 input[type="submit"] {
  padding: 16px 32px;
  background: #3d3530;
  color: #e8ddd4;
  border: none;
  font-family: 'Georgia', serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}

.jf-cta .wpcf7 input[type="submit"]:hover {
  background: #4a3f38;
}

.jf-cta .wpcf7-response-output {
  margin-top: 16px;
  padding: 12px 24px;
  border: 1px solid rgba(200, 180, 160, 0.3) !important;
  font-size: 14px;
  color: #6a5a4a;
}

.jf-cta .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #b06040;
  margin-top: 4px;
}

/* ============================================
   FOOTER
   ============================================ */
.jf-footer {
  padding: 64px 5%;
  background: #2d2926;
  color: rgba(210, 190, 170, 0.4);
}

.jf-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
}

.jf-footer__brand {
  font-size: 20px;
  color: #c9b8a5;
  margin-bottom: 8px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.jf-footer__brand-desc {
  font-size: 12px;
  line-height: 1.8;
}

.jf-footer__columns {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.jf-footer__col-title {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: rgba(210, 190, 170, 0.6);
}

.jf-footer__col-links {
  font-size: 13px;
  line-height: 2.2;
}

.jf-footer__col-links a {
  display: block;
  transition: color 0.3s ease;
}

.jf-footer__col-links a:hover {
  color: rgba(210, 190, 170, 0.8);
}

.jf-footer__bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  border-top: 1px solid rgba(200, 180, 160, 0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 11px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.jf-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.jf-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.jf-fade-in-delay-1 { transition-delay: 0.1s; }
.jf-fade-in-delay-2 { transition-delay: 0.2s; }
.jf-fade-in-delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .jf-nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(45, 41, 38, 0.98);
    flex-direction: column;
    padding: 32px 5%;
    gap: 24px;
  }

  .jf-nav__links.active {
    display: flex;
  }

  .jf-nav__toggle {
    display: flex;
  }

  .jf-hero__content {
    padding: 0 20px;
  }

  .jf-hero__desc {
    font-size: 16px;
  }

  .jf-hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .jf-btn {
    width: 100%;
    max-width: 280px;
  }

  .jf-services,
  .jf-pricing,
  .jf-cta {
    padding: 80px 5%;
  }

  .jf-service-card,
  .jf-pricing-card {
    padding: 32px;
  }

  .jf-trust__stats {
    gap: 32px;
    margin-bottom: 60px;
  }

  .jf-stat__number {
    font-size: 36px;
  }

  .jf-trust__quote-text {
    font-size: 20px;
  }

  .jf-section-title {
    margin-bottom: 48px;
  }

  .jf-footer__inner {
    flex-direction: column;
  }

  .jf-footer__columns {
    flex-direction: column;
    gap: 32px;
  }

  .jf-cta .wpcf7 input[type="email"],
  .jf-cta .wpcf7 input[type="text"] {
    width: 100%;
  }

  .jf-cta .wpcf7-form {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .jf-hero {
    min-height: 500px;
  }

  .jf-hero__shape-1 {
    width: 180px;
    height: 240px;
  }

  .jf-hero__shape-2 {
    width: 120px;
    height: 160px;
  }

  .jf-services,
  .jf-pricing,
  .jf-cta {
    padding: 60px 5%;
  }
}
