/*
Theme Name: Padel Racket Finder
Theme URI: https://yoursite.com
Author: Your Name
Description: A bold sports theme for padel racket finder websites, inspired by The Racket Room design. Full Elementor compatibility included.
Version: 1.0.0
Requires at least: 5.6
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: padel-finder
*/

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:wght@400;600;700&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES — GREEN PALETTE
   ============================================================ */
:root {
    --color-primary:      #1DB954;   /* Padel Green (vibrant) */
    --color-primary-dark: #158a3e;   /* Darker green for hovers */
    --color-primary-light:#e8f8ee;   /* Very light green tint */
    --color-dark:         #1a1a1a;
    --color-charcoal:     #2D2D2D;
    --color-gray:         #F4F5F4;
    --color-gray-mid:     #444444;
    --color-white:        #FFFFFF;
    --color-text:         #1A1A1A;
    --color-text-light:   #666666;
    --font-heading:       'Bebas Neue', sans-serif;
    --font-body:          'Open Sans', sans-serif;
    --container-max:      1200px;
    --section-padding:    90px 0;
    --border-radius:      6px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.65;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.section-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gray-mid);
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(38px, 5.5vw, 68px);
    line-height: 0.98;
    text-transform: uppercase;
    color: var(--color-dark);
    margin-bottom: 14px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    margin: 14px 0 22px;
    border-radius: 2px;
}
.section-divider.centered { margin-left: auto; margin-right: auto; }

.section-body {
    font-size: 15.5px;
    color: var(--color-text-light);
    line-height: 1.8;
    max-width: 540px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 14px 30px;
    font-family: var(--font-heading);
    font-size: 19px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    border-radius: var(--border-radius);
    line-height: 1;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}
.btn-primary:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(29,185,84,0.35);
}

.btn-outline-green {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn-outline-green:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-white-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}
.btn-white-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.text-cta {
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-dark);
    position: relative;
    display: inline-block;
}
.text-cta::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}
.text-cta:hover::after { width: 100%; }

/* ============================================================
   HEADER & NAV
   ============================================================ */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 22px 0;
    transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

#site-header.scrolled {
    background: rgba(26, 26, 26, 0.96);
    padding: 12px 0;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 28px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-icon-circle {
    width: 42px;
    height: 42px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.logo-wordmark {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 26px;
    line-height: 1;
    text-shadow: 1px 2px 8px rgba(0,0,0,0.5);
}
.logo-wordmark span { color: var(--color-primary); }

/* Nav links */
#primary-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}
#primary-nav ul li a {
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
    transition: color 0.2s;
}
#primary-nav ul li a:hover { color: var(--color-primary); }

/* CTA in nav */
#primary-nav .nav-cta a {
    background: var(--color-primary);
    color: var(--color-white) !important;
    padding: 8px 18px;
    border-radius: var(--border-radius);
    text-shadow: none !important;
}
#primary-nav .nav-cta a:hover {
    background: var(--color-primary-dark);
    color: var(--color-white) !important;
}

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-search-btn {
    background: none; border: none;
    color: var(--color-white);
    cursor: pointer; font-size: 18px; padding: 4px;
    transition: color 0.2s;
}
.header-search-btn:hover { color: var(--color-primary); }

.hamburger {
    display: none;
    flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--color-white); border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0;
    /* ↓ Replace with your padel court hero image */
    background:
        linear-gradient(to right, rgba(0,0,0,0.72) 38%, rgba(0,0,0,0.2) 100%),
        #1a3d2b;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
/* When you add your hero image uncomment and set the path:
.hero-bg {
    background-image:
        linear-gradient(to right, rgba(0,0,0,0.7) 38%, rgba(0,0,0,0.25) 100%),
        url('assets/images/hero-padel-court.jpg');
}
*/

.hero-content {
    position: relative; z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 130px 28px 100px;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    margin-bottom: 22px;
    border-radius: 3px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(54px, 8.5vw, 108px);
    line-height: 0.93;
    text-transform: uppercase;
    color: var(--color-white);
    max-width: 700px;
    margin-bottom: 24px;
    text-shadow: 2px 4px 20px rgba(0,0,0,0.45);
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.82);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.75;
}

.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.hero-scroll-cta {
    color: rgba(255,255,255,0.85);
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.2s;
}
.hero-scroll-cta:hover { color: var(--color-primary); }

/* Scroll indicator (right side) */
.scroll-indicator {
    position: absolute;
    right: 36px; top: 50%;
    transform: translateY(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    z-index: 2;
}
.scroll-indicator .si-line {
    width: 1px; height: 90px;
    background: rgba(255,255,255,0.4);
}
.scroll-indicator .si-text {
    font-size: 9px; letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}
.scroll-indicator .si-arrow {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    animation: bounceArrow 2s ease-in-out infinite;
}
@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(7px); }
}

/* Bottom wave */
.hero-wave {
    position: absolute; bottom: -2px; left: 0; right: 0;
    z-index: 3; line-height: 0;
}
.hero-wave svg { width: 100%; height: auto; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    padding: var(--section-padding);
    background: var(--color-white);
    overflow: hidden;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 28px;
}

/* Image column */
.about-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 380px;
}

.about-blob {
    position: absolute;
    bottom: -10px; left: 50px;
    width: 280px; height: 280px;
    background: var(--color-primary);
    border-radius: 62% 38% 34% 66% / 58% 32% 68% 42%;
    z-index: 0;
    animation: morphBlob 9s ease-in-out infinite;
    opacity: 0.85;
}
@keyframes morphBlob {
    0%, 100% { border-radius: 62% 38% 34% 66% / 58% 32% 68% 42%; }
    50%       { border-radius: 30% 70% 62% 38% / 52% 62% 38% 48%; }
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
}
.deco-filled { background: var(--color-charcoal); }
.deco-outline { border: 5px solid #888; background: transparent; }

.about-deco-1 { width: 78px; height: 78px; bottom: 36px; left: 18px; z-index: 1; }
.about-deco-2 { width: 48px; height: 48px; top: 18px;   right: 36px; z-index: 1; }

/* Round photo */
.about-photo {
    position: relative; z-index: 2;
    width: 320px; height: 320px;
    border-radius: 50%;
    object-fit: cover; object-position: top center;
    box-shadow: 0 24px 64px rgba(0,0,0,0.14);
}

/* Emoji placeholder (remove when you add real image) */
.photo-placeholder {
    position: relative; z-index: 2;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary-light), #c8f0d6);
    display: flex; align-items: center; justify-content: center;
    font-size: 90px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.1);
    /* ↑ Replace this div with an <img class="about-photo"> tag */
}

/* ============================================================
   CATEGORIES / DISCOVER SECTION
   ============================================================ */
.categories-section {
    padding: var(--section-padding);
    background: var(--color-gray);
    text-align: center;
    overflow: hidden;
}

.categories-section .section-header {
    max-width: 680px;
    margin: 0 auto 54px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 28px;
}

.cat-card {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.cat-card:hover {
    transform: scale(1.04);
    box-shadow: 0 16px 50px rgba(0,0,0,0.18);
}

.cat-card .cat-bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 35%, rgba(0,0,0,0.75) 100%);
    z-index: 1;
}

/* ↓ Replace these gradient backgrounds with <img> tags pointing to padel photos */
.cat-card .cat-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.cat-card:hover .cat-img { transform: scale(1.08); }

.cat-card .cat-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 80px;
    transition: transform 0.5s ease;
}
.cat-card:hover .cat-img-placeholder { transform: scale(1.06); }

.cat-card .cat-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 0 20px 36px;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.cat-card .cat-icon  { font-size: 34px; }
.cat-card .cat-name  {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================================
   FEATURE SECTIONS  (alternating text / image)
   ============================================================ */
.feature-section {
    padding: var(--section-padding);
    background: var(--color-white);
    overflow: hidden;
}
.feature-section.bg-gray { background: var(--color-gray); }

.feature-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 28px;
}
.feature-inner.reverse { direction: rtl; }
.feature-inner.reverse > * { direction: ltr; }

.feature-img-wrap { position: relative; display: flex; justify-content: center; }

.feature-photo {
    width: 380px; height: 380px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 56px rgba(0,0,0,0.12);
    display: block;
}

.feature-photo-placeholder {
    width: 380px; height: 380px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f8ee, #c5ecd4);
    display: flex; align-items: center; justify-content: center;
    font-size: 110px;
    box-shadow: 0 20px 56px rgba(0,0,0,0.1);
    /* ↑ Replace with <img class="feature-photo"> */
}

.feat-deco { position: absolute; border-radius: 50%; }
.feat-deco-1 {
    width: 90px; height: 90px;
    background: var(--color-charcoal);
    bottom: 16px; right: 16px;
    z-index: -1;
}
.feat-deco-2 {
    width: 54px; height: 54px;
    border: 5px solid #888;
    background: transparent;
    top: 8px; left: 8px;
}
.feat-deco-3 {
    width: 130px; height: 130px;
    border: 6px solid var(--color-charcoal);
    background: transparent;
    top: -20px; right: -20px;
}

/* ============================================================
   CTA / MEMBERSHIP BANNER SECTION
   ============================================================ */
.cta-banner-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute; inset: 0;
    /* ↓ Replace with a padel action shot */
    background:
        linear-gradient(to right, rgba(0,0,0,0.55), rgba(0,0,0,0.35)),
        #0d2e1a;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
/*
.cta-banner-bg {
    background-image:
        linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.3)),
        url('assets/images/cta-padel-match.jpg');
}
*/

.cta-wave-top {
    position: absolute; top: -2px; left: 0; right: 0;
    z-index: 1; line-height: 0;
}
.cta-wave-top svg { width: 100%; height: auto; }

.cta-banner-inner {
    position: relative; z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    max-width: var(--container-max);
    margin: 80px auto 60px;
    padding: 0 40px;
}

.cta-circle-card {
    width: 420px; height: 420px;
    min-width: 420px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 52px;
    box-shadow: 0 30px 80px rgba(29,185,84,0.4);
}
.cta-circle-card .section-label  { color: rgba(255,255,255,0.75); }
.cta-circle-card .section-title  { color: var(--color-white); font-size: 42px; margin-bottom: 6px; }
.cta-circle-card .section-divider{ background: rgba(255,255,255,0.45); margin: 12px auto; }
.cta-circle-card p {
    color: rgba(255,255,255,0.85);
    font-size: 14px; line-height: 1.65;
    margin-bottom: 26px;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
    background: var(--color-charcoal);
    padding: 88px 24px;
    text-align: center;
}
.newsletter-section .section-title { color: var(--color-white); }
.newsletter-section .sub-text {
    color: rgba(255,255,255,0.58);
    font-size: 15px;
    margin-bottom: 36px;
}

.newsletter-form {
    display: flex;
    max-width: 640px;
    margin: 0 auto;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
}
.newsletter-form input[type="email"] {
    flex: 1;
    padding: 16px 20px;
    background: rgba(255,255,255,0.07);
    border: none;
    color: var(--color-white);
    font-size: 15px;
    outline: none;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.38); }
.newsletter-form button {
    padding: 16px 34px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    font-family: var(--font-heading);
    font-size: 19px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease;
}
.newsletter-form button:hover { background: var(--color-primary-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
    background: #111111;
    padding: 64px 0 28px;
    color: rgba(255,255,255,0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 2fr 1fr 1.5fr;
    gap: 44px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 28px;
    margin-bottom: 48px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.footer-divider {
    width: 38px; height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    margin-bottom: 18px;
}

.footer-col p { font-size: 14px; line-height: 1.75; }

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-white);
    line-height: 1.05;
    margin-bottom: 18px;
    display: block;
}
.footer-logo-text span { color: var(--color-primary); }

.follow-label {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--color-white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}
.footer-divider-sm {
    width: 30px; height: 3px;
    background: var(--color-primary);
    border-radius: 2px; margin-bottom: 12px;
}

.social-link-item {
    display: flex; align-items: center; gap: 9px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 6px;
    transition: color 0.2s;
}
.social-link-item:hover { color: var(--color-primary); }

.footer-nav li { margin-bottom: 7px; }
.footer-nav li a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.footer-nav li a:hover { color: var(--color-primary); }

.contact-row {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 12px; font-size: 14px;
}
.contact-row .c-icon { color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 28px 0;
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    flex-wrap: wrap; gap: 8px;
}

/* ============================================================
   ELEMENTOR CANVAS PAGE SUPPORT
   ============================================================ */
.elementor-page #site-header,
.elementor-page #site-footer {
    display: none;
}

/* ============================================================
   ELEMENTOR INTEGRATION — section & widget overrides
   ============================================================ */

/* Stretch full-width sections edge-to-edge */
.elementor-section.elementor-section-stretched {
    max-width: 100% !important;
}

/* Hero section inside Elementor */
.hero-el-section.elementor-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero-el-section .elementor-container {
    align-items: center;
}

/* Make sure Bebas Neue headings render correctly inside Elementor */
.elementor-widget-heading .elementor-heading-title {
    font-family: 'Bebas Neue', sans-serif !important;
}

/* Elementor button — green theme */
.elementor-widget-button .elementor-button {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.25s ease;
}
.elementor-widget-button .elementor-button:hover {
    filter: brightness(0.9);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(29, 185, 84, 0.35);
}

/* Divider — green accent */
.elementor-widget-divider .elementor-divider-separator {
    border-color: #1DB954 !important;
}

/* CTA circle section centering */
.cta-el-section .elementor-column-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Inner section for category cards — equal height circles */
.elementor-inner-section .elementor-column {
    display: flex;
    flex-direction: column;
}

/* Padel page content area */
.padel-page-content {
    min-height: 50vh;
}

/* Prevent Elementor from adding unwanted margins on front page */
.is-front-page .elementor-section {
    margin-bottom: 0 !important;
}

/* Fix heading spacing inside Elementor columns */
.elementor-widget-heading + .elementor-widget-divider {
    margin-top: 0;
}

/* Responsive Elementor adjustments */
@media (max-width: 768px) {
    .hero-el-section.elementor-section {
        min-height: 80vh;
    }

    /* Stack category cards vertically on mobile */
    .elementor-inner-section .elementor-container {
        flex-direction: column;
    }
    .elementor-inner-section .elementor-column {
        width: 100% !important;
        max-width: 340px;
        margin: 0 auto 28px;
    }

    /* CTA circle — shrink on mobile */
    .cta-el-section div[style*="width:420px"] {
        width: 300px !important;
        height: 300px !important;
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid     { grid-template-columns: 1fr 1fr; }
    .cta-circle-card { width: 360px; height: 360px; min-width: 0; }
}

@media (max-width: 768px) {
    :root { --section-padding: 60px 0; }

    /* Mobile nav */
    #primary-nav {
        display: none;
        position: fixed; inset: 0;
        background: var(--color-charcoal);
        z-index: 999;
        flex-direction: column;
        align-items: center; justify-content: center;
    }
    #primary-nav.nav-open { display: flex; }
    #primary-nav ul { flex-direction: column; gap: 22px; text-align: center; }
    #primary-nav ul li a { font-size: 22px; }
    .hamburger { display: flex; z-index: 1000; }

    /* Sections */
    .about-inner,
    .feature-inner,
    .feature-inner.reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }

    .about-photo, .photo-placeholder,
    .feature-photo, .feature-photo-placeholder { width: 260px; height: 260px; }

    .categories-grid { grid-template-columns: 1fr; max-width: 340px; }

    .cta-banner-inner { justify-content: center; }
    .cta-circle-card  { width: 320px; height: 320px; padding: 40px; }
    .cta-circle-card .section-title { font-size: 30px; }

    .footer-grid  { grid-template-columns: 1fr; }
    .footer-bottom{ flex-direction: column; text-align: center; }

    .scroll-indicator { display: none; }

    .newsletter-form { flex-direction: column; }
    .newsletter-form button { width: 100%; }
}
