/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #000000;
}

/* Header */
header {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 240, 240, 0.9));
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s ease;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: lowercase;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #00ca00;
}

.heart {
  color: #00ca00;
  margin-right: 0.4rem;
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.logo:hover .heart {
  transform: scale(1.2);
}

.tui-member {
  font-size: 0.75rem;
  color: #666;
  margin-top: 0.2rem;
  font-weight: 400;
}

.header-search {
  position: relative;
  flex: 1;
  max-width: 500px;
  margin: 0 1rem;
}

.header-search input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.header-search input:focus {
  outline: none;
  border-color: #00ca00;
  box-shadow: 0 0 8px rgba(0, 202, 0, 0.2);
}

.search-btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: #00ca00;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.search-btn:hover {
  background: #00cc00;
  transform: translateY(-50%) scale(1.1);
}

.search-btn svg {
  color: #fff;
  stroke-width: 2.5;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  text-decoration: none;
  color: #000000;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #00ca00;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #00ca00;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.cta {
  background: #00ca00;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-link.cta:hover {
  background: #00cc00;
  transform: translateY(-2px);
  color: #fff;
}

.nav-link.cta::after {
  display: none;
}

/* Hero Section */
.hero {
  background: url('../images/header1.jpg') center/cover no-repeat;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #fff;
}

.highlight {
  display: block;
  background: #fff;
  color: #00ca00;
  padding: 0 0.5rem;
  border-left: 5px solid #00ca00;
}

.sub-highlight {
  display: block;
  background: #fff;
  color: #00cb00;
  padding: 0 0.5rem;
}

.search-bar input {
  padding: 0.75rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  width: 500px;
  max-width: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header-search{
 line-height-step: 0ps;
}
.hero-footer {
  position: absolute;
  bottom: 1rem;
  display: flex;
  gap: 2rem;
  color: #fff;
  font-size: 0.9rem;
}

.hero-footer-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-footer-item .icon {
  font-size: 1.2rem;
  color: #00ca00;
}

/* Promotional Cards Section */
.promo-section {
  margin-left: 5%;
  width: 90%;
  padding: 2rem 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.promo-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  /* Removed box-shadow to eliminate shadow on images */
}

.promo-card img {
  width: 100%;
  height: auto; /* Allow images to scale naturally to preserve resolution */
  display: block;
  object-fit: contain; /* Use contain to show full image without cropping */
}

.promo-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1; /* Overlay visible by default */
  transition: opacity 0.3s ease; /* Smooth transition for hover effect */
}

/* Optional: Hide overlay by default and show on hover */
/*
.promo-card:hover .promo-card-overlay {
  opacity: 1; 
}
.promo-card-overlay {
  opacity: 0;
}
*/

.promo-card-content {
  text-align: center;
  padding: 1rem;
}

.promo-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: yellow;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.promo-card p {
  font-size: 1rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 1rem;
}

.discover-link {
  color: #00ca00;
  text-decoration: none;
  font-weight: 500;
}

.discover-link:hover {
  color: #00cc00;
}

/* Info Section */
.info-section {
  width: 100%;
  padding: 2rem 2rem;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  width: 50%;
}

.info-icon {
  font-size: 2rem;
  margin-right: 1rem;
  color: #00ca00;
}

.info-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #000000;
}

.info-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

/* Activity Cards Section */
.activity-section {
  background: #f5f5f5;
  padding: 2rem 0;
  margin-left: 5%;
  width: 90%;
}

.activity-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.activity-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #000000;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.activity-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.activity-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 1rem;
}

.card-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #000000;
}

.card-content p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.tags {
  margin-bottom: 0.5rem;
}

.tag {
  display: inline-block;
  background: #00ca00;
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-right: 0.5rem;
}
.linkdetail{
  background: #00ca00;
  text-decoration: none;
  color: #fff;
}

.price-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-weight: 700;
  color: #000000;
}

.rating {
  font-size: 0.9rem;
  color: #666;
}

/* Informational Banner Section */
.info-banner-section {
  background: #fff;
  padding: 2rem 0;
}

.info-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

.info-banner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  max-width: 300px;
}

.banner-icon {
  width: 50px;
  height: 50px;
  filter: brightness(0) saturate(100%) hue-rotate(120deg);
}

.info-banner-card p {
  font-size: 0.9rem;
  color: #000000;
  font-weight: 500;
  line-height: 1.4;
}

/* Musement Mag Section */
.musement-mag-section {
  background: #f5f5f5;
  padding: 2rem 0;
  margin-left: 5%;
  width: 90%;
}

.musement-mag-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.musement-mag-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.musement-mag-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
}

.view-all-link {
  font-size: 0.9rem;
  color: #00ca00;
  text-decoration: none;
  font-weight: 500;
}

.view-all-link:hover {
  color: #00cc00;
}

.musement-mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.musement-mag-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.musement-mag-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.mag-card-content {
  padding: 1rem;
}

.mag-card-content .category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.mag-card-content .category.enlighten-me {
  background: #00ca00;
}

.mag-card-content .category.take-me-away {
  background: #00cb00;
}

.mag-card-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #000000;
}

.mag-card-content p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.read-more-link {
  font-size: 0.9rem;
  color: #00ca00;
  text-decoration: none;
  font-weight: 500;
}

.read-more-link:hover {
  color: #00cc00;
}

/* Footer Section */
.footer {
  background: #fff;
  padding: 2rem 0;
  border-top: 1px solid #ddd;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-social, .footer-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social p, .footer-contact p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000000;
}

.contact-icons, .social-icons {
  display: flex;
  gap: 0.5rem;
}

.social-icon, .contact-icon {
  font-size: 1.2rem;
  color: #666;
  text-decoration: none;
}

.social-icon:hover, .contact-icon:hover {
  color: #00cc00;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-column {
  flex: 1;
  min-width: 150px;
  margin-bottom: 1rem;
}

.footer-column h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.3rem;
}

.footer-column ul li a {
  font-size: 0.8rem;
  color: #666;
  text-decoration: none;
}

.footer-column ul li a:hover {
  color: #00cc00;
}

.footer-column.preferences select {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.8rem;
  color: #000000;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #666;
}

.footer-legal {
  flex: 1;
}

.footer-affiliations {
  display: flex;
  gap: 1rem;
}

.footer-affiliations span {
  font-size: 0.8rem;
  color: #666;
}

.footer-made {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.footer-made p {
  font-size: 0.8rem;
  color: #666;
}

.footer-made .heart {
  color: #00ca00;
}

.footer-legal-links {
  display: flex;
  gap: 1rem;
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: #666;
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: #00cc00;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .header-search {
    order: 3;
    width: 100%;
    margin: 0.5rem 0;
  }

  .nav-links {
    order: 2;
    gap: 1rem;
  }

  .logo-container {
    order: 1;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .nav-link.cta {
    padding: 0.4rem 0.8rem;
  }

  .hero {
    height: 400px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .search-bar input {
    width: 90%;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .promo-card img {
    height: auto;
  }

  .promo-card-overlay {
    padding: 0.5rem;
  }

  .info-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .info-item {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .info-icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }

  .activity-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-links {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .musement-mag-grid {
    grid-template-columns: 1fr;
  }

  .musement-mag-card img {
    height: 150px;
  }

  .musement-mag-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .info-banner-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .info-banner-card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 0.5rem;
  }

  .nav-link {
    font-size: 0.85rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .tui-member {
    font-size: 0.65rem;
  }
}

