/* ── Global Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

/* ================================================================
   LOGO BAR (above navbar — common for all pages)
   ================================================================ */
.logo-bar {
  width: 100%;
  background: #ffffff;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eeeeee;
}

.logo-bar-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-gear {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.logo-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-name-main {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  line-height: 1;
}
.logo-img {
  height: 60px;
  width: auto;
}
.logo-name-stack {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  color: #555555;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
}

.logo-name-year {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
}

.logo-divider {
  width: 1.5px;
  height: 44px;
  background: #cccccc;
  flex-shrink: 0;
  margin: 0 10px;
}

.logo-location {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.logo-location-city {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #e05a00;
}

.logo-location-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #444444;
}

@media (max-width: 480px) {
  .logo-gear { width: 38px; height: 38px; }
  .logo-name-main { font-size: 22px; }
  .logo-name-year { font-size: 16px; }
  .logo-location-city { font-size: 14px; }
  .logo-location-date { font-size: 12px; }
  .logo-bar { padding: 12px 16px; }
}

/* ================================================================
   SECTION 1 — NAVBAR + HERO
   ================================================================ */

body {
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* ================================================================
   SECTION 1 — NAVBAR + HERO
   ================================================================ */
nav { background: transparent; }
nav.main-nav { background: #1e3d30; width: 100%; position: relative; z-index: 1000; }
nav.footer-nav-row, nav.footer-nav-row2 { background: none !important; width: auto; position: static; z-index: auto; }
.nav-container { display: flex; align-items: center; justify-content: center; width: 100%; height: 52px; padding: 0 16px; position: relative; }
.nav-links { display: flex; align-items: center; justify-content: center; flex-wrap: nowrap; gap: 0; list-style: none; }
.nav-item { position: relative; }
.nav-link { color: #ffffff; text-decoration: none; font-family: 'Montserrat', sans-serif; font-size: 13.5px; font-weight: 500; padding: 0 15px; height: 52px; display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; letter-spacing: 0.01em; transition: background 0.18s; cursor: pointer; border: none; background: none; }
.nav-link:hover, .nav-item:hover > .nav-link, .nav-item.open > .nav-link { background: rgba(255,255,255,0.1); }
.nav-arrow { font-size: 9px; opacity: 0.8; transition: transform 0.2s; display: inline-block; }
.nav-item.open .nav-arrow { transform: rotate(180deg); }
.dropdown { display: none; position: absolute; top: 52px; left: 0; min-width: 200px; background: #1a3828; border-top: 2px solid #4caf7d; box-shadow: 0 6px 20px rgba(0,0,0,0.35); z-index: 999; flex-direction: column; list-style: none; }
.nav-item:hover .dropdown, .nav-item.open .dropdown { display: flex; }
.dropdown li a { display: block; padding: 11px 20px; color: #e8f5ee; text-decoration: none; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.01em; border-bottom: 1px solid rgba(255,255,255,0.07); transition: background 0.15s, color 0.15s; white-space: nowrap; }
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: rgba(255,255,255,0.1); color: #ffffff; }
.hamburger { display: none; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; z-index: 1001; }
.hamburger span { display: block; width: 24px; height: 2px; background: #ffffff; border-radius: 2px; transition: all 0.28s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #1a3828; z-index: 998; flex-direction: column; box-shadow: 0 8px 24px rgba(0,0,0,0.4); max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.mobile-menu.open { max-height: 600px; }
.mob-link { display: flex; align-items: center; justify-content: space-between; color: #ffffff; text-decoration: none; font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 500; padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); cursor: pointer; background: none; border-left: none; border-right: none; border-top: none; width: 100%; text-align: left; letter-spacing: 0.01em; transition: background 0.15s; }
.mob-link:hover { background: rgba(255,255,255,0.07); }
.mob-link .mob-arrow { font-size: 10px; transition: transform 0.2s; }
.mob-link.active .mob-arrow { transform: rotate(180deg); }
.mob-sub { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; background: #152f20; }
.mob-sub.open { max-height: 300px; }
.mob-sub a { display: block; padding: 11px 20px 11px 36px; color: #c8e6d4; text-decoration: none; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.06); transition: background 0.15s; }
.mob-sub a:hover { background: rgba(255,255,255,0.07); color: #fff; }

.hero { position: relative; width: 100%; min-height: 560px; display: flex; flex-direction: column; }
.hero-bg { position: absolute; inset: 0; background-color: #172e22; background-image: radial-gradient(ellipse 80% 60% at 28% 40%, rgba(50,100,70,0.3) 0%, transparent 60%), radial-gradient(ellipse 60% 80% at 75% 50%, rgba(30,70,50,0.25) 0%, transparent 70%); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: rgba(20, 50, 34, 0.70); }
.hero-upper { position: relative; z-index: 2; flex: 1; display: flex; align-items: center; justify-content: center; padding: 50px 24px 36px; }
.hero-center { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; max-width: 780px; }
.logo-row { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 28px; }
.logo-circle { width: 88px; height: 88px; border-radius: 50%; flex-shrink: 0; background: conic-gradient(from 150deg, #f06292 0deg, #d44fbc 75deg, #9b3fcf 155deg, #7c3aed 230deg, #9b3fcf 295deg, #f06292 360deg); display: flex; align-items: center; justify-content: center; border: 3.5px solid rgba(255,255,255,0.22); }
.logo-circle svg { width: 44px; height: 44px; }
.logo-text { text-align: left; }
.logo-text .lt1 { display: block; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; color: #e040a0; letter-spacing: 0.07em; text-transform: uppercase; line-height: 1.4; }
.logo-text .lt2 { display: block; font-family: 'Montserrat', sans-serif; font-size: 21px; font-weight: 800; color: #e040a0; letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.1; }
.logo-text .lt3 { display: block; font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; color: #8b5cf6; letter-spacing: 0.09em; text-transform: uppercase; margin-top: 3px; }
.hero-heading { font-family: 'Montserrat', sans-serif; font-size: clamp(26px, 4vw, 50px); font-weight: 800; color: #ffffff; line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 18px; }
.hero-date { font-family: 'Open Sans', sans-serif; font-size: clamp(15px, 1.8vw, 21px); color: #ffffff; letter-spacing: 0.03em; margin-bottom: 13px; }
.hero-location { display: inline-flex; align-items: center; gap: 7px; font-family: 'Open Sans', sans-serif; font-size: clamp(12px, 1.1vw, 14.5px); font-weight: 600; color: #ffffff; }
.hero-location svg { width: 17px; height: 17px; flex-shrink: 0; }
.quick-links-wrap { position: relative; z-index: 3; width: 100%; padding: 0 165px; }
.ql-bar { width: 100%; background: #2a4a3a; border: 1px solid rgba(255,255,255,0.15); display: grid; grid-template-columns: repeat(4, 1fr); }
.ql-item { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 28px 16px; text-decoration: none; border-right: 1px solid rgba(255,255,255,0.18); transition: background 0.18s; cursor: pointer; }
.ql-item:last-child { border-right: none; }
.ql-item:hover { background: rgba(255,255,255,0.08); }
.ql-item svg { width: 34px; height: 34px; flex-shrink: 0; }
.ql-label { font-family: 'Montserrat', sans-serif; font-size: 15.5px; font-weight: 600; color: #ffffff; white-space: nowrap; }

/* ================================================================
   SECTION 17 — FOOTER
   ================================================================ */
.footer-top { background: #3a6048; width: 100%; padding: 28px 60px; }
.footer-top-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.footer-logo-circle { width: 72px; height: 72px; border-radius: 50%; background: conic-gradient(from 150deg, #f06292 0deg, #d44fbc 75deg, #9b3fcf 155deg, #7c3aed 230deg, #9b3fcf 295deg, #f06292 360deg); display: flex; align-items: center; justify-content: center; border: 3px solid rgba(255,255,255,0.2); flex-shrink: 0; }
.footer-logo-circle svg { width: 36px; height: 36px; }
.footer-logo-text { text-align: left; }
.footer-logo-text .fl1 { display: block; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; color: #e040a0; letter-spacing: 0.07em; text-transform: uppercase; line-height: 1.4; }
.footer-logo-text .fl2 { display: block; font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 800; color: #e040a0; letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.1; }
.footer-logo-text .fl3 { display: block; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; color: #8b5cf6; letter-spacing: 0.09em; text-transform: uppercase; margin-top: 2px; }
.newsletter-text { text-align: left; }
.newsletter-text h3 { font-family: 'Montserrat', sans-serif; font-size: clamp(15px, 1.6vw, 20px); font-weight: 800; color: #ffffff; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 5px; }
.newsletter-text p  { font-family: 'Open Sans', sans-serif; font-size: 13px; color: rgba(255,255,255,0.82); font-weight: 400; }
.newsletter-form { display: flex; align-items: center; background: #ffffff; border-radius: 0; flex-shrink: 0; overflow: hidden; border: none; min-width: 340px; }
.newsletter-input { flex: 1; height: 52px; padding: 0 18px; border: none; font-family: 'Open Sans', sans-serif; font-size: 13.5px; color: #333; background: transparent; outline: none; min-width: 0; }
.newsletter-input::placeholder { color: #999; }
.newsletter-divider { width: 1px; height: 28px; background: #cccccc; flex-shrink: 0; }
.newsletter-btn { height: 52px; padding: 0 22px; background: transparent; color: #1a1a1a; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.18s, color 0.18s; white-space: nowrap; flex-shrink: 0; }
.newsletter-btn:hover { background: #1a3828; color: #fff; }
.footer-mid { background: #3a6048; width: 100%; padding: 32px 60px; border: none; }
.footer-mid-inner { max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-nav-row  { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; }
.footer-nav-link { color: rgba(255,255,255,0.88); text-decoration: none; font-family: 'Open Sans', sans-serif; font-size: 14px; font-weight: 500; padding: 4px 22px; white-space: nowrap; border-right: 1px solid rgba(255,255,255,0.2); background: none; transition: color 0.15s; letter-spacing: 0.01em; }
.footer-nav-link:first-child { padding-left: 0; }
.footer-nav-link:last-child  { border-right: none; }
.footer-nav-link:hover { color: #ffffff; }
.footer-nav-row2  { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; }
.footer-nav-link2 { color: rgba(255,255,255,0.75); text-decoration: none; font-family: 'Open Sans', sans-serif; font-size: 13px; font-weight: 400; padding: 4px 18px; white-space: nowrap; border-right: 1px solid rgba(255,255,255,0.15); background: none; transition: color 0.15s; }
.footer-nav-link2:first-child { padding-left: 0; }
.footer-nav-link2:last-child  { border-right: none; }
.footer-nav-link2:hover { color: #ffffff; }
.footer-bottom { background: #1e3828; width: 100%; padding: 44px 60px 48px; }
.footer-bottom-inner { max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.contact-row  { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0 60px; }
.contact-item { font-family: 'Montserrat', sans-serif; font-size: clamp(13px, 1.4vw, 17px); font-weight: 700; color: #ffffff; white-space: nowrap; }
.email-row    { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px 24px; }
.email-text   { font-family: 'Montserrat', sans-serif; font-size: clamp(12px, 1.2vw, 15px); font-weight: 600; color: #ffffff; white-space: nowrap; }
.email-divider { color: rgba(255,255,255,0.4); font-size: 16px; font-weight: 300; }
.social-row  { display: flex; align-items: center; justify-content: center; gap: 32px; margin-top: 8px; }
.social-item { display: flex; align-items: center; gap: 8px; text-decoration: none; color: rgba(255,255,255,0.88); font-family: 'Open Sans', sans-serif; font-size: 14px; font-weight: 500; transition: color 0.18s, transform 0.18s; }
.social-item:hover { color: #ffffff; transform: translateY(-2px); }
.social-item i { font-size: 22px; transition: color 0.18s; }
.social-item.fb:hover i { color: #1877f2; }
.social-item.tw:hover i { color: #ffffff; }
.social-item.ig:hover i { color: #e1306c; }
.social-item.li:hover i { color: #0a66c2; }
.social-item.yt:hover i { color: #ff0000; }

/* ================================================================
   RESPONSIVE BREAKPOINTS — only navbar + hero + footer rules
   ================================================================ */
@media (max-width: 1200px) { .quick-links-wrap { padding: 0 80px; } .nav-link { font-size: 13px; padding: 0 12px; } }
@media (max-width: 1060px) { .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 24px; } .newsletter-form { grid-column: 1 / -1; } .footer-top { padding: 28px 36px; } .footer-mid { padding: 28px 36px; } .footer-bottom { padding: 36px 36px 40px; } }
@media (max-width: 960px) { .quick-links-wrap { padding: 0 40px; } .nav-link { font-size: 12px; padding: 0 9px; } .ql-label { font-size: 14px; } }
@media (max-width: 768px) { .nav-links { display: none; } .hamburger { display: flex; } .mobile-menu { display: flex; } .nav-container { justify-content: flex-start; padding-left: 20px; } .quick-links-wrap { padding: 0 20px; } .ql-bar { grid-template-columns: repeat(2, 1fr); } .ql-item:nth-child(2) { border-right: none; } .ql-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.15); border-right: 1px solid rgba(255,255,255,0.18); } .ql-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.15); border-right: none; } .logo-row { flex-direction: column; gap: 12px; } .logo-text { text-align: center; } .hero-upper { padding: 36px 16px 24px; } .footer-top { padding: 24px 20px; } .footer-mid { padding: 24px 20px; } .footer-bottom { padding: 32px 20px 36px; } .footer-top-inner { grid-template-columns: 1fr; gap: 20px; } .contact-row { gap: 20px 32px; } .social-row { gap: 20px; flex-wrap: wrap; } .footer-nav-link { font-size: 13px; padding: 6px 14px; } .footer-nav-link2 { font-size: 12px; padding: 6px 12px; } }
@media (max-width: 600px) { .footer-nav-row { gap: 0 4px; } .footer-nav-link { font-size: 12px; padding: 6px 10px; } .footer-nav-row2 { gap: 0; } .footer-nav-link2 { font-size: 11px; padding: 5px 8px; } }
@media (max-width: 500px) { .quick-links-wrap { padding: 0 10px; } .ql-label { font-size: 13px; } .ql-item { gap: 10px; padding: 22px 10px; } .ql-item svg { width: 28px; height: 28px; } .newsletter-form { min-width: 280px; width: 100%; } .contact-row { flex-direction: column; gap: 10px; align-items: center; } .email-row { flex-direction: column; align-items: center; gap: 6px; } .email-divider { display: none; } .social-row { gap: 16px; } .social-item { font-size: 13px; gap: 6px; } .social-item i { font-size: 18px; } }
@media (max-width: 400px) { .hero-heading { font-size: 22px; } .hero-date { font-size: 14px; } .hero-location { font-size: 11px; gap: 5px; } }
@media (max-width: 380px) { .ql-bar { grid-template-columns: 1fr; } .ql-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.15); } .ql-item:last-child { border-bottom: none; } }
@media (max-width: 320px) { .ql-label { display: none; } .ql-item { padding: 18px 12px; } .footer-nav-link { font-size: 11px; padding: 5px 7px; } .footer-nav-link2 { font-size: 10px; padding: 4px 6px; } }