/* ============================================
   PAINT WITH MARK - Global Styles
   Bob Ross Painting Classes in Kent
   ============================================ */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --warm-brown: #5C3D2E;
  --burnt-sienna: #A0522D;
  --cream: #FDF5E6;
  --gold: #C8956C;
  --deep-green: #2D4A3E;
  --off-white: #FAFAF7;
  --text: #2C2C2C;
  --text-light: #666;
  --white: #ffffff;
  --nav-height: 72px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.7; background: var(--off-white); }
img { max-width: 100%; height: auto; display: block; }
a { transition: color 0.3s; color: var(--burnt-sienna); text-decoration: none; }
a:visited { color: var(--burnt-sienna); }
a:hover { color: var(--warm-brown); }
.btn-primary, .btn-primary:visited { color: var(--white); }
.btn-primary:hover { color: var(--white); }
.btn-secondary, .btn-secondary:visited { color: var(--warm-brown); }
.btn-secondary:hover { color: var(--white); }
.cta-section .btn-primary, .cta-section .btn-primary:visited { color: var(--warm-brown); }
.cta-section .btn-secondary, .cta-section .btn-secondary:visited { color: var(--white); }
.site-footer a, .site-footer a:visited { color: #aaa; }
.site-footer a:hover { color: var(--gold); }
.nav-links a, .nav-links a:visited { color: var(--text); }
.nav-links a:hover { color: var(--burnt-sienna); }
.nav-cta, .nav-cta:visited { color: var(--white); }
.nav-logo, .nav-logo:visited { color: var(--warm-brown); }
.nav-phone, .nav-phone:visited { color: var(--burnt-sienna); }
.breadcrumb a, .breadcrumb a:visited { color: rgba(255,255,255,0.8); }
.page-hero a, .page-hero a:visited { color: rgba(255,255,255,0.9); }

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav { position: fixed; top: 0; width: 100%; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,0.06); }
.nav-inner { max-width: 1440px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: var(--nav-height); padding: 0 2rem; }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--warm-brown); text-decoration: none; }
.nav-logo span { color: var(--burnt-sienna); }
.nav-links { list-style: none; display: flex; gap: 1.8rem; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 0.88rem; font-weight: 500; letter-spacing: 0.02em; }
.nav-links a:hover, .nav-links a.active { color: var(--burnt-sienna); }
.nav-cta { background: var(--burnt-sienna); color: var(--white) !important; padding: 7px 16px; border-radius: 6px; text-decoration: none; font-size: 0.8rem; font-weight: 600; }
.nav-cta:hover { background: var(--warm-brown); }
.nav-phone { display: none; text-decoration: none; color: var(--warm-brown); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.02em; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' \25BE'; font-size: 0.7em; }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--white); border-radius: 10px; box-shadow: 0 8px 32px rgba(0,0,0,0.1); min-width: 200px; padding: 0.5rem 0; z-index: 200; border: 1px solid rgba(0,0,0,0.06); }
.nav-dropdown-menu a { display: block; padding: 0.6rem 1.2rem; font-size: 0.88rem !important; color: var(--text) !important; white-space: nowrap; }
.nav-dropdown-menu a:hover { background: var(--cream); color: var(--burnt-sienna) !important; }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }

/* Mobile menu toggle */
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text); padding: 8px; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero { display: flex; align-items: flex-start; padding: calc(var(--nav-height) + 20px) 2rem 3rem; background: linear-gradient(135deg, var(--cream) 0%, #f5ead6 50%, #e8dcc8 100%); position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; right: -100px; top: 50%; transform: translateY(-50%); width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(160,82,45,0.08) 0%, transparent 70%); pointer-events: none; }
.hero-content { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: 100%; }
.hero-text h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; line-height: 1.15; color: var(--warm-brown); margin-bottom: 1.5rem; }
.hero-text h1 em { font-style: italic; color: var(--burnt-sienna); }
.hero-text p { font-size: 1.15rem; color: var(--text-light); margin-bottom: 2rem; max-width: 520px; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image { position: relative; z-index: 1; }
.hero-image img { max-width: 530px; height: 450px; width: 100%; border-radius: 20px; box-shadow: 0 20px 60px rgba(92,61,46,0.2); object-fit: cover; border: 3px solid var(--gold); }
.hero-badge { position: absolute; bottom: -20px; left: -20px; background: var(--deep-green); color: var(--white); padding: 5px 16px 14px; border-radius: 14px; font-size: 0.9rem; font-weight: 600; box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.hero-badge span { display: block; font-size: 1.8rem; font-family: 'Playfair Display', serif; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary { background: var(--burnt-sienna); color: var(--white); padding: 14px 32px; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 1rem; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--warm-brown); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(160,82,45,0.25); }
.btn-secondary { background: transparent; color: var(--warm-brown); padding: 14px 32px; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 1rem; border: 2px solid var(--warm-brown); transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
.btn-secondary:hover { background: var(--warm-brown); color: var(--white); }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar { background: var(--white); padding: 1.5rem 2rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
.trust-bar .inner { max-width: 1440px; margin: 0 auto; display: flex; justify-content: center; gap: 2rem; flex-wrap: nowrap; white-space: nowrap; overflow: hidden; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-light); flex-shrink: 0; }
.trust-item strong { color: var(--text); }
.trust-icon { width: 40px; height: 40px; background: var(--cream); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }

/* ============================================
   SECTION STYLES
   ============================================ */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1440px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .tag { display: inline-block; background: rgba(160,82,45,0.1); color: var(--burnt-sienna); padding: 6px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1rem; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--warm-brown); margin-bottom: 1rem; }
.section-header p { font-size: 1.1rem; color: var(--text-light); max-width: 700px; margin: 0 auto; }

/* ============================================
   FEATURE CARDS (Why Choose Us)
   ============================================ */
.features { background: var(--white); padding-top: 2.5rem; padding-bottom: 2.5rem; }
.features-grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-card { background: var(--off-white); padding: 1.2rem; border-radius: 16px; border: 2px solid var(--gold); box-shadow: 0 4px 16px rgba(0,0,0,0.06); transition: all 0.3s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.feature-card .feature-header { display: flex; align-items: center; gap: 12px; margin-bottom: 0.75rem; }
.feature-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--burnt-sienna), var(--gold)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--white); flex-shrink: 0; }
.feature-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 0; color: var(--warm-brown); }
.feature-card p { color: var(--text-light); font-size: 0.95rem; }

/* ============================================
   CLASS CARDS
   ============================================ */
.classes-section { background: var(--off-white); padding-top: 2.5rem; padding-bottom: 2.5rem; }
.classes-grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.class-card { background: var(--white); border-radius: 16px; overflow: hidden; border: 2px solid var(--gold); box-shadow: 0 4px 16px rgba(0,0,0,0.06); transition: all 0.3s; display: flex; flex-direction: column; position: relative; }
.class-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.class-card img { width: 100%; height: 280px; object-fit: cover; border-bottom: 3px solid var(--gold); cursor: pointer; }
.class-card-body { padding: 0.75rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.class-card-body p { flex: 1; }
.class-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--warm-brown); margin-bottom: 0.5rem; }
.class-card-body .date { color: var(--burnt-sienna); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.5rem; }
.class-card-body p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1rem; }
.class-card-body .price { font-size: 1.4rem; font-weight: 700; color: var(--warm-brown); }
.sold-out { background: #e74c3c; color: var(--white); padding: 4px 12px; border-radius: 6px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.class-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: 0.5rem; }
.places-left { background: var(--deep-green); color: var(--white); padding: 5px 10px; border-radius: 6px; font-size: 0.7rem; font-weight: 700; line-height: 1.4; }
.places-left.low { background: #e67e22; }
.places-left.sold-out-badge { background: #e74c3c; }
.btn-book { padding: 5px 10px; background: var(--burnt-sienna); color: var(--white); border: none; border-radius: 6px; font-size: 0.7rem; font-weight: 700; cursor: pointer; transition: background 0.3s; white-space: nowrap; line-height: 1.4; }
.btn-book:hover { background: var(--warm-brown); }
.btn-book.disabled { background: #ccc; color: #999; cursor: not-allowed; font-size: 0; width: 0; padding: 0; overflow: hidden; }
.btn-book.disabled:hover { background: #ccc; }
.class-info-split { max-width: 1440px; margin: 0 auto 2rem; display: grid; grid-template-columns: 1fr; gap: 1rem; }
.class-info-box { background: var(--cream); border: 2px solid var(--gold); border-radius: 12px; padding: 1.2rem 1.5rem; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.class-info-box h3 { font-family: 'Playfair Display', serif; color: var(--warm-brown); margin-bottom: 0.5rem; font-size: 1.15rem; }
.class-info-box p, .class-info-box li { color: var(--text-light); font-size: 0.9rem; }
.class-info-box ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.2rem 1.5rem; }
.class-info-box ul li { padding: 2px 0; padding-left: 1.3rem; position: relative; }
.class-info-box ul li::before { content: '\2713'; position: absolute; left: 0; color: var(--burnt-sienna); font-weight: 700; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section { background: var(--cream); }
.about-grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image img { width: 100%; border-radius: 20px; box-shadow: 0 16px 48px rgba(0,0,0,0.1); border: 3px solid var(--gold); }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--warm-brown); margin-bottom: 1.5rem; }
.about-text p { color: var(--text-light); font-size: 1.05rem; margin-bottom: 1rem; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(0,0,0,0.08); }
.stat { text-align: center; }
.stat .number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--burnt-sienna); display: block; }
.stat .label { font-size: 0.85rem; color: var(--text-light); }

/* Long-form about page */
.about-long { background: var(--off-white); }
.about-long .content-wrap { max-width: 1440px; margin: 0 auto; }
.about-long .content-wrap p { color: var(--text-light); font-size: 1.05rem; margin-bottom: 1.2rem; line-height: 1.9; }
.about-long .content-wrap h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--warm-brown); margin: 2.5rem 0 1rem; }
.about-long .content-wrap h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--warm-brown); margin: 2rem 0 0.75rem; }
.about-long .cert-images { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 2rem 0; }
.about-long .cert-images img { border-radius: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.about-long .cert-images figcaption { text-align: center; font-size: 0.9rem; color: var(--text-light); margin-top: 0.5rem; }

/* ============================================
   ONLINE COURSES CARDS
   ============================================ */
.online-section { background: var(--white); }
.online-grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.online-card { border-radius: 14px; overflow: hidden; position: relative; cursor: pointer; transition: all 0.3s; border: 2px solid var(--gold); box-shadow: 0 4px 16px rgba(0,0,0,0.06); text-decoration: none; display: block; color: inherit; }
.online-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.online-card img { width: 100%; height: 200px; object-fit: cover; border: 3px solid var(--gold); border-radius: 14px; }
.online-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: var(--white); }
.online-card-overlay h4 { font-size: 0.95rem; margin-bottom: 4px; }
.online-card-overlay .price { font-size: 0.85rem; color: var(--gold); font-weight: 600; }
.bundle-thumbs { display: grid; grid-template-columns: repeat(9, 1fr); gap: 6px; margin-bottom: 1rem; }
@media (max-width: 768px) { .bundle-thumbs { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 480px) { .bundle-thumbs { grid-template-columns: repeat(3, 1fr); } .bundle-thumbs img { height: 70px !important; } }
.online-detail { max-width: 1440px; margin: 0 auto; }
.online-detail-card { background: var(--off-white); border-radius: 16px; overflow: hidden; display: grid; grid-template-columns: 480px 1fr; gap: 0; margin-bottom: 2rem; border: 2px solid var(--gold); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.online-detail-card img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.online-detail-body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.online-detail-body h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--warm-brown); margin-bottom: 0.75rem; }
.online-detail-body p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 1rem; }
.online-detail-body .pricing { display: flex; gap: 1rem; flex-wrap: wrap; }
.online-detail-body .price-option { background: var(--white); border: 1px solid var(--gold); border-radius: 10px; padding: 8px 24px; text-align: center; transition: all 0.3s; }
.online-detail-body .price-option:hover { background: var(--cream); border-color: var(--burnt-sienna); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.online-detail-body .price-option .amount { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--burnt-sienna); font-weight: 700; }
.online-detail-body .price-option .type { font-size: 0.75rem; color: var(--text-light); display: block; margin-top: 2px; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-section { background: var(--off-white); }
.gallery-grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-grid img { width: 100%; height: 200px; object-fit: cover; border-radius: 12px; transition: all 0.3s; cursor: pointer; border: 3px solid var(--gold); }
.gallery-grid img:hover { transform: scale(1.03); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section { background: var(--off-white); }
.contact-grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; }
.contact-form label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; color: var(--text); }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 12px 16px; border: 1px solid var(--border, #ddd); border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 0.95rem; background: var(--white); transition: border-color 0.3s; margin-bottom: 1.2rem; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--burnt-sienna); box-shadow: 0 0 0 3px rgba(160,82,45,0.1); }
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-info-side h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--warm-brown); margin-bottom: 1.5rem; }
.contact-info-side .info-item { display: flex; gap: 12px; margin-bottom: 1.5rem; }
.contact-info-side .info-icon { width: 44px; height: 44px; background: var(--cream); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-info-side .info-text { font-size: 0.95rem; color: var(--text-light); }
.contact-info-side .info-text strong { color: var(--text); display: block; margin-bottom: 2px; }
.contact-info-side .info-text a { color: var(--burnt-sienna); text-decoration: none; }
.contact-info-side .venue-img { width: 100%; border-radius: 16px; margin-top: 2rem; box-shadow: 0 8px 24px rgba(0,0,0,0.06); border: 3px solid var(--gold); }

/* ============================================
   GIFT VOUCHER
   ============================================ */
.gift-voucher-section { padding: 4rem 2rem; background: linear-gradient(135deg, #fdf8f2 0%, var(--cream) 100%); }
.gift-voucher-inner { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.gift-voucher-text .tag { display: inline-block; background: rgba(160,82,45,0.1); color: var(--burnt-sienna); padding: 6px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.gift-voucher-text h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--warm-brown); margin-bottom: 1rem; }
.gift-voucher-text p { font-size: 1.05rem; color: var(--text-light); line-height: 1.8; margin-bottom: 1.5rem; }
.gift-voucher-text ul { list-style: none; padding: 0; }
.gift-voucher-text ul li { font-size: 0.95rem; color: var(--text); padding: 6px 0; line-height: 1.6; }

.gift-voucher-card { display: flex; flex-direction: column; align-items: center; }
.voucher-preview { position: relative; width: 100%; max-width: 500px; min-height: 320px; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 4px 20px rgba(0,0,0,0.15); display: flex; }

/* Dark navy panel (left 65%) */
.voucher-dark-panel { background: linear-gradient(160deg, #1a2332 0%, #2a3545 40%, #1a2332 100%); flex: 0 0 65%; padding: 2rem 1.5rem; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }

/* Gold glitter edge (right side — full coverage, no white gaps) */
.voucher-gold-edge { position: absolute; top: 0; right: 0; bottom: 0; width: 50%; background: linear-gradient(145deg, #c9a84c 0%, #e8d48b 15%, #b8942e 30%, #dcc36e 50%, #a67c1a 70%, #c9a84c 85%, #e8d48b 100%); z-index: 1; clip-path: polygon(25% 0, 100% 0, 100% 100%, 25% 100%, 0% 50%); }

/* Scattered presents and stars on right side */
.voucher-presents { position: absolute; top: 0; right: 0; bottom: 0; width: 40%; z-index: 3; pointer-events: none; }
.voucher-present, .voucher-star { position: absolute; filter: drop-shadow(0 3px 6px rgba(0,0,0,0.3)); }
.voucher-present { font-size: 2.5rem; }
.voucher-present--1 { top: 8%; right: 5%; transform: rotate(-12deg); font-size: 2.8rem; }
.voucher-present--2 { top: 42%; right: 22%; transform: rotate(8deg); font-size: 3.4rem; }
.voucher-present--3 { bottom: 10%; right: 8%; transform: rotate(-6deg); font-size: 2.2rem; }
.voucher-star { color: rgba(255,255,255,0.85); }
.voucher-star--1 { top: 22%; right: 32%; font-size: 1.2rem; transform: rotate(15deg); }
.voucher-star--2 { top: 60%; right: 5%; font-size: 0.9rem; transform: rotate(-20deg); }
.voucher-star--3 { bottom: 28%; right: 30%; font-size: 1.5rem; transform: rotate(10deg); }
.voucher-star--4 { top: 5%; right: 38%; font-size: 0.8rem; transform: rotate(-8deg); }
.voucher-star--5 { bottom: 5%; right: 25%; font-size: 1rem; transform: rotate(25deg); }

/* Price tag */
.voucher-price-tag { position: absolute; top: 12px; right: 12px; background: linear-gradient(135deg, var(--gold), #e8d48b); color: #1a2332; font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; padding: 6px 16px; border-radius: 8px; z-index: 4; box-shadow: 0 3px 10px rgba(0,0,0,0.2); }

/* Main title */
.voucher-main-title { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: #ffffff; line-height: 1.15; margin: 0 0 1.2rem 0; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }

/* Fields: To, From, Voucher No */
.voucher-fields { margin-bottom: 1rem; }
.voucher-field { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.6rem; }
.voucher-field span { color: #ffffff; font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 400; white-space: nowrap; }
.voucher-line { flex: 1; border-bottom: 1.5px solid rgba(255,255,255,0.5); min-width: 100px; }

/* Call text */
.voucher-call { color: rgba(255,255,255,0.8); font-size: 0.8rem; margin: 0.5rem 0 0.4rem; line-height: 1.4; }

/* Valid until */
.voucher-valid { color: #ffffff; font-size: 1rem; margin: 0.3rem 0 0.15rem; }
.voucher-valid strong { font-weight: 700; }

/* URL */
.voucher-url { color: rgba(255,255,255,0.6); font-size: 0.8rem; font-style: italic; margin: 0; }

@media (max-width: 768px) {
  .gift-voucher-inner { grid-template-columns: 1fr; text-align: center; }
  .gift-voucher-text h2 { font-size: 2rem; }
  .gift-voucher-text ul { text-align: left; max-width: 400px; margin: 0 auto; }
  .voucher-preview { max-width: 400px; margin: 0 auto; }
  .voucher-main-title { font-size: 1.5rem; }
  .voucher-dark-panel { padding: 1.5rem 1.2rem; }
  .voucher-present--1 { font-size: 2.2rem; }
  .voucher-present--2 { font-size: 2.6rem; }
  .voucher-present--3 { font-size: 1.8rem; }
  .voucher-star { font-size: 0.8rem !important; }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { background: linear-gradient(135deg, var(--warm-brown), var(--deep-green)); padding: 5rem 2rem; text-align: center; color: var(--white); }
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 1rem; }
.cta-section p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.cta-section .btn-primary { background: var(--white); color: var(--warm-brown); }
.cta-section .btn-primary:hover { background: var(--cream); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero { padding: calc(var(--nav-height) + 40px) 2rem 3rem; background: linear-gradient(135deg, var(--cream) 0%, #f5ead6 50%, #e8dcc8 100%); text-align: center; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--warm-brown); margin-bottom: 1rem; }
.page-hero p { font-size: 1.15rem; color: var(--text-light); max-width: 700px; margin: 0 auto; }
.page-hero .breadcrumb { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.5rem; }
.page-hero .breadcrumb a { color: var(--burnt-sienna); text-decoration: none; }
.page-hero .breadcrumb a:hover { text-decoration: underline; }

/* ============================================
   INFO PAGES (Bob Ross / Bill Alexander)
   ============================================ */
.info-page { background: var(--white); padding-top: 0; }
.info-content h2:first-child { margin-top: 0; }
.info-content { max-width: 1440px; margin: 0 auto; }
.info-content p { color: var(--text-light); font-size: 1.05rem; margin-bottom: 1.2rem; line-height: 1.9; }
.info-content h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--warm-brown); margin: 2.5rem 0 1rem; }
.info-content h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--warm-brown); margin: 2rem 0 0.75rem; }
.info-content blockquote { background: var(--cream); border-left: 4px solid var(--burnt-sienna); padding: 1.5rem 2rem; margin: 2rem 0; border-radius: 0 12px 12px 0; font-style: italic; color: var(--text); font-size: 1.1rem; }
.info-content ul { list-style: none; padding: 0; margin: 1rem 0; }
.info-content ul li { padding: 8px 0 8px 1.5rem; position: relative; color: var(--text-light); }
.info-content ul li::before { content: '\2713'; position: absolute; left: 0; color: var(--burnt-sienna); font-weight: 700; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: #1a1a1a; color: #aaa; padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); margin-bottom: 1rem; }
.site-footer h4 { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 1rem; }
.site-footer p, .site-footer a { font-size: 0.9rem; color: #aaa; text-decoration: none; line-height: 2; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom { max-width: 1440px; margin: 3rem auto 0; padding-top: 2rem; border-top: 1px solid #333; display: flex; justify-content: space-between; font-size: 0.85rem; flex-wrap: wrap; gap: 1rem; }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 1000; justify-content: center; align-items: center; cursor: pointer; }
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img { max-width: 700px; max-height: 500px; width: 700px; height: 500px; object-fit: cover; border-radius: 16px; border: 3px solid var(--gold); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.lightbox-caption { position: fixed; bottom: 40px; left: 50%; transform: translateX(-50%); color: white; font-family: 'Playfair Display', serif; font-size: 1.3rem; text-align: center; z-index: 1001; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.lightbox-close { position: fixed; top: 20px; right: 30px; color: white; font-size: 2.5rem; cursor: pointer; z-index: 1001; line-height: 1; opacity: 0.8; transition: opacity 0.3s; }
.lightbox-close:hover { opacity: 1; }

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 0.82rem; }
  .hero-text h1 { font-size: 2.8rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .classes-grid { grid-template-columns: repeat(2, 1fr); }
  .online-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar .inner { gap: 1.5rem; }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 1024px) {
  :root { --nav-height: 64px; }
  .nav-links { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; background: var(--white); flex-direction: column; padding: 1.5rem 2rem; gap: 0; border-bottom: 1px solid rgba(0,0,0,0.06); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0.75rem 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
  .nav-links a { font-size: 1rem; }
  .nav-cta { display: none; }
  .nav-phone { display: block; margin: 0 auto 0 1rem; }
  .nav-toggle { display: block; }

  .hero { padding: calc(var(--nav-height) + 16px) 1.5rem 2rem; }
  .hero-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-text h1 { font-size: 2.2rem; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-image img { max-width: 100%; height: auto; margin: 0 auto; }
  .hero-badge { position: relative; bottom: auto; left: auto; margin: 1rem auto 0; display: inline-block; }

  .trust-bar .inner { flex-wrap: wrap; gap: 1rem; justify-content: flex-start; white-space: normal; }

  section { padding: 3rem 1.5rem; }
  .section-header h2 { font-size: 2rem; }
  .page-hero h1 { font-size: 2.2rem; }

  .features-grid, .classes-grid { grid-template-columns: 1fr; }
  .class-info-split { grid-template-columns: 1fr; }
  .online-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .online-detail-card { grid-template-columns: 1fr; }
  .about-long .cert-images { grid-template-columns: 1fr; }

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

  .cta-section h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 1.8rem; }
  .online-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

/* ===== LOCATION PAGES ===== */
.location-travel { padding: 4rem 2rem; background: var(--off-white); }
.location-travel-inner { max-width: 1440px; margin: 0 auto; }
.location-travel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: stretch; }
.location-travel-grid .class-info-box { margin: 0; }
.map-embed { border-radius: 16px; overflow: hidden; border: 2px solid var(--gold); box-shadow: 0 4px 16px rgba(0,0,0,0.06); display: flex; }
.map-embed iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }
.nearby-section { padding: 4rem 2rem; background: var(--white); }
.nearby-section h2 { font-family: 'Playfair Display', serif; color: var(--warm-brown); text-align: center; margin-bottom: 2rem; font-size: 2rem; }
.nearby-grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.nearby-card { background: var(--cream); border: 2px solid var(--gold); border-radius: 16px; padding: 1.5rem; text-align: center; text-decoration: none; color: var(--text); transition: all 0.3s; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.nearby-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); background: var(--white); }
.nearby-card h3 { font-family: 'Playfair Display', serif; color: var(--warm-brown); font-size: 1.1rem; margin-bottom: 0.3rem; }
.nearby-card .distance { color: var(--burnt-sienna); font-weight: 600; font-size: 0.85rem; }
.location-classes { padding: 4rem 2rem; background: var(--cream); }
.location-classes-inner { max-width: 1440px; margin: 0 auto; }
.location-classes h2 { font-family: 'Playfair Display', serif; color: var(--warm-brown); text-align: center; margin-bottom: 2rem; font-size: 2rem; }

/* ===== LOCATION GALLERY ===== */
.location-gallery { padding: 3rem 2rem 1rem; background: var(--white); }
.location-gallery .section-inner { max-width: 1440px; margin: 0 auto; }
.location-gallery h2 { font-family: 'Playfair Display', serif; color: var(--warm-brown); text-align: center; margin-bottom: 2rem; font-size: 2rem; }
.location-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.location-gallery-grid img { width: 100%; height: 280px; object-fit: cover; border: 3px solid var(--gold); border-radius: 16px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); cursor: pointer; transition: all 0.3s; }
.location-gallery-grid img:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
@media (max-width: 768px) {
  .location-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .location-gallery-grid img { height: 220px; }
}
@media (max-width: 480px) {
  .location-gallery-grid { grid-template-columns: 1fr; }
  .location-gallery-grid img { height: 240px; }
}

/* ===== BLOG ===== */
.blog-section { padding: 4rem 2rem; background: var(--off-white); }
.blog-grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { background: var(--white); border-radius: 16px; overflow: hidden; border: 2px solid var(--gold); box-shadow: 0 4px 16px rgba(0,0,0,0.06); transition: all 0.3s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; border-bottom: 3px solid var(--gold); }
.blog-card-body { padding: 1.2rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--warm-brown); margin-bottom: 0.5rem; }
.blog-card-body h3 a { color: inherit; text-decoration: none; }
.blog-card-body h3 a:hover { color: var(--burnt-sienna); }
.blog-card-body p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0.75rem; flex: 1; }
.blog-card-body time { color: var(--burnt-sienna); font-size: 0.8rem; font-weight: 600; }
.blog-category { display: inline-block; background: rgba(160,82,45,0.1); color: var(--burnt-sienna); padding: 3px 10px; border-radius: 12px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; margin-bottom: 0.5rem; }
.blog-meta { color: var(--text-light); font-size: 0.9rem; margin-bottom: 2rem; }
.blog-meta strong { color: var(--burnt-sienna); }
.blog-tags { margin-top: 2rem; padding-top: 1.5rem; border-top: 2px solid var(--gold); }
.blog-tags span { display: inline-block; background: var(--cream); border: 1px solid var(--gold); padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; color: var(--warm-brown); margin: 0 4px 8px 0; }
.related-posts { padding: 4rem 2rem; background: var(--cream); }
.related-posts h2 { font-family: 'Playfair Display', serif; color: var(--warm-brown); text-align: center; margin-bottom: 2rem; font-size: 2rem; }
.related-posts .blog-grid { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto; }

/* ===== RESPONSIVE: LOCATION + BLOG ===== */
@media (max-width: 768px) {
  .location-travel-grid { grid-template-columns: 1fr; }
  .nearby-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .nearby-grid { grid-template-columns: 1fr; }
}

/* ===== ART SUPPLIES PAGE ===== */
.supplies-intro { padding: 3rem 2rem 1rem; background: var(--white); }
.supplies-intro .content-wrap { max-width: 1440px; margin: 0 auto; }
.supplies-intro p { font-size: 1.05rem; color: var(--text); margin-bottom: 1rem; line-height: 1.8; }
.supplies-note { background: var(--cream); border-left: 4px solid var(--gold); padding: 1.2rem 1.5rem; border-radius: 0 12px 12px 0; margin-top: 1.5rem; }

.supplies-nav-section { padding: 0 2rem 2rem; background: var(--white); }
.supplies-quick-nav { max-width: 1440px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; padding: 1rem 1.5rem; background: var(--cream); border: 2px solid var(--gold); border-radius: 12px; }
.supplies-quick-nav span { font-weight: 600; color: var(--warm-brown); font-size: 0.9rem; }
.supplies-quick-nav a { font-size: 0.88rem; font-weight: 500; padding: 4px 14px; border-radius: 20px; background: var(--white); border: 1px solid var(--gold); transition: all 0.3s; }
.supplies-quick-nav a:hover { background: var(--burnt-sienna); color: var(--white); border-color: var(--burnt-sienna); }

.supplies-section { padding: 4rem 2rem; background: var(--white); }
.supplies-section--alt { background: var(--off-white); }
.supplies-section .content-wrap { max-width: 1440px; margin: 0 auto; }
.supplies-section h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--warm-brown); text-align: center; margin-bottom: 0.5rem; }
.section-subtitle { text-align: center; color: var(--text-light); font-size: 1.05rem; max-width: 900px; margin: 0 auto 2.5rem; }

.supplies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.supplies-grid--compact { grid-template-columns: repeat(4, 1fr); }

.supply-card { background: var(--white); border: 2px solid var(--gold); border-radius: 16px; padding: 1.5rem; display: flex; flex-direction: column; transition: all 0.3s; box-shadow: 0 4px 16px rgba(0,0,0,0.04); position: relative; }
.supply-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.supplies-section--alt .supply-card { background: var(--white); }
.supply-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--warm-brown); margin-bottom: 0.5rem; }
.supply-card p { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; flex: 1; margin-bottom: 1rem; }
.supply-card--featured { border-color: var(--burnt-sienna); border-width: 3px; background: linear-gradient(to bottom, #fdf8f2, var(--white)); }

.supply-card--small h3 { font-size: 1rem; }
.supply-card--small p { font-size: 0.85rem; margin-bottom: 0.75rem; }

.supply-badge { position: absolute; top: -12px; right: 16px; background: var(--burnt-sienna); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 4px 14px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.05em; }

.btn-amazon { display: inline-block; background: #FF9900; color: #111 !important; font-weight: 600; font-size: 0.92rem; padding: 10px 24px; border-radius: 8px; text-align: center; transition: all 0.3s; border: none; }
.btn-amazon:visited { color: #111 !important; }
.btn-amazon:hover { background: #e88b00; transform: translateY(-1px); color: #111 !important; }
.btn-amazon--sm { font-size: 0.82rem; padding: 7px 16px; }

@media (max-width: 1024px) {
  .supplies-grid { grid-template-columns: repeat(2, 1fr); }
  .supplies-grid--compact { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .supplies-grid--compact { grid-template-columns: repeat(2, 1fr); }
  .supplies-quick-nav { justify-content: center; }
}
@media (max-width: 480px) {
  .supplies-grid { grid-template-columns: 1fr; }
  .supplies-grid--compact { grid-template-columns: 1fr; }
  .supplies-quick-nav { flex-direction: column; text-align: center; }
}
