/* assets/css/style.css */
:root{
  --sand:#f8f3ea;
  --sand-2:#fffaf2;
  --white:#ffffff;
  --text:#1e293b;
  --muted:#64748b;
  --line:#eadfcf;

  --ocean:#0ea5a4;
  --ocean-dark:#0b7f82;
  --leaf:#3bb273;
  --sun:#ffb347;
  --sun-deep:#ff8e3c;
  --palm:#2f855a;

  --shadow-sm:0 12px 30px rgba(30,41,59,.06);
  --shadow-md:0 22px 55px rgba(30,41,59,.10);
  --radius-xl:28px;
  --radius-lg:22px;
  --radius-md:16px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background: #d8c0a8;
}

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

a{
  text-decoration:none;
}

.tropical-navbar{
  background:rgba(255,255,255,.78)!important;
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(234,223,207,.92);
  box-shadow:0 12px 35px rgba(30,41,59,.05);
}

.brand-logo{
  font-family:"Playfair Display", serif;
  font-weight:800;
  font-size:1.6rem;
  color:#114b5f!important;
  letter-spacing:-.02em;
}

.navbar .nav-link{
  font-weight:700;
  color:#33515f!important;
  transition:.2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active{
  color:var(--ocean-dark)!important;
}

.btn-book-now{
  border:none;
  color:#fff;
  font-weight:800;
  padding:.85rem 1.25rem;
  border-radius:999px;
  background:linear-gradient(135deg,var(--sun),var(--sun-deep));
  box-shadow:0 12px 24px rgba(255,142,60,.25);
}

.btn-book-now:hover{
  color:#fff;
  transform:translateY(-1px);
  filter:brightness(.98);
}

.btn-tropical{
  border:none;
  color:#fff;
  font-weight:800;
  padding:.95rem 1.35rem;
  border-radius:14px;
  background:linear-gradient(135deg,var(--ocean),var(--leaf));
  box-shadow:0 14px 28px rgba(14,165,164,.18);
}

.btn-tropical:hover{
  color:#fff;
  transform:translateY(-1px);
  filter:brightness(.98);
}

.btn-outline-tropical{
  background:rgba(255,255,255,.82);
  color:var(--text);
  border:1px solid var(--line);
  padding:.95rem 1.35rem;
  border-radius:14px;
  font-weight:800;
}

.btn-outline-tropical:hover{
  background:#fff;
  color:var(--ocean-dark);
}

.hero-shell{
  padding:34px 0 18px;
}

.hero-card{
  overflow:hidden;
  border-radius:34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,250,242,.92));
  border:1px solid rgba(234,223,207,.92);
  box-shadow:var(--shadow-md);
}

.hero-copy{
  padding:48px 44px;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.6rem 1rem;
  border-radius:999px;
  background:rgba(14,165,164,.10);
  color:#0f766e;
  font-weight:800;
  margin-bottom:18px;
}

.hero-title{
  font-family:"Playfair Display", serif;
  font-size:clamp(2.4rem,4vw,4.8rem);
  line-height:1;
  letter-spacing:-.03em;
  margin-bottom:16px;
  color:#174a5a;
}

.hero-sub{
  color:var(--muted);
  font-size:1.08rem;
  line-height:1.85;
  max-width:640px;
  margin-bottom:26px;
}

.hero-stats{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.hero-stat{
  min-width:150px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.78);
  border:1px solid var(--line);
}

.hero-stat .label{
  display:block;
  color:var(--muted);
  font-size:.84rem;
  margin-bottom:4px;
}

.hero-stat .value{
  font-weight:800;
}

.hero-carousel-wrap{
  position:relative;
  min-height:100%;
  background:
    linear-gradient(180deg, rgba(14,165,164,.08), rgba(255,179,71,.10));
}

.hero-carousel-img{
  width:100%;
  height:100%;
  min-height:560px;
  object-fit:cover;
}

.carousel-caption{
  background:rgba(17,24,39,.34);
  backdrop-filter:blur(8px);
  border-radius:18px;
  padding:1rem 1.15rem;
}

.section-block{
  padding:38px 0 8px;
}

.section-title{
  font-family:"Playfair Display", serif;
  font-size:clamp(1.8rem,2vw,2.9rem);
  letter-spacing:-.02em;
  margin-bottom:10px;
  color:#174a5a;
}

.section-sub{
  color:var(--muted);
  max-width:820px;
  line-height:1.8;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}

.feature-card{
  height:100%;
  padding:24px;
  border-radius:24px;
  background:rgba(255,255,255,.92);
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
}

.feature-icon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:18px;
  font-size:1.35rem;
  margin-bottom:14px;
  background:linear-gradient(135deg, rgba(14,165,164,.12), rgba(255,179,71,.18));
}

.feature-card h3{
  font-weight:800;
  font-size:1.08rem;
  margin-bottom:8px;
}

.feature-card p{
  color:var(--muted);
  line-height:1.75;
  margin:0;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}

.gallery-card{
  overflow:hidden;
  border-radius:24px;
  background:rgba(255,255,255,.95);
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  transition:.25s ease;
}

.gallery-card:hover{
  transform:translateY(-4px);
  box-shadow:0 24px 48px rgba(30,41,59,.11);
}

.gallery-card-image{
  position:relative;
  overflow:hidden;
  background:#dff7f0;
}

.gallery-card-image img{
  width:100%;
  height:270px;
  object-fit:cover;
  cursor:pointer;
  transition:transform .35s ease;
}

.gallery-card:hover .gallery-card-image img{
  transform:scale(1.03);
}

.gallery-card-body{
  padding:18px 18px 20px;
}

.gallery-card-body h3{
  font-size:1.08rem;
  font-weight:800;
  margin:0 0 8px;
}

.gallery-card-body p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  min-height:58px;
}

.gallery-position{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:46px;
  border-radius:999px;
  font-size:.82rem;
  font-weight:800;
  padding:6px 10px;
  background:rgba(255,179,71,.18);
  color:#9a5b10;
}

.panel-card{
  background:rgba(255,255,255,.94);
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow-md);
  padding:26px;
}

.form-control,
.form-select{
  min-height:50px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
}

textarea.form-control{
  min-height:120px;
}

.form-control:focus,
.form-select:focus{
  border-color:rgba(14,165,164,.48);
  box-shadow:0 0 0 .2rem rgba(14,165,164,.13);
}

.notice-success,
.notice-error{
  border-radius:16px;
  padding:15px 16px;
  margin-bottom:18px;
  font-weight:700;
}

.notice-success{
  border:1px solid #bfe9d8;
  background:#ecfaf4;
  color:#166a48;
}

.notice-error{
  border:1px solid #f2c9c9;
  background:#fff1f1;
  color:#a73737;
}

.table-panel{
  overflow-x:auto;
}

.table-clean{
  width:100%;
  border-collapse:separate;
  border-spacing:0 10px;
}

.table-clean th{
  text-transform:uppercase;
  font-size:.82rem;
  letter-spacing:.06em;
  color:var(--muted);
  padding:0 10px 8px;
}

.table-clean td{
  background:#fff;
  padding:12px 10px;
  vertical-align:top;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.table-clean td:first-child{
  border-left:1px solid var(--line);
  border-top-left-radius:16px;
  border-bottom-left-radius:16px;
}

.table-clean td:last-child{
  border-right:1px solid var(--line);
  border-top-right-radius:16px;
  border-bottom-right-radius:16px;
}

.manager-thumb{
  width:90px;
  height:68px;
  object-fit:cover;
  border-radius:12px;
  border:1px solid var(--line);
}

.site-footer{
  margin-top:56px;
  background:linear-gradient(180deg, rgba(13,148,136,.06), rgba(255,255,255,.88));
  border-top:1px solid var(--line);
}

.footer-title{
  font-family:"Playfair Display", serif;
  font-weight:800;
  font-size:1.45rem;
  color:#174a5a;
}

.footer-text,
.footer-copy{
  color:var(--muted);
}

.site-footer a{
  color:#0f766e;
  font-weight:700;
}

.lightbox-card{
  border:none;
  border-radius:24px;
  overflow:hidden;
}

.lightbox-header{
  border-bottom:1px solid var(--line);
  background:#fff;
}

.lightbox-body{
  background:#f8f3ea;
}

.lightbox-image{
  width:100%;
  max-height:78vh;
  object-fit:contain;
}

.info-banner{
  border-radius:22px;
  padding:20px;
  background:linear-gradient(135deg, rgba(14,165,164,.10), rgba(255,179,71,.13));
  border:1px solid rgba(234,223,207,.92);
}

@media (max-width: 991px){
  .hero-copy{
    padding:30px 24px;
  }

  .hero-carousel-img{
    min-height:320px;
  }

  .feature-grid,
  .gallery-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 767px){
  .hero-shell{
    padding-top:22px;
  }

  .feature-grid,
  .gallery-grid{
    grid-template-columns:1fr;
  }

  .hero-title{
    font-size:2.4rem;
  }

  .hero-stat{
    width:100%;
  }
}