@import url('https://fonts.googleapis.com/css2?family=Madimi+One&family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --pink: #ffb7c2; 
  --dark-pink: #ff82a6;
  --brown: #5B3E2E;
  --cream: #fff6ef;
  --mint: #cefff7;
  --text: #3d2b22;
  --white: #ffffff;
  --shadow: 0 10px 25px rgba(91, 62, 46, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== Footer ===== */
html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Open Sans", sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

main {
  flex: 1;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding: 30px 20px;
}

/* ===== NAVBAR ===== */
header {
  background: repeating-linear-gradient(
    45deg,
    var(--pink),
    var(--pink) 15px,
    var(--white) 12px,
    var(--white) 20px
  );
  padding: 10px 0;
}

nav {
  background: white;
  max-width: 1100px;
  margin: auto;
  padding: 15px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav a {
  color: var(--brown);
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  transition: 0.2s;
}

nav a,
footer a,
main a {
  text-decoration: none;
}

nav a:hover {
  background: var(--dark-pink);
  color: white;
}

/* ===== Sections ===== */
section {
  width: 100%;
  background: white;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
}

/* ===== Hero ===== */
main section:first-child {
  text-align: center;
  background: linear-gradient(135deg, var(--pink), var(--mint));
  color: var(--brown);
}

/* ===== Headings ===== */
h1, h2, h3 {
  font-family: "Madimi One", cursive;
  color: var(--brown);
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; }

/* ===== Buttons ===== */
main section:first-child a {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 18px;
  border-radius: 25px;
  font-weight: 600;
  background: var(--dark-pink);
  color: white;
  transition: 0.2s;
}

main section:first-child a:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ===== Feature cards ===== */
section:nth-of-type(2) article,
section:nth-of-type(4) article {
  background: white;
  border-radius: 18px;
  padding: 18px;
  margin-top: 16px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* ===== image gradient frame + fixed img size ===== */
article img {
  width: 100%;
  height: 220px;
  object-fit: cover;          /* crop fix */
  padding: 8px;
  background: linear-gradient(135deg, var(--pink), var(--mint));
  border-radius: 18px;
}

/* ===== Route list ===== */
ul {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

li {
  background: var(--cream);
  padding: 14px;
  border-radius: 14px;
  border-left: 5px solid var(--pink);
}

/* ===== Map ===== */
iframe {
  width: 100%;
  border-radius: 15px;
  margin-top: 15px;
}

/* ===== Images ===== */
img {
  width: 100%;
  border-radius: 15px;
  margin-top: 15px;
}

/* ===== Footer ===== */
footer {
  margin-top: auto;
  padding: 30px;
  text-align: center;
  background: var(--pink);
  color: var(--brown); 
  font-weight: 600;
}

footer p {
  font-size: 1rem;
}

/* Social links */
footer a {
  color: var(--white);
  font-weight: 700;
  margin: 0 8px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* Hover effect */
footer a:hover {
  color: var(--dark-pink);
}

nav a:focus,
main a:focus,
footer a:focus,
button:focus {
  outline: 2px solid var(--dark-pink);
  outline-offset: 2px;
  box-shadow: none;
}

nav a,
main a,
footer a,
button {
  -webkit-tap-highlight-color: transparent;
}

/* ===== Hamburger menu ===== */
.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
  }

  .hamburger {
    display: block;
    margin-bottom: 10px;
    color: var(--brown);
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
  }

  .nav-links.active {
    display: flex;
  }
}

/* ===== Tablet ===== */
@media (min-width: 768px) {
  section:nth-of-type(2),
  section:nth-of-type(4) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  section:nth-of-type(2) h2,
  section:nth-of-type(2) p,
  section:nth-of-type(4) h2 {
    grid-column: 1 / -1;
  }
}

/* ===== Desktop ===== */
@media (min-width: 1024px) {
  section:nth-of-type(2),
  section:nth-of-type(4) {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== NAV Animation ===== */
.nav-links {
  transition: all 0.3s ease;
}