/*
Theme Name: NEWV Tours and Travels
Theme URI: https://newvtours.com
Author: NEWV Tours and Travels
Description: A professional travel and tours website theme with full demo content, destination showcases, tour packages, testimonials, and booking features.
Version: 1.1.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: newv-tours
Tags: travel, tours, booking, destinations, responsive, full-width-template
*/

/* ── BRAND PALETTE (from logo) ───────────────────────
   Logo Green  : #3DB54A  (the "new" lettering)
   Logo Blue   : #29ABE2  (the top of the V)
   Logo Dark   : #58595B  (the "Tours and Travels" text)
   ─────────────────────────────────────────────────── */
:root {
  --clr-green:        #3DB54A;
  --clr-green-dark:   #2A8F36;
  --clr-green-light:  #66CC74;
  --clr-blue:         #29ABE2;
  --clr-blue-dark:    #1A8BC0;
  --clr-blue-light:   #5EC5EC;
  --clr-dark:         #1C2B1E;
  --clr-charcoal:     #58595B;
  --clr-mid:          #3A4A3C;
  --clr-muted:        #718C74;
  --clr-bg:           #F4FBF5;
  --clr-white:        #FFFFFF;
  --clr-mint:         #EAF7EC;
  --clr-skylight:     #EBF7FD;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', 'Segoe UI', sans-serif;

  --radius:    12px;
  --shadow:    0 4px 24px rgba(61,181,74,0.10);
  --shadow-lg: 0 12px 48px rgba(41,171,226,0.16);
  --transition: 0.3s ease;
}

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-body); color: var(--clr-dark); background: var(--clr-bg); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── LAYOUT ──────────────────────────────────────── */
.container { max-width: 1200px; margin-inline: auto; padding-inline: 24px; }
.section { padding: 90px 0; }
.section--alt { background: var(--clr-mint); }
.section--sky  { background: var(--clr-skylight); }

/* ── TYPOGRAPHY ──────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--clr-green); margin-bottom: 12px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 700;
  color: var(--clr-dark); line-height: 1.2; margin-bottom: 16px;
}
.section-sub { font-size: 1.05rem; color: var(--clr-muted); max-width: 560px; line-height: 1.7; }

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; cursor: pointer; border: none;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--clr-green); color: var(--clr-white);
}
.btn-primary:hover { background: var(--clr-green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(61,181,74,0.35); }

.btn-blue {
  background: var(--clr-blue); color: var(--clr-white);
}
.btn-blue:hover { background: var(--clr-blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(41,171,226,0.35); }

.btn-outline {
  background: transparent; border: 2px solid var(--clr-white); color: var(--clr-white);
}
.btn-outline:hover { background: var(--clr-white); color: var(--clr-green); }

.btn-outline-green {
  background: transparent; border: 2px solid var(--clr-green); color: var(--clr-green);
}
.btn-outline-green:hover { background: var(--clr-green); color: var(--clr-white); }

/* ── HEADER ───────────────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 14px 0;
}
#site-header.scrolled {
  background: var(--clr-white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.09);
  padding: 8px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }

/* Logo */
.site-logo { display: flex; align-items: center; }
.site-logo img {
  height: 52px; width: auto;
  filter: brightness(0) invert(1);   /* white on dark hero */
  transition: filter var(--transition), height var(--transition);
}
#site-header.scrolled .site-logo img {
  filter: none;   /* full colour on white header */
  height: 44px;
}
/* Fallback text logo */
.logo-fallback {
  font-family: var(--ff-display); font-size: 1.3rem; font-weight: 700;
  color: var(--clr-white); line-height: 1.05;
}
.logo-fallback em { font-style: normal; color: var(--clr-green-light); }
.logo-fallback span { display: block; font-size: 0.6rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.8; font-family: var(--ff-body); }
#site-header.scrolled .logo-fallback { color: var(--clr-dark); }
#site-header.scrolled .logo-fallback em { color: var(--clr-green); }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.92); transition: color var(--transition); position: relative; }
.main-nav a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 2px; background: var(--clr-green-light); transform: scaleX(0); transition: transform var(--transition); border-radius: 2px; }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a:hover, .main-nav a.active { color: var(--clr-white); }
#site-header.scrolled .main-nav a { color: var(--clr-charcoal); }
#site-header.scrolled .main-nav a:hover { color: var(--clr-green); }
#site-header.scrolled .main-nav a::after { background: var(--clr-green); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--clr-white); border-radius: 2px; transition: all var(--transition); }
#site-header.scrolled .hamburger span { background: var(--clr-dark); }

/* ── HERO ──────────────────────────────────────────── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(140deg, #1A3D1E 0%, #2A8F36 45%, #1A8BC0 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80');
  background-size: cover; background-position: center; opacity: 0.18;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, rgba(26,61,30,0.75) 0%, rgba(41,171,226,0.35) 100%);
}
/* Dandelion-seed decorative SVG echo in hero */
.hero-deco {
  position: absolute; right: 6%; top: 18%;
  width: 380px; height: 380px; opacity: 0.08;
  background: radial-gradient(circle, var(--clr-white) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }

.hero-content { position: relative; z-index: 2; max-width: 680px; color: var(--clr-white); padding-top: 80px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--clr-green-light); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }

.hero-title { font-family: var(--ff-display); font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 700; line-height: 1.1; margin-bottom: 24px; }
.hero-title em { font-style: normal; color: var(--clr-green-light); }
.hero-title strong { color: var(--clr-blue-light); font-weight: 700; }
.hero-desc { font-size: 1.1rem; opacity: 0.9; margin-bottom: 40px; max-width: 500px; line-height: 1.75; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-stats { display: flex; gap: 44px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.2); }
.hero-stat-num { font-family: var(--ff-display); font-size: 2rem; font-weight: 700; color: var(--clr-green-light); }
.hero-stat-label { font-size: 0.78rem; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.08em; }

/* Search Strip */
.search-strip { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; background: var(--clr-white); box-shadow: 0 -4px 32px rgba(0,0,0,0.1); }
.search-strip-inner { display: flex; align-items: stretch; }
.search-field { flex: 1; padding: 20px 22px; border-right: 1px solid #E0EDE2; }
.search-field label { display: block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--clr-green); margin-bottom: 5px; }
.search-field input, .search-field select { width: 100%; border: none; outline: none; font-family: var(--ff-body); font-size: 0.92rem; font-weight: 500; color: var(--clr-dark); background: transparent; cursor: pointer; }
.search-btn { padding: 20px 36px; background: var(--clr-green); border: none; font-family: var(--ff-body); font-size: 1rem; font-weight: 700; color: var(--clr-white); cursor: pointer; transition: background var(--transition); white-space: nowrap; }
.search-btn:hover { background: var(--clr-green-dark); }

/* ── DESTINATIONS ─────────────────────────────────── */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.dest-card { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; box-shadow: var(--shadow); }
.dest-card:first-child { grid-column: span 2; grid-row: span 2; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; min-height: 240px; }
.dest-card:first-child img { min-height: 480px; }
.dest-card:hover img { transform: scale(1.05); }
.dest-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,61,30,0.88) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; color: var(--clr-white); }
.dest-card:hover .dest-card-overlay { background: linear-gradient(to top, rgba(26,61,30,0.92) 0%, rgba(41,171,226,0.15) 100%); }
.dest-country { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--clr-green-light); margin-bottom: 4px; }
.dest-name { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; }
.dest-card:first-child .dest-name { font-size: 2rem; }
.dest-info { display: flex; align-items: center; gap: 12px; font-size: 0.8rem; opacity: 0.85; }
.dest-tours-badge { background: var(--clr-green); color: var(--clr-white); font-size: 0.68rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; }

/* ── PACKAGES ─────────────────────────────────────── */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; margin-top: 50px; }
.pkg-card { background: var(--clr-white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg-img-wrap { position: relative; overflow: hidden; height: 220px; }
.pkg-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.pkg-card:hover .pkg-img-wrap img { transform: scale(1.05); }
.pkg-badge { position: absolute; top: 16px; left: 16px; background: var(--clr-green); color: var(--clr-white); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 13px; border-radius: 50px; }
.pkg-badge.hot { background: #E05020; }
.pkg-badge.new { background: var(--clr-blue); }
.pkg-badge.romantic { background: #D4307A; }
.pkg-wishlist { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; background: rgba(255,255,255,0.92); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: pointer; transition: all var(--transition); }
.pkg-wishlist:hover { transform: scale(1.12); }
.pkg-body { padding: 22px 24px; }
.pkg-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.pkg-tag { font-size: 0.68rem; font-weight: 600; color: var(--clr-blue-dark); background: rgba(41,171,226,0.1); padding: 3px 10px; border-radius: 50px; }
.pkg-title { font-family: var(--ff-display); font-size: 1.18rem; font-weight: 700; color: var(--clr-dark); margin-bottom: 10px; line-height: 1.3; }
.pkg-meta { display: flex; gap: 16px; font-size: 0.8rem; color: var(--clr-muted); margin-bottom: 16px; flex-wrap: wrap; }
.pkg-meta span { display: flex; align-items: center; gap: 4px; }
.pkg-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid #E8F5EA; }
.pkg-price-from { font-size: 0.68rem; color: var(--clr-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.pkg-price-amt { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 700; color: var(--clr-green-dark); line-height: 1; }
.pkg-price-amt span { font-size: 0.72rem; font-weight: 500; color: var(--clr-muted); font-family: var(--ff-body); }

/* ── WHY US ───────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; margin-top: 50px; }
.why-card { background: var(--clr-white); border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--shadow); text-align: center; transition: transform var(--transition), box-shadow var(--transition); border-bottom: 3px solid transparent; }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-bottom-color: var(--clr-green); }
.why-icon { width: 64px; height: 64px; border-radius: 16px; background: linear-gradient(135deg, var(--clr-green), var(--clr-blue)); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 20px; box-shadow: 0 8px 20px rgba(61,181,74,0.25); }
.why-title { font-family: var(--ff-display); font-size: 1.08rem; font-weight: 700; margin-bottom: 10px; color: var(--clr-dark); }
.why-desc { font-size: 0.88rem; color: var(--clr-muted); line-height: 1.7; }

/* ── TESTIMONIALS ─────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 22px; margin-top: 50px; }
.testi-card { background: var(--clr-white); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); position: relative; }
.testi-card::before { content: '"'; font-family: var(--ff-display); font-size: 5rem; color: var(--clr-green); opacity: 0.1; position: absolute; top: 10px; left: 22px; line-height: 1; }
.testi-stars { color: #F5A623; font-size: 0.88rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 0.93rem; color: var(--clr-mid); line-height: 1.75; margin-bottom: 22px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 3px solid var(--clr-green-light); }
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--clr-dark); }
.testi-location { font-size: 0.76rem; color: var(--clr-muted); }

/* ── CTA STRIP ────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--clr-green-dark) 0%, #1A3D1E 50%, var(--clr-blue-dark) 100%);
  padding: 80px 0; text-align: center; color: var(--clr-white); position: relative; overflow: hidden;
}
.cta-strip::before { content: ''; position: absolute; top: -40%; right: -8%; width: 480px; height: 480px; border-radius: 50%; border: 80px solid rgba(255,255,255,0.04); }
.cta-strip::after  { content: ''; position: absolute; bottom:-30%; left:-5%; width: 360px; height: 360px; border-radius: 50%; border: 60px solid rgba(61,181,74,0.08); }
.cta-strip .section-label { color: var(--clr-green-light); }
.cta-strip .section-title { color: var(--clr-white); margin-bottom: 12px; }
.cta-strip p { opacity: 0.82; font-size: 1.05rem; margin-bottom: 36px; }
.cta-strip .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── GALLERY ──────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 220px); gap: 12px; margin-top: 50px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after { content: '🔍'; position: absolute; inset: 0; background: rgba(26,61,30,0.45); display: flex; align-items: center; justify-content: center; font-size: 2rem; opacity: 0; transition: opacity var(--transition); }
.gallery-item:hover::after { opacity: 1; }

/* ── NEWSLETTER ───────────────────────────────────── */
.newsletter-wrap {
  background: linear-gradient(135deg, var(--clr-green) 0%, var(--clr-blue) 100%);
  border-radius: 20px; padding: 52px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  margin: 90px 0;
  box-shadow: 0 20px 60px rgba(61,181,74,0.28);
}
.newsletter-text .section-title { color: var(--clr-white); margin-bottom: 8px; }
.newsletter-text p { color: rgba(255,255,255,0.85); font-size: 1rem; }
.newsletter-form { display: flex; flex-shrink: 0; min-width: 400px; }
.newsletter-input { flex: 1; padding: 15px 20px; border: none; border-radius: 50px 0 0 50px; font-family: var(--ff-body); font-size: 0.93rem; outline: none; }
.newsletter-submit { padding: 15px 28px; background: var(--clr-dark); color: var(--clr-white); border: none; border-radius: 0 50px 50px 0; font-family: var(--ff-body); font-weight: 700; cursor: pointer; transition: background var(--transition); white-space: nowrap; }
.newsletter-submit:hover { background: var(--clr-green-dark); }

/* ── FOOTER ───────────────────────────────────────── */
#site-footer { background: var(--clr-dark); color: rgba(255,255,255,0.72); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo-img { height: 54px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; max-width: 280px; opacity: 0.62; }
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.social-btn { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: background var(--transition); }
.social-btn:hover { background: var(--clr-green); }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--clr-white); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.86rem; opacity: 0.62; transition: all var(--transition); }
.footer-links a:hover { opacity: 1; color: var(--clr-green-light); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 11px; font-size: 0.86rem; opacity: 0.62; margin-bottom: 14px; line-height: 1.5; }
.contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; font-size: 0.8rem; opacity: 0.45; }

/* ── BACK TO TOP ──────────────────────────────────── */
#back-top { position: fixed; bottom: 30px; right: 30px; width: 46px; height: 46px; background: var(--clr-green); color: var(--clr-white); border: none; border-radius: 50%; font-size: 1.1rem; cursor: pointer; box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(16px); transition: all var(--transition); z-index: 900; }
#back-top.visible { opacity: 1; transform: translateY(0); }
#back-top:hover { background: var(--clr-blue); }

/* ── MOBILE MENU ──────────────────────────────────── */
.mobile-menu { display: none; position: fixed; inset: 0; background: linear-gradient(160deg, #1A3D1E 0%, #1A3D1E 60%, #0E2A44 100%); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 28px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.5rem; font-weight: 700; color: var(--clr-white); font-family: var(--ff-display); transition: color var(--transition); }
.mobile-menu a:hover { color: var(--clr-green-light); }
.mobile-close { position: absolute; top: 24px; right: 24px; font-size: 1.6rem; color: var(--clr-white); cursor: pointer; background: none; border: none; opacity: 0.7; }
.mobile-close:hover { opacity: 1; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-wrap { flex-direction: column; text-align: center; padding: 40px 32px; }
  .newsletter-form { min-width: unset; width: 100%; max-width: 480px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(3,200px); }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
}
@media (max-width: 768px) {
  .main-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card:first-child { grid-column: span 1; grid-row: span 1; }
  .packages-grid { grid-template-columns: 1fr; }
  .search-strip-inner { flex-direction: column; }
  .search-field { border-right: none; border-bottom: 1px solid #D8EDD9; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 64px 0; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-radius: 50px; margin-bottom: 10px; }
  .newsletter-submit { border-radius: 50px; }
}
