* { box-sizing: border-box; }

body{
  margin:0;
  font-family: Georgia, "Times New Roman", serif;
  background:#F8EDD1;
  color:#222;
}

header{
  background:#E3C39B;
  padding:18px 0;
  text-align:center;
}

nav{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:48px;
  padding-top:10px;
}

nav a{
  text-decoration:none;
  color:#193C19;
  font-weight:700;
  letter-spacing:3px;
  font-size:16px;
}

nav a:hover{
  opacity:0.75;
}

main{
  padding:80px 60px;
}

h1{
  margin:0 0 12px 0;
  font-size:52px;
  line-height:1.1;
}

p{
  margin:0;
  font-size:18px;
}

/* HERO */
.hero{
  padding:70px 60px 20px;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:30px;
  align-items:center;
}

.hero-sub{
  max-width:55ch;
  margin:0 0 14px;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.hero-media img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:12px;
}

/* SECTIONS */
.section{
  padding:40px 60px;
}

.section-title{
  margin:0 0 16px;
  color:#193C19;
  letter-spacing:2px;
  text-align:center;
}

/* LATEST LIST */
.latest-list{
  border-top:1px solid rgba(0,0,0,0.2);
}

.latest-row{
  display:flex;
  justify-content:space-between;
  padding:12px 6px;
  border-bottom:1px solid rgba(0,0,0,0.2);
  text-decoration:none;
  color:#193C19;
}

.latest-row:hover{
  background:rgba(255,255,255,0.3);
}

/* SEASONS GRID */
.seasons-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}

.season-card{
  text-decoration:none;
  color:#193C19;
}

.season-card img{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:12px;
}

.season-card p{
  margin:10px 0 0;
  letter-spacing:2px;
  font-weight:bold;
  text-align:center;
}

/* ABOUT PREVIEW */
.about-preview{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:20px;
  align-items:center;
}

.about-img{
  width:100%;
  border-radius:12px;
}

.about-copy{
  margin:0 0 10px;
}

/* LINKS */
.text-link{
  color:#193C19;
  text-decoration:none;
  font-weight:bold;
}

.text-link:hover{
  text-decoration:underline;
}

/* BUTTONS */
.btn{
  display:inline-block;
  background:#193C19;
  color:white;
  text-decoration:none;
  padding:10px 14px;
  border-radius:10px;
  font-size:14px;
}

.btn-ghost{
  background:transparent;
  color:#193C19;
  border:1px solid #193C19;
}

/* DESTINATIONS PAGE */
.destination-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:40px;
  max-width:1100px;
  margin:50px auto;
  padding:0 20px;
}

.destination-card{
  display:block;
  text-align:center;
  text-decoration:none;
  color:#193C19;
  background:white;
  padding:20px;
  border-radius:12px;
  box-shadow:0 4px 10px rgba(0,0,0,0.08);
  transition:all 0.25s ease;
}

.destination-card img{
  width:100%;
  height:180px;
  object-fit:contain;
  transition:transform 0.3s ease;
}

.destination-card p{
  margin-top:12px;
  font-weight:600;
  letter-spacing:2px;
}

.destination-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

.destination-card:hover img{
  transform:scale(1.05);
}

/* ===== FOOTER ===== */

.site-footer{
  margin-top:70px;
  background:#F8EDD1;
  padding:40px 30px 30px;
}

/* top photo strip */
.footer-strip{
  max-width:1200px;
  margin:0 auto 30px;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:10px;
}

.footer-strip img{
  width:100%;
  height:110px;
  object-fit:cover;
  display:block;
}

/* footer content */
.footer-top{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:40px;
  align-items:start;
}

/* brand */
.footer-brand{
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.footer-logo{
  width:220px;
  display:block;
  margin:0 0 -55px 0;
}

.footer-quote{
  font-size:14px;
  line-height:1.5;
  max-width:260px;
  margin:0 auto;
}

/* link columns */
.footer-links{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.footer-links h3{
  margin:0 0 18px;
  font-size:15px;
  letter-spacing:1px;
  color:#222;
}

.footer-links a{
  text-decoration:none;
  color:#a34be3;
  margin-bottom:8px;
  font-size:15px;
}

.footer-links a:hover{
  opacity:0.7;
}

/* mobile */
@media (max-width:900px){
  .footer-top{
    grid-template-columns:1fr;
    gap:30px;
    text-align:center;
  }

  .footer-strip{
    grid-template-columns:repeat(2,1fr);
  }
}