* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  background-color: #FAF4EB;
  color: #3E2723;
}
.font-hand {
  font-family: "Nanum Pen Script", cursive;
  font-size: 1.8rem;
}
.groovy-header {
  background: linear-gradient(180deg, #F4A261, #FAF4EB);
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}
.sun-glow {
  width: 150px;
  height: 150px;
  background-color: #E76F51;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
  filter: blur(20px);
}
.logo-vintage {
  font-family: "Shrikhand", cursive;
  font-size: 3.5rem;
  color: #E76F51;
  margin: 0;
  text-shadow: 2px 2px 0px #E9C46A;
}
.tagline {
  font-family: "Nanum Pen Script", cursive;
  font-size: 2rem;
  margin: 5px 0 0;
  color: #2A9D8F;
}
.groovy-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
.polaroid-gallery {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.polaroid {
  background-color: #ffffff;
  padding: 16px 16px 36px 16px;
  box-shadow: 0 10px 30px -10px rgba(120, 80, 40, 0.2);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 2px;
  transition: transform 0.3s;
  max-width: 280px;
}
.polaroid img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(0,0,0,0.05);
}
.polaroid:hover {
  transform: translateY(-8px) rotate(0deg) !important;
}
.caption {
  text-align: center;
  margin-top: 16px;
}
.boardroom-mission {
  border-top: 2px solid #E76F51;
  padding: 50px 0;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.boardroom-mission h2 {
  font-family: "Shrikhand", cursive;
  color: #2A9D8F;
  font-size: 2rem;
}
.board-order-sheet {
  border-top: 2px solid #E76F51;
  padding: 50px 0;
}
.board-order-sheet h2 {
  font-family: "Shrikhand", cursive;
  text-align: center;
  color: #E76F51;
  font-size: 2.2rem;
  margin-bottom: 8px;
}
.sub {
  text-align: center;
  font-weight: 600;
  margin-bottom: 40px;
}
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.board-selector {
  border: 3px solid #3E2723;
  border-radius: 12px;
  padding: 24px;
  background-color: #ffffff;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 4px 4px 0px 0px #3E2723;
}
.board-selector:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0px 0px #3E2723;
}
.board-selector.active {
  background-color: #FAF4EB;
  border-color: #E76F51;
  box-shadow: 4px 4px 0px 0px #E76F51;
}
.board-svg-box {
  height: 180px;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.surf-svg {
  height: 100%;
}
.board-selector h3 {
  font-family: "Shrikhand", cursive;
  font-size: 1.1rem;
  margin: 12px 0 6px;
}
.cost-tag {
  font-weight: bold;
  color: #E76F51;
}
.order-details-box {
  margin-top: 40px;
  background-color: #ffffff;
  border: 3px solid #3E2723;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 5px 5px 0px 0px #3E2723;
  text-align: center;
}
.order-details-box h3 {
  font-family: "Shrikhand", cursive;
  font-size: 1.8rem;
  color: #2A9D8F;
  margin-top: 0;
}
.order-price {
  font-family: "Shrikhand", cursive;
  font-size: 2.2rem;
  color: #E76F51;
  display: block;
  margin: 10px 0;
}
.order-btn {
  background-color: #E76F51;
  color: #FAF4EB;
  padding: 12px 30px;
  border-radius: 30px;
  font-family: "Shrikhand", cursive;
  text-decoration: none;
  display: inline-block;
  margin-top: 16px;
  border: 3px solid #3E2723;
  box-shadow: 3px 3px 0px 0px #3E2723;
}
.order-btn:hover {
  background-color: #F4A261;
}
.groovy-footer {
  background-color: #3E2723;
  color: #FAF4EB;
  text-align: center;
  padding: 40px 20px;
  margin-top: 80px;
}
@media (max-width: 800px) {
  .board-grid { grid-template-columns: 1fr; }
}
