/* ====== GLOBAL RESET & BASE ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #fafafa;
  line-height: 1.6;
}

/* Containers */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Headings */
h1, h2, h3 {
  font-weight: 700;
  margin-bottom: 15px;
}

p {
  margin-bottom: 10px;
}

.muted {
  color: #777;
  font-size: 0.9rem;
}

/* ====== NAVIGATION ====== */
.nav {
  background: #111;
  color: #fff;
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-weight: 700;
  font-size: 1.3rem;
  color: gold;
  text-decoration: none;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav__links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav__links a:hover {
  color: gold;
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav__toggle { display: block; }
  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    top: 60px;
    background: #222;
    padding: 15px;
  }
  .nav__links.open { display: flex; }
}

/* ====== HERO ====== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 85vh;
  padding: 60px 20px;
  background: linear-gradient(135deg, #ff9800, #ff5722);
  color: #fff;
}

.hero__text {
  flex: 1;
  max-width: 600px;
}

.hero__text h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero__text .lead {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #f9f9f9;
}

.hero__cta .btn {
  background: #fff;
  color: #ff5722;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.hero__cta .btn:hover {
  background: #ffe082;
  color: #000;
}

.hero__photo {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero__photo img {
  max-width: 320px;
  border-radius: 20px;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.3);
}

/* Mobile Hero */
@media (max-width: 992px) {
  .hero { flex-direction: column-reverse; text-align: center; }
  .hero__text h1 { font-size: 2.2rem; }
  .hero__photo img { max-width: 240px; margin-bottom: 20px; }
}

/* ====== SECTIONS ====== */
.section {
  padding: 70px 20px;
}

.section--light {
  background: #fff;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

/* ====== CATEGORIES ====== */
.category-block {
  margin-bottom: 50px;
}

.category-block h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.image-scroll {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.item-card {
  border: 2px solid #ccc;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  transition: transform 0.3s, border-color 0.3s;
  min-width: 200px;
}

.item-card:hover {
  transform: scale(1.05);
  border-color: gold;
}

.item-card img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .image-scroll { flex-wrap: wrap; }
  .item-card { width: 48%; }
}

/* ====== EVENTS / GALLERY ====== */
.card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card h3 {
  margin-bottom: 10px;
}

.pagination {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pagination a {
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  background: #eee;
}

.pagination a:hover,
.pagination a[style*="font-weight:bold"] {
  background: gold;
  color: #000;
}

/* ====== FEEDBACK ====== */
.feedback-form-wrapper {
  max-width: 600px;
  margin: 0 auto 30px auto;
  padding: 20px;
  background: #fdfdfd;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.feedback-form input,
.feedback-form textarea,
.feedback-form input[type="file"] {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.feedback-form textarea {
  min-height: 100px;
  resize: vertical;
}

.star-rating {
  direction: rtl;
  unicode-bidi: bidi-override;
  display: inline-flex;
  margin: 10px 0;
}

.star-rating input { display: none; }

.star-rating label {
  font-size: 28px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0 3px;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
  color: gold;
}

.star-rating input:checked ~ label {
  color: gold;
}

.btn-submit {
  background: linear-gradient(45deg, #ff9800, #ff5722);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: linear-gradient(45deg, #ff5722, #e91e63);
  transform: translateY(-2px);
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}

/* Feedback List */
.feedback-list { margin-top: 20px; }

.feedback-item {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 15px;
  padding: 12px;
  background: #fafafa;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.feedback-item img {
  max-width: 100px;
  border-radius: 8px;
}

.feedback-item div { flex: 1; }

.feedback-pagination {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.feedback-pagination a {
  padding: 5px 12px;
  background: #eee;
  border-radius: 6px;
  text-decoration: none;
}

.feedback-pagination a.active,
.feedback-pagination a:hover {
  background: gold;
  color: #000;
}

/* ====== CONTACT ====== */
.contact p {
  margin: 10px 0;
}

.contact a {
  color: #ff5722;
  text-decoration: none;
  font-weight: 500;
}

.contact a:hover {
  text-decoration: underline;
}

/* ====== FOOTER ====== */
.footer {
  background: #111;
  color: #fff;
  padding: 20px;
}

.footer__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer .muted {
  color: #aaa;
  font-size: 0.9rem;
}
/* ====== GLOBAL FONT & BASE ====== */
body {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #333;
  background: #f9f9f9;
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.3;
  color: #004d61; /* deep teal */
}

p {
  color: #555;
}

/* ====== HERO ====== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 75vh;
  padding: 50px 20px;
  background: linear-gradient(135deg, #004d61, #00796b);
  color: #fff;
}

.hero__text {
  flex: 1;
  max-width: 550px;
}

.hero__text h1 {
  font-size: 2.2rem;       /* smaller, cleaner */
  font-weight: 600;
  margin-bottom: 12px;
}

.hero__text .lead {
  font-size: 1rem;
  margin-bottom: 18px;
  color: #e0f7f4;
}

.hero__cta .btn {
  background: #d4af37;  /* gold accent */
  color: #004d61;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.hero__cta .btn:hover {
  background: #c59d2e;
  color: #fff;
}

.hero__photo {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero__photo img {
  max-width: 280px;
  border-radius: 16px;
  box-shadow: 0px 6px 16px rgba(0,0,0,0.25);
}

/* ====== RESPONSIVE HERO ====== */
@media (max-width: 992px) {
  .hero { 
    flex-direction: column-reverse; 
    text-align: center; 
    padding: 40px 15px;
  }
  .hero__text h1 { font-size: 1.8rem; }
  .hero__photo img { 
    max-width: 200px; 
    margin-bottom: 20px; 
  }
}
/* ====== GLOBAL FONT & BASE ====== */
body {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #333;
  background: #f9f9f9;
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.3;
  color: #004d61; /* teal for light backgrounds */
}

p { color: #555; }

/* ====== HERO ====== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 75vh;
  padding: 50px 20px;
  background: linear-gradient(135deg, #004d61, #00796b);
  color: #fff; /* default text inside hero is white */
}

.hero__text h1 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff; /* force hero heading white */
}

.hero__text .lead {
  font-size: 1rem;
  margin-bottom: 18px;
  color: #e0f7f4; /* light teal for subtitle */
}

.hero__cta .btn {
  background: #d4af37;  /* gold accent */
  color: #004d61;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.hero__cta .btn:hover {
  background: #c59d2e;
  color: #fff;
}

.hero__photo img {
  max-width: 280px;
  border-radius: 16px;
  box-shadow: 0px 6px 16px rgba(0,0,0,0.25);
}


/* ====== RESPONSIVE HERO ====== */
@media (max-width: 992px) {
  .hero { 
    flex-direction: column;   /* 👈 instead of column-reverse */
    text-align: center; 
    padding: 40px 15px;
  }
  .hero__text h1 { font-size: 1.8rem; }
  .hero__photo img { 
    max-width: 200px; 
    margin-bottom: 20px; 
  }
}












































