/* ============================================================
   ATLANTIC SAIL — GLOBAL STYLES v1.1 (Light Blue)
============================================================ */
:root {
  --navy:   #1a3a5c;
  --deep:   #e8f4fd;
  --ocean:  #d0e8f7;
  --salt:   #1a2f45;
  --white:  #ffffff;
  --gold:   #c9a84c;
  --gold-lt:#e8d5a0;
  --gray:   rgba(26,47,69,0.7);
  --fd: 'Cormorant Garamond', Georgia, serif;
  --fb: 'Jost', sans-serif;
  --tr: 0.3s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--fb); background: #f0f8ff; color: var(--salt); overflow-x: hidden; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin-bottom: 1rem; }
h1,h2,h3,h4 { font-family: var(--fd); font-weight: 300; line-height: 1.2; }

/* ── HEADER ── */
.as-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
  box-shadow: 0 2px 12px rgba(26,58,92,0.08);
}
.as-logo {
  font-family: var(--fd); font-size: 1.2rem; font-weight: 600;
  letter-spacing: 0.08em; color: var(--navy); display: flex; align-items: center; gap: 0.5rem;
}
.as-logo span { color: var(--gold); }
.as-logo-icon { font-size: 1.3rem; }

/* ── NAV ── */
.as-nav { display: flex; align-items: center; gap: 0.2rem; }
.as-nav > li { list-style: none; position: relative; }
.as-nav > li > a, .as-nav > li > span {
  display: block; padding: 0.5rem 0.75rem;
  font-size: 0.75rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(26,47,69,0.7); cursor: pointer;
  transition: color var(--tr); white-space: nowrap;
}
.as-nav > li > a:hover, .as-nav > li > span:hover { color: var(--navy); }
.as-nav > li > a.active { color: var(--gold); }

/* dropdown */
.as-dropdown { display: none; position: absolute; top: 100%; left: 0; min-width: 220px; background: #fff; border: 1px solid rgba(201,168,76,0.2); border-top: 2px solid var(--gold); z-index: 100; box-shadow: 0 8px 24px rgba(26,58,92,0.12); }
.as-nav > li:hover .as-dropdown { display: block; }
.as-dropdown a { display: block; padding: 0.6rem 1rem; font-size: 0.78rem; color: rgba(26,47,69,0.7); border-bottom: 1px solid rgba(26,58,92,0.06); transition: all var(--tr); }
.as-dropdown a:hover { color: var(--navy); background: rgba(26,58,92,0.04); padding-left: 1.3rem; }
.as-caret { font-size: 0.6rem; margin-left: 3px; opacity: 0.6; }

/* header right */
.as-header-right { display: flex; align-items: center; gap: 0.8rem; }
.as-btn-tg {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--gold); color: #fff;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.4rem 0.9rem; border-radius: 2px; transition: all var(--tr); white-space: nowrap;
}
.as-btn-tg:hover { background: #b8942e; }
.as-btn-tg svg { width: 13px; height: 13px; }
.as-btn-translate {
  background: none; border: 1px solid rgba(201,168,76,0.35); color: var(--gold);
  font-size: 0.7rem; letter-spacing: 0.1em; padding: 0.35rem 0.65rem;
  border-radius: 2px; cursor: pointer; font-family: var(--fb);
  transition: all var(--tr); white-space: nowrap;
}
.as-btn-translate:hover { background: rgba(201,168,76,0.08); }

/* hamburger */
.as-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.as-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: all var(--tr); }
.as-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.as-hamburger.open span:nth-child(2) { opacity: 0; }
.as-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile menu */
.as-mobile-menu {
  display: none; position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98); z-index: 999;
  overflow-y: auto; padding: 1.5rem;
}
.as-mobile-menu.open { display: block; }
.as-mob-item { border-bottom: 1px solid rgba(26,58,92,0.08); }
.as-mob-item > a, .as-mob-item > span {
  display: block; padding: 0.9rem 0;
  font-size: 1rem; color: var(--salt); cursor: pointer;
}
.as-mob-sub { display: none; padding-left: 1rem; }
.as-mob-sub.open { display: block; }
.as-mob-sub a { display: block; padding: 0.5rem 0; font-size: 0.85rem; color: rgba(26,47,69,0.6); border-bottom: 1px solid rgba(26,58,92,0.05); }
.as-mob-sub a:hover { color: var(--gold); }
.as-mob-actions { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.8rem; }

/* ── PAGE HERO ── */
.as-page-hero {
  background: linear-gradient(135deg, #d0e8f7 0%, #b8d9f0 100%);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.as-page-hero h1 { font-size: clamp(2rem,5vw,3.5rem); color: var(--navy); margin-bottom: 0.5rem; }
.as-page-hero p { color: rgba(26,47,69,0.65); font-size: 1rem; }

/* ── MAIN HERO ── */
.as-hero {
  position: relative; min-height: 92vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.as-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: heroZoom 12s ease-out forwards;
}
.as-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(26,58,92,0.05) 50%, rgba(26,58,92,0.75) 100%);
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1); } }
.as-hero-content { position: relative; z-index: 2; padding: 0 1.5rem 5rem; max-width: 860px; }
.as-hero-label { font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 1rem; }
.as-hero-title { font-family: var(--fd); font-size: clamp(2.5rem,7vw,5rem); font-weight: 300; color: #fff; line-height: 1.05; margin-bottom: 1rem; }
.as-hero-title em { font-style: italic; color: var(--gold-lt); }
.as-hero-sub { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.9); max-width: 520px; margin-bottom: 2rem; line-height: 1.7; }
.as-hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  display: flex; background: rgba(255,255,255,0.92); backdrop-filter: blur(10px);
  border-top: 2px solid var(--gold);
}
.as-stat { flex: 1; padding: 0.9rem 0.5rem; text-align: center; border-right: 1px solid rgba(26,58,92,0.1); }
.as-stat:last-child { border-right: none; }
.as-stat-num { font-family: var(--fd); font-size: 1.5rem; color: var(--navy); line-height: 1; }
.as-stat-lbl { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(26,47,69,0.5); margin-top: 0.2rem; }

/* ── CONTENT SECTIONS ── */
.as-section { padding: 4rem 1.5rem; }
.as-section-alt { background: var(--ocean); }
.as-container { max-width: 1100px; margin: 0 auto; }
.as-section-label { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.as-section-title { font-size: clamp(1.8rem,4vw,2.8rem); color: var(--navy); margin-bottom: 1rem; }
.as-section-title em { font-style: italic; color: #2980b9; }
.as-divider { width: 36px; height: 2px; background: var(--gold); margin: 1rem 0 1.5rem; }
.as-text { font-size: 0.95rem; line-height: 1.85; color: var(--gray); }

/* ── CARDS ── */
.as-grid { display: grid; gap: 1.5rem; }
.as-grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.as-grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.as-grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.as-card { background: #fff; border: 1px solid rgba(26,58,92,0.1); overflow: hidden; transition: all var(--tr); border-radius: 2px; }
.as-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(26,58,92,0.12); }
.as-card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: filter var(--tr); }
.as-card:hover .as-card-img { filter: brightness(1.05); }
.as-card-body { padding: 1.2rem; }
.as-card-title { font-family: var(--fd); font-size: 1.2rem; color: var(--navy); margin-bottom: 0.4rem; }
.as-card-sub { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.as-card-text { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ── SCHEDULE ── */
.as-schedule { display: flex; flex-direction: column; gap: 1px; background: rgba(26,58,92,0.08); margin-top: 2rem; }
.as-schedule-item {
  background: #fff; padding: 1rem 1.5rem;
  display: grid; grid-template-columns: 140px 1fr auto;
  align-items: center; gap: 1rem; transition: background var(--tr);
}
.as-schedule-item:hover { background: var(--ocean); }
.as-schedule-date { font-family: var(--fd); color: var(--navy); font-size: 0.9rem; }
.as-schedule-route { font-size: 0.9rem; color: var(--salt); }
.as-schedule-info { font-size: 0.75rem; color: var(--gray); margin-top: 0.2rem; }
.as-badge { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 2px; white-space: nowrap; }
.as-badge-green { background: rgba(39,174,96,0.1); color: #27ae60; border: 1px solid rgba(39,174,96,0.3); }
.as-badge-gold { background: rgba(201,168,76,0.1); color: #b8942e; border: 1px solid rgba(201,168,76,0.3); }

/* ── BUTTONS ── */
.as-btn { display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--fb); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.8rem 1.8rem; border-radius: 2px; border: none; cursor: pointer; transition: all var(--tr); }
.as-btn-primary { background: var(--gold); color: #fff; }
.as-btn-primary:hover { background: #b8942e; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.35); }
.as-btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.as-btn-outline:hover { background: var(--navy); color: #fff; }
.as-btn-telegram { background: #2AABEE; color: #fff; }
.as-btn-telegram:hover { background: #1a96d4; transform: translateY(-2px); }
.as-btn-telegram svg { width: 16px; height: 16px; }

/* ── BOT BAR ── */
.as-bot-bar {
  background: linear-gradient(135deg, #1a3a5c 0%, #2980b9 100%);
  padding: 2rem 1.5rem;
  text-align: center;
}
.as-bot-bar p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 1rem; }

/* ── CONTACT ── */
.as-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.as-contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; }
.as-contact-icon { width: 38px; height: 38px; border: 1px solid rgba(201,168,76,0.3); background: rgba(201,168,76,0.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); border-radius: 2px; }
.as-contact-lbl { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(26,47,69,0.45); margin-bottom: 0.2rem; }
.as-contact-val { font-size: 0.9rem; color: var(--salt); }
.as-contact-val a { color: #2980b9; }
.as-contact-val a:hover { text-decoration: underline; }

/* ── PRICE ── */
.as-price-block { background: #fff; border: 1px solid rgba(26,58,92,0.1); padding: 1.5rem; margin-bottom: 1rem; border-radius: 2px; }
.as-price-block h3 { font-family: var(--fd); font-size: 1.3rem; color: var(--navy); margin-bottom: 0.8rem; padding-bottom: 0.8rem; border-bottom: 1px solid rgba(201,168,76,0.2); }
.as-price-block ul { list-style: none; }
.as-price-block ul li { padding: 0.4rem 0; font-size: 0.88rem; color: var(--gray); border-bottom: 1px solid rgba(26,58,92,0.06); display: flex; justify-content: space-between; }
.as-price-block ul li:last-child { border-bottom: none; }
.as-price-val { color: var(--gold); font-weight: 500; white-space: nowrap; margin-left: 1rem; }

/* ── YOUTUBE ── */
.as-yt-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 4px; box-shadow: 0 4px 20px rgba(26,58,92,0.15); }
.as-yt-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.as-social-links { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.5rem; }
.as-social-link { display: flex; align-items: center; gap: 0.8rem; padding: 0.9rem 1rem; background: #fff; border: 1px solid rgba(26,58,92,0.1); border-radius: 2px; transition: all var(--tr); }
.as-social-link:hover { background: var(--ocean); border-color: var(--gold); transform: translateX(4px); }
.as-social-icon { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.as-social-icon.yt { background: #ff0000; }
.as-social-icon.ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.as-social-icon svg { width: 16px; height: 16px; fill: #fff; }
.as-social-text { font-size: 0.85rem; color: var(--salt); }
.as-social-sub { font-size: 0.72rem; color: var(--gray); }

/* ── FOOTER ── */
.as-footer {
  background: var(--navy);
  border-top: 2px solid var(--gold);
  padding: 2rem 1.5rem;
}
.as-footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.as-footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.as-footer-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.as-footer-links a { font-size: 0.75rem; color: rgba(255,255,255,0.5); transition: color var(--tr); }
.as-footer-links a:hover { color: var(--gold); }

/* ── CONTENT TEXT ── */
.as-content { max-width: 860px; margin: 0 auto; }
.as-content h2 { font-family: var(--fd); font-size: 1.8rem; color: var(--navy); margin: 2rem 0 0.8rem; }
.as-content h3 { font-family: var(--fd); font-size: 1.3rem; color: #2980b9; margin: 1.5rem 0 0.6rem; }
.as-content p { color: var(--gray); font-size: 0.92rem; line-height: 1.85; margin-bottom: 0.9rem; }
.as-content ul { padding-left: 1.2rem; margin-bottom: 1rem; }
.as-content ul li { color: var(--gray); font-size: 0.9rem; line-height: 1.8; margin-bottom: 0.3rem; }
.as-content a { color: #2980b9; }
.as-content a:hover { text-decoration: underline; }
.as-content strong { color: var(--navy); font-weight: 500; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.vis { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .as-nav { display: none; }
  .as-hamburger { display: flex; }
  .as-contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .as-section { padding: 2.5rem 1rem; }
  .as-schedule-item { grid-template-columns: 1fr; gap: 0.4rem; }
  .as-footer-inner { flex-direction: column; align-items: flex-start; }
  .as-hero-stats { flex-wrap: wrap; }
  .as-stat { min-width: 50%; }
}

/* Google Translate */
#google_translate_element { display: none; }
.as-translate-wrap .goog-te-gadget { font-size: 0; }
.as-translate-wrap .goog-te-gadget select { background: #fff; color: var(--salt); border: 1px solid rgba(201,168,76,0.3); border-radius: 2px; font-size: 0.75rem; padding: 0.3rem; }
