:root{
  /* Siargao sunny vibe */
  --sky: #21b6ff;
  --ocean: #00d1c1;
  --sand: #fff2c6;
  --sun: #ffcf3a;
  --mango: #ff8a1f;
  --coral: #ff4d6d;

  --ink: #0b1a2b;
  --muted: rgba(11,26,43,.72);
  --white: #ffffff;

  --card: rgba(255,255,255,.78);
  --glass: rgba(255,255,255,.52);
  --stroke: rgba(11,26,43,.12);
  --shadow: 0 18px 45px rgba(11,26,43,.18);

  --radius: 18px;
  --ring: rgba(33,182,255,.35);
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--ink);
  line-height: 1.5;

  /* bright tropical background */
  background:
    radial-gradient(1000px 700px at 20% 0%, rgba(255,207,58,.55), transparent 55%),
    radial-gradient(900px 650px at 85% 10%, rgba(33,182,255,.45), transparent 55%),
    radial-gradient(900px 650px at 60% 95%, rgba(0,209,193,.35), transparent 60%),
    linear-gradient(180deg, #f7fcff, var(--sand));
}

a{ color: inherit; text-decoration: none; }
.container{ width: min(1100px, 92vw); margin: 0 auto; }

.adotted{
  text-decoration-line: underline; /* Ensures the line is present */
  text-decoration-style: dotted;  /* Sets the style to dotted */
  /* Optional: customize color and thickness */
  text-decoration-color: blue;    /* Changes the color of the dots */
  text-decoration-thickness: 1px; /* Changes the thickness */
}

header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.35);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--stroke);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 14px;
}

/* Brand logo */
.brand{
  display: flex;
  align-items: center;
  
  text-decoration: none;
  color: inherit;
}

.logo-img{
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;

  background: transparent !important;
  border: none;
  box-shadow: none;
}

.logo-img-big{
  height: 100px;          /* fits nicely in header */
  width: auto;
}

/* Slightly bigger on desktop */
@media (min-width: 900px){
  .logo-img{
    height: 60px;
  }
}



nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
nav a{
  display:inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  color: rgba(11,26,43,.78);
}
nav a:hover{
  background: rgba(255,255,255,.75);
  box-shadow: 0 10px 22px rgba(11,26,43,.08);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.7);
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(11,26,43,.08);
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }

.btn.primary{
  border: none;
  color: #07111c;
  background: linear-gradient(135deg, var(--sun), var(--mango));
  box-shadow: 0 18px 34px rgba(255,138,31,.25);
}

main{ padding: 26px 0 38px; }

.hero{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 16px;
  align-items: stretch;
}

.card{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.hero-card{
  padding: 26px;
  background:
    radial-gradient(900px 240px at 20% 0%, rgba(255,207,58,.6), transparent 60%),
    radial-gradient(900px 260px at 90% 0%, rgba(33,182,255,.45), transparent 60%),
    rgba(255,255,255,.72);
}

.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 16px;
  border: 1px solid rgba(11,26,43,.12);
  background: rgba(255,255,255,.65);
  margin: 2px;
}

h1{
  margin: 12px 0 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.8px;
  color: #352121;
}
.lead{
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 60ch;
}

.quick{
  display:grid;
  gap: 10px;
}

.preview.home {
  height: min(40vh, 320px); /* responsive hero height */
  border-radius: 16px;

  background-image:
    linear-gradient(
      135deg,
      rgba(255,207,58,.30),
      rgba(0,209,193,.18)
    ),
    url("./images/houseRender.jpeg");

  background-size: cover;        /* 👈 crops instead of stretching */
  background-position: center;   /* 👈 center crop */
  background-repeat: no-repeat;

  border: 1px solid rgba(11,26,43,.10);
}

.preview.homestay {
  height: min(40vh, 320px); /* responsive hero height */
  border-radius: 16px;

  background-image:
    linear-gradient(
      135deg,
      rgba(255,207,58,.30),
      rgba(0,209,193,.18)
    ),
    url("./images/outside_house.png");

  background-size: cover;        /* 👈 crops instead of stretching */
  background-position: center;   /* 👈 center crop */
  background-repeat: no-repeat;

  border: 1px solid rgba(11,26,43,.10);
}

/* On desktop the aside already stretches via flex:1 on aside.card.quick .preview */
/* On mobile the aside stacks below — make the image fill the full aside height */
@media (max-width: 900px) {
  aside.card.quick {
    height: auto;
  }

  aside.card.quick .preview {
    height: 260px;         /* fixed height when stacked — adjust to taste */
    flex: none;
  }

}



.hero {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 16px;
  align-items: stretch; /* 👈 key for equal height */
}

.hero[data-expanded="true"] aside.card.quick {
  align-self: stretch;
}

.hero[data-expanded="true"] aside.card.quick .preview {
  flex: 1;
  min-height: 220px;
}

.preview.surf {
  width: 100%;
  height: 100%;  /* 👈 now matches left automatically */
  border-radius: 16px;
  overflow: hidden;
    background-image:
    linear-gradient(
      135deg,
      rgba(255,207,58,.30),
      rgba(0,209,193,.18)
    ),
    url("./images/surf_jhun.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.preview.rooms {
  background-image:
    linear-gradient(135deg, rgba(255,207,58,.35), rgba(0,209,193,.20)),
    url("./images/living_room.png");
}

.preview.booking {
  background-image:
    linear-gradient(135deg, rgba(255,207,58,.35), rgba(0,209,193,.20)),
    url("./images/inside_house.png");
}


.kv{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  font-weight: 800;
  color: rgba(11,26,43,.78);
}
.kv strong{ color: var(--ink); }

.section-title{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 12px;
  margin: 22px 0 10px;
}
.section-title h2{ margin:0; font-size: 22px; letter-spacing: -0.2px; }
.section-title p{ margin:0; color: var(--muted); font-weight: 700; font-size: 14px; }

.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  padding: 10px 10px;
}

.item h3{ margin: 0 0 8px; font-size: 16px; }
.item p{ margin: 0; color: var(--muted); font-weight: 650; font-size: 14px; }

.chips{ display:flex; flex-wrap:wrap; gap: 8px; margin-top: 10px; }
.chip{
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(11,26,43,.12);
  background: rgba(255,255,255,.65);
  color: rgba(11,26,43,.78);
}

.form{
  display:grid;
  gap: 12px;
}
.row{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}

.row-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
}

label{
  display:block;
  font-weight: 950;
  font-size: 13px;
  margin-bottom: 6px;
}
input, select, textarea{
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(11,26,43,.16);
  background: rgba(255,255,255,.78);
  outline: none;
}
input:focus, select:focus, textarea:focus{
  box-shadow: 0 0 0 4px var(--ring);
  border-color: rgba(33,182,255,.55);
}
textarea{ min-height: 92px; resize: vertical; }
.help{ margin-top: 6px; color: var(--muted); font-weight: 650; font-size: 12px; }

.error{
  display:none;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,77,109,.25);
  background: rgba(255,77,109,.10);
  font-weight: 850;
  color: rgba(11,26,43,.88);
}

.booking-wrap{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 14px;
  align-items:start;
}

.summary{
  display:grid;
  gap: 10px;
}
.summary .line{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(11,26,43,.78);
  font-weight: 850;
}
.summary .line strong{ color: var(--ink); }
.total{
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(11,26,43,.12);
}

footer{
  border-top: 1px solid rgba(11,26,43,.12);
  margin-top: 22px;
  padding: 18px 0 34px;
  color: rgba(11,26,43,.70);
  font-weight: 800;
}

@media (max-width: 900px){
  .grid{ grid-template-columns: 1fr; }
  .booking-wrap{ grid-template-columns: 1fr; }
  .row{ grid-template-columns: 1fr; }

  /* Stack hero vertically on mobile */
  .hero{
    grid-template-columns: 1fr;
  }

  /* Aside image: fixed height when collapsed */
  aside.card.quick {
    display: flex;
    flex-direction: column;
    min-height: 260px;
  }

  aside.card.quick .preview {
    flex: 1;
    min-height: 220px;
  }


  aside.card.quick {
    min-height: unset;
  }

  aside.card.quick .preview.home {
    height: 220px;
    min-height: 220px;
    flex: none;
  }

  .hero[data-expanded="true"] aside.card.quick .preview.home {
    height: 220px;
    min-height: 220px;
    flex: none;
  }
}

/* Calendar */
.cal {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.cal-head {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 950;
  color: rgba(11,26,43,.75);
  font-size: 12px;
}

.day {
  user-select: none;
  border-radius: 12px;
  padding: 6px 8px;              /* ↓ tighter padding */
  min-height: 44px;              /* ↓ slightly smaller */
  border: 1px solid rgba(11,26,43,.12);
  background: rgba(255,255,255,.70);
  box-shadow: 0 8px 14px rgba(11,26,43,.06);
  font-weight: 900;
  display: flex;
  flex-direction: column;        /* 👈 stack number + label */
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
  overflow: hidden;              /* 👈 prevents overflow */
}
.day > div {
  font-size: 13px;               /* date number */
  line-height: 1;
}

.day small {
  font-size: 10px;               /* "Free", "Booked", "Past" */
  line-height: 1.1;
  font-weight: 800;
  white-space: nowrap;           /* 👈 no wrapping */
  overflow: hidden;
  text-overflow: ellipsis;       /* 👈 safety */
}

@media (max-width: 420px) {
  .day {
    min-height: 40px;
    padding: 5px 6px;
  }

  .day > div {
    font-size: 12px;
  }

  .day small {
    font-size: 9px;
  }
}



.day small {
  font-weight: 900;
  color: rgba(11,26,43,.55);
}

.day.disabled {
  cursor: not-allowed;
  opacity: .55;
  background: rgba(255,255,255,.45);
}

.day.available {
  background: rgba(57, 217, 138, .20);
  border-color: rgba(57, 217, 138, .35);
}

.day.booked {
  background: rgba(255, 77, 109, .18);
  border-color: rgba(255, 77, 109, .35);
  cursor: not-allowed;
}

/* Range highlight (light blue) */
.day.in-range{
  background: rgba(33, 182, 255, .18);
  border-color: rgba(33, 182, 255, .35);
}

/* Keep start/end stronger (optional, looks nicer) */
.day.selected{
  outline: 3px solid rgba(33,182,255,.45);
  box-shadow: 0 0 0 6px rgba(33,182,255,.18);
}



/* Map embed inside chips area */
.map-chip{
  width: 100%;
  padding: 12px;
  border-radius: 16px;
  display: block;
}

.map-title{
  font-weight: 950;
  margin-bottom: 8px;
  color: rgba(11,26,43,.85);
}

.map-embed{
  width: 100%;
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(11,26,43,.12);
  background: rgba(255,255,255,.65);
}

.map-embed iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


/* Room card photos */
.room-photo{
  width: 100%;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(11,26,43,.10);
  margin-bottom: 12px;
  background: rgba(255,255,255,.55);
}

.room-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;     /* crops nicely */
  object-position: center;
  display: block;
}
@media (min-width: 900px){
  .room-photo{ height: 210px; }
}




/* Booking form divider */
.form-divider{
  width: 100%;
  height: 1px;
  margin: 18px 0 14px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(11,26,43,.25),
    transparent
  );
}


/* Full-width form field */
.row .full{
  grid-column: 1 / -1;
}


.room-card-link{
  display: block;
  color: inherit;
  text-decoration: none;
}
.room-card-link:hover{
  transform: translateY(-1px);
}


/* Room detail layout */
.room-detail{
  display: grid;
  gap: 16px;
  align-items: start;
}

/* Two columns on desktop */
@media (min-width: 900px){
  .room-detail{
    grid-template-columns: 2fr 1fr;
  }
}

/* Room hero image wrapper */
.room-hero{
  width: 100%;
  aspect-ratio: 16 / 9;          /* keeps it consistent */
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(11,26,43,.10);
  background: rgba(11,26,43,.04);
}

/* Image fits wrapper without stretching layout */
.room-hero img{
  width: 100%;
  height: 100%;
  object-fit: cover;             /* crop nicely */
  display: block;
}


/* Room image carousel */
.room-carousel{
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(11,26,43,.10);
  background: rgba(11,26,43,.04);
}
.room-carousel{ touch-action: pan-y; }
.carousel-btn{ touch-action: manipulation; }

.carousel-track{
  display: flex;
  transition: transform 240ms ease;
  will-change: transform;
}

.carousel-slide{
  min-width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(11,26,43,.04);
}

.carousel-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Buttons */
.carousel-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(11,26,43,.12);
  background: rgba(255,255,255,.86);
  color: rgba(11,26,43,.85);
  font-size: 26px;
  font-weight: 900;
  display: grid;
  place-items: center;
  cursor: pointer;
  user-select: none;
  z-index: 10;
}

.carousel-btn:hover{
  background: rgba(255,255,255,.96);
}

.carousel-btn.prev{ left: 10px; }
.carousel-btn.next{ right: 10px; }

/* Dots */
.carousel-dots{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 10px;
}

.carousel-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.9);
  background: rgba(255,255,255,.45);
  cursor: pointer;
}

.carousel-dot.is-active{
  background: rgba(255,255,255,.95);
}

/* Slightly shorter on small screens */
@media (max-width: 520px){
  .carousel-slide{ aspect-ratio: 4 / 3; }
  .carousel-btn{ width: 38px; height: 38px; }
}


/* Allow buttons to receive clicks */
.carousel-track,
.carousel-slide,
.carousel-slide img {
  pointer-events: none;
}

/* Re-enable pointer events ONLY for controls */
.carousel-btn,
.carousel-dots,
.carousel-dot {
  pointer-events: auto;
  z-index: 50;
}

.header-container {
    display: flex; /* Enables flexbox layout for children */
    align-items: center; /* Vertically centers the items in the container */
    gap: 10px; /* Adds space between the image and the h1 */
}

/* Optional: Style the image and heading as needed */
.header-container img {
    max-width: 100px; /* Adjust image size */
    height: auto;
}

.header-container h1 {
    margin: 10; /* Remove default h1 margin for cleaner alignment */
}


/* Ensure hero columns stretch to same height */
.hero{
  align-items: stretch; /* already there in your file, keep it */
}

/* Right side card: make it fill height & image fills remaining space */
aside.card.quick{
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Make preview fill available height, so aside matches left height nicely */
aside.card.quick .preview{
  flex: 1;
  min-height: 150px;         /* ensures it isn't tiny */
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}

/* Collapsible hero card */
.hero-collapsible{
  padding: 0;
  overflow: hidden;
}

/* Clickable header area */
.hero-collapse-toggle{
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 18px;
  cursor: pointer;
  display: block;
}

.hero-collapse-toggle:focus{
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
  border-radius: var(--radius);
}

.hero-collapse-hint{
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 12px;
  color: rgba(11,26,43,.65);
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(11,26,43,.12);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero-chevron{
  display: inline-block;
  transform: rotate(0deg);
  transition: transform 220ms ease;
  font-size: 18px;
  line-height: 1;
}

/* Collapsed by default: hide text/content smoothly */
.hero-collapse-content{
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
  padding: 0 18px; /* keep side padding consistent */
}

/* Inner content padding */
.hero-collapse-inner{
  padding: 0 0 18px 0;
}

/* Open state */
.hero-collapsible[data-open="true"] .hero-collapse-content{
  /* max-height set dynamically via JS for smooth animation */
}

.hero-collapsible[data-open="true"] .hero-chevron{
  transform: rotate(90deg);
}

.hero-collapsible[data-open="true"] .hero-collapse-hint span:first-child{
  content: "";
}


/* Right-side hero card: hide details when collapsed */
.quick-details{
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 320ms ease, opacity 220ms ease;
}

/* When hero is expanded, show the details */
.hero[data-expanded="true"] .quick-details{
  opacity: 1;
  max-height: 300px; /* enough for kv lines */
}


/* ---------- Responsive Header / Hamburger ---------- */
.nav-toggle{
  display: none;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.75);
  border-radius: 14px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(11,26,43,.08);
}

.nav-toggle .bar{
  display: block;
  height: 3px;
  border-radius: 999px;
  background: rgba(11,26,43,.78);
  margin: 5px 0;
}

/* Desktop default: menu visible inline */
.nav-menu{
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Make CTA align nicely */
.nav-cta{ white-space: nowrap; }

/* Mobile layout */
@media (max-width: 1000px){
  .nav{
    align-items: center;
  }

  /* Show hamburger */
  .nav-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Hide menu until opened */
  .nav-menu{
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 10px;
    padding: 14px;
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--stroke);
    border-top: 1px solid var(--stroke);
    display: grid;
    gap: 12px;

    /* collapsed state */
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 260ms ease, opacity 180ms ease, transform 180ms ease, padding 180ms ease;
  }

  header{ position: sticky; }

  /* Ensure header can anchor dropdown */
  header .nav{ position: relative; }

  /* Open state */
  header[data-menu-open="true"] .nav-menu{
    max-height: 420px;           /* enough for links + button */
    opacity: 1;
    transform: translateY(0);
    padding-top: 14px;
    padding-bottom: 14px;
  }

  /* Stack the nav links */
  header[data-menu-open="true"] nav ul{
    display: grid;
    gap: 8px;
  }

  /* Full-width CTA on mobile */
  header[data-menu-open="true"] .nav-cta{
    width: 100%;
    justify-content: center;
  }

  /* Bigger tap targets */
  header[data-menu-open="true"] nav a{
    padding: 12px 12px;
    font-size: 15px;
  }
}


/* Surf card photos */
.surf-photo{
  width: 100%;
  height: 100px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(11,26,43,.10);
  margin-bottom: 12px;
  background: rgba(255,255,255,.55);
}

.surf-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;     /* crops nicely */
  object-position: center;
  display: block;
}
@media (min-width: 900px){
  .surf-photo{ height: 100px; }
}



/* ===== Surf page: 1 card per row + collapsible cards ===== */
.surf-page .grid {
  grid-template-columns: 1fr !important;
}

/* Force vertical stacking */
.surf-card {
  flex-direction: column; /* stack children top→bottom */
  align-items: stretch;
  
  cursor: pointer;
}

.surf-card a,

.surf-card button {
  cursor: auto;
}

/* Collapsed state hides text under image */
.card-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.3s ease;
  opacity: 0;
  width: 100%;
}

/* Expanded state opens BELOW the image */
.surf-card.is-open .card-collapse {
  max-height: 800px; /* big enough to reveal all text */
  opacity: 1;
}

/* Prevent links/buttons from triggering collapse */
.surf-card a, .surf-card button {
  pointer-events: auto;
}

/* Ensure image transitions height smoothly */
.surf-card .surf-photo img {
  height: 100px;            /* collapsed height */
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
  transition: height 0.4s ease; /* smooth height animation */
}

/* Expanded state → image also increases height */
.surf-card.is-open .surf-photo {
  height: 200px;            /* expanded height */
}
.surf-card.is-open .surf-photo img{
  height: 200px;            /* expanded height */
}
