@import url('https://fonts.googleapis.com/css2?family=Gochi+Hand&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --primary-purple: #4a148c;
  --secondary-purple: #7b1fa2;
  --accent-yellow: #f5b041;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-black: #000000;
  --bg-white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .marker-font {
  font-family: 'Gochi Hand', cursive;
  font-weight: normal;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
header {
  background-color: var(--bg-black);
  color: var(--text-light);
  padding: 1rem 5%;
  position: relative;
}

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

.header-left {
  flex: 1;
}

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

.logo-img {
  max-height: 80px;
  object-fit: contain;
}

.header-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.user-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.login-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.95rem;
}

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.search-bar {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 0;
  padding: 6px 10px;
  width: 200px;
}

.search-bar input {
  border: none;
  outline: none;
  width: 100%;
  padding-left: 10px;
  font-family: 'Outfit', sans-serif;
}

/* Navigation */
.main-nav {
  background: linear-gradient(to bottom, #ffffff, #e0e0e0);
  border-bottom: 1px solid #ccc;
  position: relative;
  z-index: 100;
}

.main-nav > ul {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.main-nav > ul > li {
  border-right: 1px solid #ccc;
  position: relative;
}

.main-nav > ul > li:last-child {
  border-right: none;
}

.main-nav a {
  display: block;
  padding: 15px 25px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #000;
  text-transform: uppercase;
  transition: background 0.3s;
}

.main-nav > ul > li:hover > a {
  background: #f0f0f0;
}

.main-nav > ul > li:hover {
  z-index: 102; /* Ensures hovered tab is always above others */
}

/* Dropdown */
.has-dropdown .arrow {
  display: none; /* Removing arrow since screenshot doesn't have it */
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 220px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-radius: 12px;
  flex-direction: column;
  padding: 10px 0;
  z-index: 101;
}

.has-dropdown:hover .dropdown {
  display: flex;
}

.dropdown li {
  border-right: none !important;
  border-bottom: none;
  width: 100%;
  text-align: center;
}

.dropdown li:last-child {
  border-bottom: none;
}

.dropdown a {
  padding: 10px 20px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  color: #000;
}

.dropdown a:hover {
  background: transparent;
  color: #7a3e9d;
}

/* Hero Section / Slider */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #000;
}

.slides-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 10%;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.8; /* Slight dim for text readability */
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.hero-text {
  font-family: 'Gochi Hand', cursive;
  font-size: 4rem;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
  max-width: 600px;
  text-align: right;
  line-height: 1.2;
}

/* Yellow Guide Section */
.guide-section {
  background-color: #ffca28;
  padding: 60px 10%;
  display: flex;
  align-items: center;
  gap: 50px;
}

.guide-img-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.guide-img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.guide-content {
  flex: 1;
  color: #fff;
}

.guide-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  max-width: 450px;
}

.btn-white {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 30px;
  transition: transform 0.2s;
}

.btn-black {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 30px;
  border: 1px solid #fff;
  transition: transform 0.2s;
}

.btn-white:hover, .btn-black:hover {
  transform: scale(1.05);
}

/* Four Pillars Section */
.pillars-section {
  background: linear-gradient(to bottom, #7b1fa2, #4a148c);
  padding: 80px 5%;
  text-align: center;
  color: #fff;
}

.pillars-section h2 {
  font-size: 3.5rem;
  margin-bottom: 60px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.pillars-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.pillar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pillar-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.pillar h3 {
  font-family: 'Gochi Hand', cursive;
  font-size: 2rem;
  margin-bottom: 15px;
  height: 60px;
}

.pillar ul {
  list-style-type: none;
  text-align: left;
  margin-bottom: 30px;
  flex-grow: 1;
}

.pillar ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}

.pillar ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fff;
}

.btn-purple {
  background: #38006b;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  width: 100%;
  transition: background 0.3s;
}

.btn-purple:hover {
  background: #12005e;
}

/* Shop Section */
.shop-section {
  background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&q=80&w=1920');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 5%;
  text-align: center;
}

.shop-section h2 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 50px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.shop-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.product-card {
  background: rgba(255, 255, 255, 0.9);
  width: 280px;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.product-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 4px;
}

.product-label {
  display: inline-block;
  border: 1px solid #7b1fa2;
  color: #7b1fa2;
  font-size: 0.8rem;
  padding: 2px 8px;
  margin-bottom: 10px;
}

.product-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
  height: 50px;
  overflow: hidden;
}

.product-price {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-add-cart {
  background: #4a148c;
  color: #fff;
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}

.btn-add-cart:hover {
  background: #12005e;
}

/* Newsletter Section */
.newsletter-section {
  background: url('../images/093061_4003396cf6714e8cb6feacd2670dfa95~mv2.png') no-repeat center center;
  background-size: cover;
  padding: 80px 10%;
  text-align: center;
  color: #fff;
  position: relative;
  margin-top: 50px;
}

.newsletter-logo-wrapper {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.newsletter-logo-wrapper img {
  width: 60px;
}

.newsletter-section h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.newsletter-section p {
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 20px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.form-group {
  flex: 1;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: none;
  border-bottom: 2px solid #fff;
  background: rgba(255,255,255,0.1);
  color: #fff;
  outline: none;
}

.form-group input:focus {
  background: rgba(255,255,255,0.2);
}

/* Footer */
footer {
  background: #000;
  color: #fff;
  padding: 60px 10% 20px;
}

.footer-top {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.social-icon:hover {
  transform: scale(1.1);
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #333;
  padding-top: 40px;
}

.footer-col {
  flex: 1;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: #ccc;
  transition: color 0.3s;
}

.footer-col ul a:hover {
  color: #fff;
}

.footer-col.copyright {
  color: #ccc;
  font-size: 0.9rem;
}

/* Floating Chat */
.floating-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #4a148c;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 100;
  transition: transform 0.3s;
}

.floating-chat:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
  .pillars-grid {
    flex-wrap: wrap;
  }
  .pillar {
    flex-basis: calc(50% - 30px);
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    gap: 20px;
  }
  .guide-section {
    flex-direction: column;
  }
  .hero-text {
    font-size: 3rem;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .footer-columns {
    flex-direction: column;
    gap: 30px;
  }
}

/* Book Trips Section */
.book-trips-section {
    position: relative;
    background-image: url('../images/11062b_236d31fe9fa44c61bdd35768507922ed~mv2.jpeg');
    background-size: cover;
    background-position: center;
    padding: 60px 5%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.book-trips-title-container {
    background: #000;
    padding: 10px 30px;
    margin-bottom: 40px;
    display: inline-block;
}
.book-trips-title {
    color: #fff;
    font-family: 'Gochi Hand', cursive;
    font-size: 3.5rem;
    margin: 0;
}
.trip-horizontal-card {
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    padding: 20px;
    max-width: 900px;
    width: 100%;
    gap: 30px;
}
.trip-thumb {
    width: 120px;
    height: 120px;
    object-fit: cover;
}
.trip-details {
    flex: 1;
}
.trip-tag {
    border: 1px solid #000;
    display: inline-block;
    padding: 2px 10px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}
.trip-date {
    font-weight: bold;
    margin-bottom: 5px;
}
.trip-name {
    font-size: 1.3rem;
    font-weight: bold;
}

/* Join Events Section */
.join-events-section {
    background: linear-gradient(to bottom, #7a3e9d, #f4f4f4);
    padding: 60px 5%;
    text-align: center;
}
.join-events-title {
    font-family: 'Gochi Hand', cursive;
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 50px;
}
.join-events-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.join-event-card {
    background: #e6e0ea;
    width: 320px;
    text-align: left;
    display: flex;
    flex-direction: column;
}
.join-event-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.join-event-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.join-event-countdown {
    background: #fff;
    color: #7a3e9d;
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    width: fit-content;
}
.join-event-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}
.join-event-meta {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
}
.join-event-link {
    font-size: 0.9rem;
    color: #555;
    text-decoration: underline;
    margin-bottom: 20px;
    display: inline-block;
}
.join-event-btn {
    background: #500e82;
    color: #fff;
    border: none;
    padding: 12px;
    font-weight: bold;
    cursor: pointer;
    margin-top: auto;
    border-radius: 20px;
}
.join-events-actions {
    margin-top: 40px;
}
.btn-load-more {
    background: transparent;
    border: 1px solid #333;
    padding: 10px 40px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
}

/* Community Meetups Section */
.community-meetups-section {
    background: linear-gradient(to bottom, #fdf1a9, #fff);
    padding: 60px 5%;
    text-align: center;
}
.community-meetups-title {
    font-family: 'Gochi Hand', cursive;
    font-size: 3.5rem;
    margin-bottom: 40px;
}
.community-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.carousel-images {
    display: flex;
    gap: 10px;
    overflow: hidden;
}
.carousel-images img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}
.carousel-images img.half-img-left {
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
    margin-left: -75px;
}
.carousel-images img.half-img-right {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    margin-right: -75px;
}
.carousel-arrow {
    background: transparent;
    border: none;
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 0 5px rgba(0,0,0,0.3);
    cursor: pointer;
    padding: 0 20px;
}
.community-desc {
    max-width: 600px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
    line-height: 1.5;
}
.btn-community {
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    padding: 15px 40px;
    display: inline-block;
    font-weight: bold;
}

@media (max-width: 768px) {
    .trip-horizontal-card {
        flex-direction: column;
        text-align: center;
    }
    .carousel-images img {
        width: 100px;
        height: 100px;
    }
    .carousel-images img.half-img-left {
        margin-left: -50px;
    }
    .carousel-images img.half-img-right {
        margin-right: -50px;
    }
}
