/* ===================================================
   Chiang Mai Elephant Sanctuary - Homepage Styles
   =================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Rawline:wght@400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --color-primary: #515b20;
  --color-primary-dark: #3a4218;
  --color-accent: #8a9a3a;
  --color-text: #333;
  --color-text-light: #646a64;
  --color-bg: #fff;
  --color-bg-light: #f9f7f2;
  --color-border: #e0e0e0;
  --color-white: #fff;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Rawline', sans-serif;
  --max-width: 1200px;
  --nav-height: 90px;
  --transition: 0.3s ease;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-text);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

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

ul { list-style: none; }

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ===================================================
   HEADER / NAVIGATION
   =================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: var(--color-bg);
  box-shadow: 0 1px 10px rgba(0,0,0,0.08);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 40px;
}

.site-logo img {
  height: 70px;
  width: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-light);
  padding: 4px 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
}

.main-nav a:hover { color: var(--color-primary); }
.main-nav a:hover::after { width: 100%; }

/* Dropdown */
.nav-item { position: relative; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 12px 0;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  transform: translateX(-50%) translateY(-8px);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--color-text);
}

.nav-dropdown a:hover {
  background: var(--color-bg-light);
  color: var(--color-primary);
}

.nav-dropdown a::after { display: none; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 998;
  overflow-y: auto;
  padding: 24px;
}

.mobile-nav.open { display: block; }

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav li a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}

.mobile-nav li a:hover { color: var(--color-primary); }

.mobile-nav .mobile-submenu {
  padding-left: 16px;
}

.mobile-nav .mobile-submenu a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-text-light);
}

/* ===================================================
   HERO SECTION — full-width video background
   =================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
}

/* Video fills the entire hero */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Dark gradient overlay */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.68) 0%,
    rgba(0,0,0,0.38) 55%,
    rgba(0,0,0,0.15) 100%
  );
  z-index: 1;
}

/* REMOVE this old rule — kept here as comment marker */

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 80px) 40px 80px;
  display: flex;
  align-items: center;
}

.hero-content { max-width: 620px; }

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-guide {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-left: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 0 var(--radius) var(--radius) 0;
  max-width: 440px;
}

.hero-guide-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-guide-icon svg { width: 20px; height: 20px; fill: white; }

.hero-guide-text {
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

.hero-guide-text strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 2px;
}

/* .hero-image removed — replaced by full-width video background */

/* ===================================================
   ADVANTAGES SECTION
   =================================================== */
.advantages {
  background: var(--color-bg);
  padding: 80px 0;
}

.advantages-header {
  text-align: center;
  margin-bottom: 60px;
}

.advantages-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}

.advantages-header p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: 1.05rem;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.advantage-card {
  background: var(--color-bg-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid transparent;
}

.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-accent);
}

.advantage-icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-icon svg { width: 22px; height: 22px; fill: white; }

.advantage-card h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-text);
}

/* ===================================================
   PROGRAMS SECTION
   =================================================== */
.programs {
  background: var(--color-bg-light);
  padding: 80px 0;
}

.programs-header {
  text-align: center;
  margin-bottom: 60px;
}

.programs-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.programs-slider {
  position: relative;
  overflow: hidden;
}

.programs-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s ease;
}

.program-card {
  flex: 0 0 calc(33.333% - 20px);
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.program-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.program-card-body {
  padding: 24px;
}

.program-card-number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.program-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 700;
}

.program-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.program-card a.btn-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.program-card a.btn-link:hover { gap: 10px; }
.program-card a.btn-link::after { content: '→'; }

/* Slider controls */
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
  font-size: 1.1rem;
}

.slider-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.slider-dot.active {
  background: var(--color-primary);
  transform: scale(1.3);
}

/* ===================================================
   WHY OBSERVATION SECTION
   =================================================== */
.why-observation {
  background: var(--color-bg);
  padding: 80px 0;
}

.why-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.why-image {
  flex: 0 0 45%;
  position: relative;
}

.why-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-hover);
  object-fit: cover;
  height: 480px;
}

.why-content { flex: 1; }

.why-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 20px;
}

.why-content p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ===================================================
   ELEPHANTS SECTION
   =================================================== */
.our-elephants {
  background: var(--color-bg-light);
  padding: 80px 0;
}

.elephants-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.elephants-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.elephants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.elephant-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.elephant-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.elephant-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.elephant-card-body { padding: 20px; }

.elephant-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(81,91,32,0.1);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.elephant-card h3 {
  font-size: 1.2rem;
  font-family: var(--font-body);
  font-weight: 700;
}

/* ===================================================
   FAQ SECTION
   =================================================== */
.faq {
  background: var(--color-bg);
  padding: 80px 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question:hover { color: var(--color-primary); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-primary);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
  padding-bottom: 20px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ===================================================
   CONTACT / BOOKING SECTION
   =================================================== */
.contact-section {
  background: var(--color-primary);
  padding: 80px 0;
  color: var(--color-white);
}

.contact-inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.contact-content { flex: 1; }

.contact-content .section-tag { color: rgba(255,255,255,0.7); }

.contact-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--color-white);
  margin-bottom: 16px;
}

.contact-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-form-wrap { flex: 0 0 480px; }

.contact-form {
  background: var(--color-white);
  border-radius: 12px;
  padding: 36px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  transition: border-color var(--transition);
  background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit { width: 100%; padding: 14px; font-size: 1rem; }

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: #1e2310;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 32px;
  overflow: hidden;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

/* Prevent long email addresses from overflowing their column */
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  word-break: break-word;
  overflow-wrap: anywhere;
}

.footer-brand img {
  height: 64px;       /* proportionally larger to match new logo's wider aspect */
  width: auto;
  margin-bottom: 16px;
  /* filter removed — new logo is colour on white; invert would make it unreadable.
     Use a white background pill behind the logo instead. */
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
  padding: 6px 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a:hover { color: var(--color-white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ===================================================
   BOOK NOW MODAL
   =================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  padding: 20px;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--color-white);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 560px;
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg-light);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.modal-close:hover { background: var(--color-border); }

.modal h2 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.modal p.modal-sub {
  color: var(--color-text-light);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

/* ===================================================
   VIDEO HERO (homepage)
   =================================================== */
.hero--video {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  background: #111;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.35) 60%,
    rgba(0,0,0,0.15) 100%
  );
  z-index: 1;
}

.hero--video .hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width, 1200px);
  margin: 0 auto;
  padding: calc(var(--nav-height, 90px) + 60px) 24px 80px;
  display: flex;
  align-items: center;
}

.hero--video .hero-content { max-width: 600px; }
.hero--video .hero-eyebrow { color: rgba(255,255,255,0.8); }
.hero--video .hero-title { color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,0.4); }
.hero--video .hero-subtitle { color: rgba(255,255,255,0.88); }

.hero--video .hero-guide {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

.hero--video .hero-guide strong,
.hero--video .hero-guide-text { color: #fff; }
.hero--video .hero-guide-icon svg { fill: #fff; }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .program-card { flex: 0 0 calc(50% - 14px); }
  .contact-inner { flex-direction: column; gap: 40px; }
  .contact-form-wrap { flex: none; width: 100%; }
  .why-inner { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }

  .main-nav, .header-actions .btn { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    padding: calc(var(--nav-height) + 40px) 20px 60px;
  }

  .hero--video { min-height: 100svh; }
  .hero--video .hero-inner {
    padding: calc(var(--nav-height) + 40px) 20px 60px;
  }
  .hero--video .hero-content { max-width: 100%; }

  .hero-content { max-width: 100%; }

  .why-inner { flex-direction: column; }
  .why-image { flex: none; width: 100%; }
  .why-image img { height: 300px; }

  .elephants-grid { grid-template-columns: 1fr 1fr; }
  .elephants-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  .program-card { flex: 0 0 100%; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .advantages-grid { grid-template-columns: 1fr 1fr; }
  .elephants-grid { grid-template-columns: 1fr; }
}