/* AnkTravels Theme - Main Stylesheet */
/* Editeaza culorile, fonturile si layoutul aici */


  :root {
    --ocean: #0077B6;
    --sky: #90E0EF;
    --sand: #FFDDD2;
    --coral: #E07A5F;
    --deep: #03045E;
    --white: #FFFFFF;
    --offwhite: #F8FAFC;
    --text: #1a1a2e;
    --muted: #64748b;
    --border: rgba(0,119,182,0.15);
    --radius: 14px;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); }

  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(3,4,94,0.96);
    backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2rem; height: 64px;
  }
  .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .logo-icon {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--coral); display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700; color: #fff; font-family: 'Playfair Display', serif;
  }
  .logo-text { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--white); letter-spacing: 0.5px; }
  .logo-text span { color: var(--sky); }
  .nav-links { display: flex; align-items: center; gap: 1.5rem; }
  .nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
  .nav-links a:hover { color: var(--sky); }
  .lang-toggle {
    background: var(--coral); color: #fff; border: none; border-radius: 20px;
    padding: 6px 16px; font-size: 0.85rem; font-weight: 600; cursor: pointer;
    font-family: 'Inter', sans-serif; transition: opacity 0.2s;
  }
  .lang-toggle:hover { opacity: 0.85; }

  /* ── HERO ── */
  .hero {
    position: relative; min-height: 88vh;
    background: linear-gradient(135deg, #03045E 0%, #0077B6 50%, #00B4D8 100%);
    display: flex; align-items: center; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1600&q=80') center/cover;
    opacity: 0.25;
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 4rem 2rem;
  }
  .hero-badge {
    display: inline-block; background: var(--coral); color: #fff;
    border-radius: 30px; padding: 6px 18px; font-size: 0.8rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.5rem;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem); color: #fff;
    line-height: 1.15; margin-bottom: 1.2rem; max-width: 700px;
  }
  .hero h1 span { color: var(--sky); }
  .hero p { color: rgba(255,255,255,0.88); font-size: 1.15rem; max-width: 560px; line-height: 1.7; margin-bottom: 2.5rem; }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--coral); color: #fff; text-decoration: none;
    padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 1rem;
    transition: transform 0.2s, opacity 0.2s; display: inline-block;
  }
  .btn-primary:hover { transform: translateY(-2px); opacity: 0.9; }
  .btn-outline {
    background: transparent; color: #fff; text-decoration: none;
    padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.5); transition: border-color 0.2s, background 0.2s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

  /* ── SEARCH BAR ── */
  .search-section {
    background: var(--white); padding: 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  }
  .search-bar {
    max-width: 900px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr 1fr auto;
    gap: 12px; align-items: end;
  }
  .search-field { display: flex; flex-direction: column; gap: 6px; }
  .search-field label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; color: var(--muted); letter-spacing: 0.5px; }
  .search-field select, .search-field input {
    padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 10px;
    font-size: 0.95rem; font-family: 'Inter', sans-serif; color: var(--text);
    background: var(--offwhite); transition: border-color 0.2s;
  }
  .search-field select:focus, .search-field input:focus { outline: none; border-color: var(--ocean); }
  .btn-search {
    background: var(--ocean); color: #fff; border: none; border-radius: 10px;
    padding: 14px 28px; font-size: 1rem; font-weight: 600; cursor: pointer;
    font-family: 'Inter', sans-serif; transition: background 0.2s; white-space: nowrap;
  }
  .btn-search:hover { background: var(--deep); }

  /* ── SECTION ── */
  section { padding: 5rem 2rem; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-header { text-align: center; margin-bottom: 3rem; }
  .section-eyebrow { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--coral); margin-bottom: 0.6rem; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--deep); margin-bottom: 0.8rem; }
  .section-sub { color: var(--muted); font-size: 1rem; max-width: 540px; margin: 0 auto; line-height: 1.7; }

  /* ── DEALS GRID ── */
  .deals-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
  .deal-card {
    background: var(--white); border-radius: var(--radius);
    border: 1px solid var(--border); overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s; position: relative;
  }
  .deal-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,119,182,0.12); }
  .deal-img { width: 100%; height: 200px; object-fit: cover; display: block; }
  .deal-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--coral); color: #fff; font-size: 0.72rem; font-weight: 700;
    padding: 4px 12px; border-radius: 20px; letter-spacing: 0.5px;
  }
  .deal-body { padding: 1.25rem; }
  .deal-dest { font-weight: 600; font-size: 1rem; color: var(--deep); margin-bottom: 4px; }
  .deal-meta { font-size: 0.82rem; color: var(--muted); margin-bottom: 1rem; }
  .deal-footer { display: flex; align-items: center; justify-content: space-between; }
  .deal-price { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--ocean); }
  .deal-price small { font-family: 'Inter', sans-serif; font-size: 0.75rem; color: var(--muted); display: block; }
  .deal-btn {
    background: var(--ocean); color: #fff; text-decoration: none;
    padding: 8px 18px; border-radius: 8px; font-size: 0.85rem; font-weight: 600;
    transition: background 0.2s;
  }
  .deal-btn:hover { background: var(--deep); }

  /* ── CATEGORY TILES ── */
  .cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
  .cat-tile {
    position: relative; border-radius: var(--radius); overflow: hidden;
    height: 140px; text-decoration: none; display: block;
  }
  .cat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
  .cat-tile:hover img { transform: scale(1.05); }
  .cat-tile-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(3,4,94,0.75), rgba(3,4,94,0.1));
    display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem;
  }
  .cat-tile-icon { font-size: 1.5rem; margin-bottom: 4px; }
  .cat-tile-name { font-weight: 700; color: #fff; font-size: 1rem; }
  .cat-tile-count { font-size: 0.75rem; color: rgba(255,255,255,0.75); }

  /* ── PARTNERS ── */
  .partners-section { background: var(--offwhite); }
  .partners-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
  .partner-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.5rem 1rem; text-align: center; text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s; display: flex; flex-direction: column;
    align-items: center; gap: 8px;
  }
  .partner-card:hover { box-shadow: 0 6px 20px rgba(0,119,182,0.1); transform: translateY(-2px); }
  .partner-logo { font-size: 2rem; margin-bottom: 4px; }
  .partner-name { font-weight: 700; font-size: 0.95rem; color: var(--deep); }
  .partner-type { font-size: 0.75rem; color: var(--muted); }
  .partner-badge {
    background: #e8f4fd; color: var(--ocean); font-size: 0.7rem;
    padding: 3px 10px; border-radius: 20px; font-weight: 600;
  }

  /* ── DESTINATIONS GALLERY ── */
  .gallery-section { background: var(--deep); }
  .gallery-section .section-title { color: #fff; }
  .gallery-section .section-sub { color: rgba(255,255,255,0.65); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 12px;
  }
  .gallery-item { border-radius: 12px; overflow: hidden; position: relative; }
  .gallery-item.tall { grid-row: span 2; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 180px; }
  .gallery-item .gallery-label {
    position: absolute; bottom: 12px; left: 12px;
    color: #fff; font-weight: 600; font-size: 0.9rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  }

  /* ── NEWSLETTER ── */
  .newsletter-section {
    background: linear-gradient(135deg, var(--ocean), var(--deep));
    text-align: center; color: #fff;
  }
  .newsletter-section .section-title { color: #fff; }
  .newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 2rem auto 0; }
  .newsletter-form input {
    flex: 1; padding: 14px 18px; border-radius: 10px; border: none;
    font-size: 0.95rem; font-family: 'Inter', sans-serif;
  }
  .newsletter-form button {
    background: var(--coral); color: #fff; border: none; border-radius: 10px;
    padding: 14px 24px; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif;
    font-size: 0.95rem; white-space: nowrap; transition: opacity 0.2s;
  }
  .newsletter-form button:hover { opacity: 0.9; }

  /* ── FOOTER ── */
  footer { background: var(--deep); color: rgba(255,255,255,0.7); padding: 3rem 2rem 1.5rem; }
  .footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
  footer h4 { color: #fff; font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; }
  footer a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.85rem; display: block; margin-bottom: 0.5rem; transition: color 0.2s; }
  footer a:hover { color: var(--sky); }
  .footer-desc { font-size: 0.85rem; line-height: 1.7; margin-top: 0.5rem; }
  .footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; font-size: 0.8rem; }
  .footer-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 0.5rem; }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    nav { padding: 0 1rem; }
    .nav-links { display: none; }
    .search-bar { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); }
    .gallery-item.tall { grid-row: span 1; }
    .gallery-item.wide { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }

  /* ── LANG ── */
  .en { display: none !important; }
  .ro { display: revert; }
  span.ro, span.en { display: inline !important; }
  span.en { display: none !important; }
  body.lang-en .ro { display: none !important; }
  body.lang-en .en { display: revert !important; }
  body.lang-en span.ro { display: none !important; }
  body.lang-en span.en { display: inline !important; }
