@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@400;600&display=swap');

:root {
  --bg: #ffffff;
  --surface: #f8fafc;
  --text: #1f2937;
  --muted: #6b7280;
  --primary: #d977a3;
  --primary-weak: #fde2ef;
  --accent: #fbcfe8;
  --radius: 16px;
  --shadow: 0 8px 24px rgba(0, 0, 0, .08);
  --container: 1200px;
}

[data-theme="dark"] {
  --bg: #121212;
  --surface: #1d1f24;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --primary: #f472b6;
  --primary-weak: #3b2131;
  --accent: #9d174d;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font: 16px/1.6 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  margin: 0 0 .5em
}

p {
  margin: .25em 0 1em
}

a {
  color: inherit
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  padding: 0 32px;
}

@media(max-width:900px){
  .container { padding: 0 20px; }
}

.grid {
  display: grid;
  gap: 24px
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}

@media(max-width:950px) {

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr
  }
}

.header {
  position: sticky;
  top: 25px;
  z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e7eb;
}

[data-theme="dark"] .header {
  background: rgba(18, 18, 18, .85);
  border-bottom-color: #262a33;
}

.logo {
  max-height: 60px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* === MENU (final clean version) === */
.menu {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu a {
  display: block;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 10px;
}

.menu a.active,
.menu a:hover {
  background: var(--primary-weak);
  color: var(--primary);
}

.menu-toggle {
  display: none;
  font-size: 20px;
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
}

[data-theme="dark"] .menu-toggle {
  background: #1d1f24;
  border-color: #262a33;
  color: #e5e7eb;
}

@media (max-width: 1024px) {
  header {
    position: relative;
  }

  .menu {
    display: none; 
    position: absolute;
    top: 60px;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--surface);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1000;
  }

  .menu[data-open="true"] {
    display: flex;
  }

  .menu a,
  .menu button {
    width: 100%;
    padding: 12px 20px;
    text-align: left;
    border: none;
    margin: 0;
  }

  .menu a + a,
  .menu a + button,
  .menu button + a {
    border-top: 1px solid #eee;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
}

section.contact {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 16px;
}

[data-theme="dark"] .rsv {
  color: black;
}

.notice,
.alert,
.success {
  display: block;
  margin: 0 0 12px 0;
}

.hero-full {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: url("../img/placeholders/hero.jpg") no-repeat center center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.hero-full h1 {
  font-size: clamp(32px, 6vw, 60px);
  margin-bottom: 20px;
}

.hero-full .subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  font-size: 18px;
  padding: 12px 24px;
}

.section {
  padding: 64px 24px 0 34px;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 20px;
  padding:0 20px;
}
@media(max-width:900px){
  .section,
  .our-story,
  .countdown-section,
  .timeline,
  .contact {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.kicker {
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--primary);
  font-weight: 700;
  font-size: 12px
}

.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden
}

[data-theme="dark"] .card {
  background: #1d1f24
}

.btn {
  display: inline-block;
  border: 0;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: .2s transform
}

.btn:hover {
  transform: translateY(-1px)
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary)
}

.footer {
  background: #0f1115;
  color: #e5e7eb;
  padding: 40px 0;
  margin-top: 40px
}

.footer a {
  color: #e5e7eb;
  text-decoration: none
}

.footer .cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px
}

@media(max-width:900px) {
  .footer .cols {
    grid-template-columns: 1fr
  }
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: inherit
}

[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
  background: #111;
  border-color: #262a33
}

label {
  font-weight: 600
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #e9d5ff;
  border-color: #e9d5ff
}

.table {
  width: 100%;
  border-collapse: collapse
}

.table th,
.table td {
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
  text-align: left
}

.table th {
  font-size: 13px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .06em
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease
}

.fade-in.is-visible {
  opacity: 1;
  transform: none
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  align-items: center;
  justify-content: center;
  z-index: 100
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .6)
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface)
}

.slider-track {
  display: flex;
  transition: transform .45s ease
}

.slider-item {
  min-width: 100%;
  box-sizing: border-box;
  padding: 24px;
}

.slider-item .pad {
  padding: 16px;
}

.slider-nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px
}

.slider-nav button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #d1d5db;
  cursor: pointer
}

.slider-nav button[aria-current="true"] {
  background: var(--primary)
}

.countdown {
  display: flex;
  gap: 10px;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
}

.countdown-section {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-weak), #fff);
  border-radius: var(--radius);
  padding: 60px 24px 0 24px;
  box-shadow: var(--shadow);
  margin: 40px 0;
  margin-left: auto;
  margin-right: auto;
}

.countdown-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px;
  flex-wrap: wrap;
}

.countdown div {
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 12px;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 22px;
  color: var(--primary);
  box-shadow: var(--shadow);
  transition: transform .3s ease;
}

.countdown div:hover {
  transform: translateY(-4px);
}

.countdown div::after {
  content: attr(data-label);
  font-size: 12px;
  font-weight: normal;
  color: var(--muted);
  margin-top: 6px;
}

.countdown-note {
  margin-top: 15px;
  font-style: italic;
  color: var(--muted);
}

[data-theme="dark"] .countdown-note, .badge {
  color: black;
}


@media (min-width: 768px){
  .countdown-section{
    padding:60px 40px;
  }
}

.accordion-item {
  border-bottom: 1px solid #e5e7eb
}

.accordion-header {
  cursor: pointer;
  padding: 12px 0;
  font-weight: 700
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0
}

.accordion-item.active .accordion-content {
  max-height: 220px;
  padding: 12px 0
}

.gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .3s;
}

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

.timeline {
  position: relative;
  margin: 40px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--primary);
  background-image: url(../img/placeholders/timeline-bg2.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 20px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 10px;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--primary-weak);
}

.timeline .time {
  font-weight: bold;
  color: var(--primary);
  font-size: 25px;
  text-shadow: 2px 4px 2px black;
}

.timeline .event {
  font-size: 16px;
  color: var(--text);
}

[data-theme="dark"] .timeline .event {
  color: black;
}


.testimonials .card {
  text-align: center;
  padding: 30px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid var(--primary);
}

.testimonials h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.testimonials .author {
  display: block;
  margin-top: 10px;
  font-style: italic;
  color: var(--muted);
}

.our-story {
  background: linear-gradient(135deg, var(--primary-weak), #fff);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 60px 24px 0 24px; 
  margin-top: 40px;
}

.our-story .grid {
  align-items: center;
  gap: 40px;
}
.our-story-image{
  padding: 0 24px;
}
.our-story img {
  width: 100%;
  box-shadow: none;
}

.our-story p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text);
  padding: 0 20px;
}

.our-story strong {
  color: var(--primary);
}

.our-story .btn {
  margin-top: 10px;
  margin-left: 20px;
}

.faq .accordion-item {
  border: 1px solid var(--primary-weak);
  border-radius: var(--radius);
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: 600;
  background: var(--surface);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  transition: background .3s;
}

.accordion-header:hover {
  background: var(--primary-weak);
}

.accordion-header .icon {
  font-size: 20px;
  transition: transform .3s;
}

.accordion-header.active .icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #fff;
  transition: max-height .4s ease, padding .3s ease;
}

.accordion-content p {
  margin: 15px 0;
}

.accordion-item.open .accordion-content {
  max-height: 200px;
  padding: 15px 20px;
}

.components .intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: var(--muted);
}

.component-card {
  transition: transform .3s, box-shadow .3s;
  padding: 10px;
}

.component-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);

}

.btn-small {
  font-size: 14px;
  padding: 6px 12px;
}

.notice,
.alert,
.success {
  display: block;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
}

.notice {
  border-left: 4px solid var(--primary);
  background: #fde2ef;
}

.alert {
  border-left: 4px solid #dc2626;
  background: #fee2e2;
}

.success {
  border-left: 4px solid #28e584;
  background: #d1fae5;
}

section.contact {
  background-image: url("../img/placeholders/contact-bg.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 24px 24px 24px;
  margin-top: 40px;
  border-radius: var(--radius);
}

.contact .form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary);
}

.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--primary-weak);
  border-radius: 8px;
  font-size: 16px;
  transition: border-color .3s, box-shadow .3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(217, 119, 163, 0.25);
}

.form button.btn {
  width: 100%;
  font-size: 18px;
  padding: 14px;
}

/* === TM Review Fixes v1.1 === */
.section {
  padding: 80px 0;
}

.header .container.nav {
  padding: 16px 20px;
}

