/* ===== GVPA Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Open+Sans:wght@400;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #C0392B;
  --dark-red: #922B21;
  --light-red: #FADBD8;
  --dark: #1C1C1C;
  --grey: #4A4A4A;
  --light-grey: #F5F5F5;
  --white: #FFFFFF;
}

body { font-family: 'Open Sans', sans-serif; color: var(--dark); line-height: 1.7; }

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

img { max-width: 100%; }

h1, h2, h3 { font-family: 'Playfair Display', serif; }

/* ===== NAVBAR ===== */
nav {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 52px; width: auto; }
.nav-logo span { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--red); font-weight: 700; line-height: 1.2; max-width: 220px; }

.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { font-weight: 600; font-size: 0.95rem; color: var(--dark); transition: color 0.2s; padding-bottom: 3px; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a.active { color: var(--red); border-bottom-color: var(--red); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--dark); border-radius: 2px; transition: 0.3s; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--dark-red) 0%, var(--red) 60%, #E74C3C 100%);
  color: var(--white);
  padding: 90px 40px;
  text-align: center;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 20px; line-height: 1.2; }
.hero p { font-size: 1.15rem; max-width: 680px; margin: 0 auto 32px; opacity: 0.92; }
.btn { display: inline-block; padding: 14px 34px; border-radius: 4px; font-weight: 600; font-size: 0.97rem; transition: 0.25s; cursor: pointer; }
.btn-white { background: var(--white); color: var(--red); }
.btn-white:hover { background: var(--light-red); }
.btn-red { background: var(--red); color: var(--white); border: 2px solid var(--red); }
.btn-red:hover { background: var(--dark-red); border-color: var(--dark-red); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); margin-left: 14px; }
.btn-outline:hover { background: var(--white); color: var(--red); }
.tagline { font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.8; margin-bottom: 12px; }

/* ===== SECTIONS ===== */
section { padding: 72px 40px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.82rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 10px; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 18px; color: var(--dark); }
.section-intro { font-size: 1.05rem; color: var(--grey); max-width: 700px; margin-bottom: 50px; }

/* ===== CARDS ===== */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.card { background: var(--white); border-radius: 8px; padding: 36px 30px; box-shadow: 0 4px 18px rgba(0,0,0,0.08); border-top: 4px solid var(--red); transition: transform 0.2s; }
.card:hover { transform: translateY(-4px); }
.card-icon { font-size: 2.2rem; margin-bottom: 16px; }
.card h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--dark); }
.card p { color: var(--grey); font-size: 0.97rem; }

/* ===== HIGHLIGHT BAND ===== */
.band { background: var(--red); color: var(--white); padding: 64px 40px; text-align: center; }
.band h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 16px; }
.band p { max-width: 660px; margin: 0 auto 28px; opacity: 0.92; }

/* ===== STATS ===== */
.stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; margin-top: 50px; }
.stat { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--red); font-weight: 700; }
.stat-label { font-size: 0.95rem; color: var(--grey); margin-top: 4px; }

/* ===== ALT SECTION ===== */
.alt { background: var(--light-grey); }

/* ===== TWO-COL ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col img { border-radius: 8px; width: 100%; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }

/* ===== VALUES LIST ===== */
.values { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-top: 30px; }
.values li { background: var(--white); border-left: 4px solid var(--red); padding: 14px 18px; border-radius: 0 6px 6px 0; font-weight: 600; color: var(--dark); }

/* ===== TEAM ===== */
.team { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 40px; }
.team-card { text-align: center; padding: 28px 20px; background: var(--white); border-radius: 8px; box-shadow: 0 3px 12px rgba(0,0,0,0.07); }
.team-card .avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--light-red); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 14px; }
.team-card h4 { font-size: 1rem; margin-bottom: 4px; }
.team-card span { font-size: 0.85rem; color: var(--red); font-weight: 600; }

/* ===== ACCORDION ===== */
.accordion { margin-top: 30px; }
.accordion-item { border-bottom: 1px solid #ddd; }
.accordion-btn { width: 100%; text-align: left; background: none; border: none; padding: 18px 0; font-size: 1.05rem; font-weight: 600; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.accordion-btn::after { content: '+'; font-size: 1.4rem; color: var(--red); }
.accordion-btn.open::after { content: '−'; }
.accordion-content { display: none; padding-bottom: 18px; color: var(--grey); font-size: 0.97rem; line-height: 1.7; }
.accordion-content.show { display: block; }

/* ===== CONTACT FORM ===== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
label { font-weight: 600; font-size: 0.9rem; color: var(--dark); }
input, textarea, select { padding: 12px 16px; border: 1px solid #ccc; border-radius: 4px; font-family: 'Open Sans', sans-serif; font-size: 0.97rem; color: var(--dark); outline: none; transition: border 0.2s; }
input:focus, textarea:focus { border-color: var(--red); }
textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 10px; }

/* ===== INFO BOX ===== */
.info-box { background: var(--light-grey); border-radius: 8px; padding: 36px; }
.info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.info-item:last-child { margin-bottom: 0; }
.info-icon { font-size: 1.5rem; flex-shrink: 0; }
.info-text h4 { font-weight: 600; margin-bottom: 4px; }
.info-text p, .info-text a { color: var(--grey); font-size: 0.95rem; }

/* ===== FOOTER ===== */
footer { background: var(--dark); color: rgba(255,255,255,0.85); padding: 50px 40px 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 50px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; opacity: 0.75; line-height: 1.7; }
footer h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); margin-bottom: 14px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul li a { font-size: 0.9rem; opacity: 0.75; transition: opacity 0.2s; }
footer ul li a:hover { opacity: 1; color: var(--light-red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; display: flex; justify-content: space-between; font-size: 0.83rem; opacity: 0.6; flex-wrap: wrap; gap: 8px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  nav { padding: 12px 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0; background: var(--white); padding: 20px; border-bottom: 2px solid var(--red); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  section { padding: 50px 20px; }
  .hero { padding: 60px 20px; }
  .band { padding: 50px 20px; }
  footer { padding: 40px 20px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
}
