/* ============================================================
   TRAWEL.IN - COMPLETE WORKING CSS
   Save as: style.css
   ============================================================ */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Belleza&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');

/* Brand tokens - centralised */
:root {
  --brand-deep-ocean: #0B5280;
  --brand-cloud-white: #FFFFFF;
  --brand-sunset-gold: #D4A574;
  --brand-cool-slate: #475569;
  --brand-ocean-teal: #2A9D8F;
  --brand-terracotta: #E07A5F;
  --brand-forest-green: #6A994E;
  --brand-text: #111827;
  --brand-muted: #6B7280;
  --brand-radius: 14px;
  --brand-radius-sm: 8px;
  --max-width: 1120px;
  --page-bg: linear-gradient(135deg, #FAF9F6 0%, #FFFFFF 100%);
  --brand-font-heading: 'Belleza', 'Palatino Linotype', 'Book Antiqua', Georgia, serif;
  --brand-font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--brand-font-body);
  background: var(--page-bg);
  color: var(--brand-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--brand-font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 0.75rem 0;
  color: var(--brand-deep-ocean);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin: 0 0 1rem 0;
  line-height: 1.7;
}

a {
  color: var(--brand-deep-ocean);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--brand-ocean-teal);
}

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

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.75rem;
}

.col-lg-4, .col-lg-5, .col-md-6 {
  padding: 0 0.75rem;
  width: 100%;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
}

@media (min-width: 992px) {
  .col-lg-4 { flex: 0 0 33.333%; max-width: 33.333%; }
  .col-lg-5 { flex: 0 0 41.666%; max-width: 41.666%; }
}

.d-flex { display: flex !important; }
.d-none { display: none !important; }
.align-items-center { align-items: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-center { justify-content: center !important; }
.flex-column { flex-direction: column !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.text-center { text-align: center !important; }

.me-auto { margin-right: auto !important; }
.me-lg-0 { margin-right: 0 !important; }

.order-1 { order: 1; }
.order-2 { order: 2; }

@media (min-width: 992px) {
  .order-lg-1 { order: 1 !important; }
  .order-lg-2 { order: 2 !important; }
  .text-lg-start { text-align: left !important; }
  .align-items-lg-start { align-items: flex-start !important; }
}

.gy-4 > * { margin-bottom: 1.5rem; }
.gy-5 > * { margin-bottom: 3rem; }

.img-fluid {
  max-width: 100%;
  height: auto;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 997;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  
  box-shadow: 0 2px 20px rgba(11, 82, 128, 0.1);
}

.logo h1 {
  font-size: 1.75rem;
  margin: 0;
  color: var(--brand-deep-ocean);
}

.navbar {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 2rem;
}

.navbar ul {
  display: flex;
  gap: 2rem;
}

.navbar a {
  color: var(--brand-deep-ocean);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0;
}

.navbar a:hover {
  color: var(--brand-ocean-teal);
}

.mobile-nav-toggle {
  display: none;
}

.btn-book-a-table {
  background: var(--brand-ocean-teal);
  color: var(--brand-cloud-white);
  padding: 0.25rem .75rem;
  border-radius: var(--brand-radius-sm);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(42, 157, 143, 0.2);
  display: inline-block;
}

.btn-book-a-table:hover {
  background: var(--brand-deep-ocean);
  color: var(--brand-cloud-white);
  transform: translateY(-2px);
}

/* ============================================================
   SECTIONS
   ============================================================ */

section {
  padding: 1.5rem 0;
  display: block !important;
  visibility: visible !important;
}

.section-bg {
  background: rgba(250, 249, 246, 0.5);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--brand-muted);
}

.section-header p span {
  color: var(--brand-sunset-gold);
  font-weight: 600;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 100vh;
  padding: 8rem 0 4rem;
  display: flex !important;
  align-items: center;
}

.hero h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.1rem;
  color: var(--brand-muted);
  margin-bottom: 2rem;
}

.btn-watch-video {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--brand-deep-ocean);
  font-weight: 600;
}

.btn-watch-video i {
  font-size: 2rem;
  color: var(--brand-ocean-teal);
}

.continuous-scroll-container {
  width: 100%;
  overflow: hidden;
  border-radius: var(--brand-radius);
}

.scroll-content {
  display: flex;
  flex-direction: column;
  animation: continuousScroll 20s linear infinite;
}

.scroll-image {
  width: 100%;
  border-radius: var(--brand-radius);
}

@keyframes continuousScroll {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-50%); }
}

/* ============================================================
   PARTNERS / LOGO CAROUSEL
   ============================================================ */

.partners {
  padding: 4rem 0;
  background: var(--brand-cloud-white);
  overflow: hidden;
}

.logo-carousel {
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
}

.logo-track {
  display: flex;
  animation: scroll 60s linear infinite;
  width: fit-content;
}

.logo-item {
  flex: 0 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  max-height: 60px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: opacity 0.3s ease;
}

.logo-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   THEMES
   ============================================================ */

.themes {
  padding: 4rem 0;
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.theme-card {
  background: var(--brand-cloud-white);
  border-radius: var(--brand-radius);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
}

.theme-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(42, 157, 143, 0.15);
  border-color: var(--brand-ocean-teal);
}

.theme-card i {
  font-size: 3rem;
  color: var(--brand-ocean-teal);
  margin-bottom: 1rem;
}

/* ============================================================
   SEARCH FILTER
   ============================================================ */

.search-filter {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--brand-deep-ocean) 0%, var(--brand-ocean-teal) 100%);
}

.search-box h3 {
  color: var(--brand-cloud-white);
  text-align: center;
  margin-bottom: 2rem;
}

.search-form {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 1rem;
  background: var(--brand-cloud-white);
  padding: 1.5rem;
  border-radius: var(--brand-radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.search-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-group i {
  position: absolute;
  left: 1rem;
  color: var(--brand-muted);
  pointer-events: none;
}

.search-input-group input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  border: 2px solid #e5e7eb;
  border-radius: var(--brand-radius-sm);
  font-size: 1rem;
}

.search-input-group input:focus,
.filter-select:focus {
  outline: none;
  border-color: var(--brand-ocean-teal);
}

.filter-select {
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: var(--brand-radius-sm);
  font-size: 1rem;
  background: var(--brand-cloud-white);
  width: 100%;
}

.search-btn {
  padding: 0.875rem 2rem;
  background: var(--brand-ocean-teal);
  color: var(--brand-cloud-white);
  border-radius: var(--brand-radius-sm);
  font-weight: 600;
  white-space: nowrap;
}

.search-btn:hover {
  background: var(--brand-deep-ocean);
}

/* ============================================================
   MENU / RESORTS TABS
   ============================================================ */

.menu {
  padding: 4rem 0;
}

.nav-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  padding: 0;
}

.nav-link {
  padding: 0.75rem 1.5rem;
  background: var(--brand-cloud-white);
  border: 2px solid #e5e7eb;
  border-radius: var(--brand-radius-sm);
  color: var(--brand-text);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
}

.nav-link:hover {
  border-color: var(--brand-ocean-teal);
  color: var(--brand-ocean-teal);
}

.nav-link.active,
.nav-link.show {
  background: var(--brand-ocean-teal);
  color: var(--brand-deep-ocean) !important;
  border-color: var(--brand-ocean-teal);
}

.nav-link h4 {
  margin: 0;
  font-size: 1rem;
  color: inherit;
  font-weight: 500;
}

.tab-content {
  min-height: 400px;
}

.tab-pane {
  display: none !important;
}

.tab-pane.active,
.tab-pane.show {
  display: block !important;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-header {
  margin-bottom: 3rem;
}

.tab-header p {
  font-size: 0.95rem;
  color: var(--brand-ocean-teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tab-header h3 {
  font-size: 2rem;
  margin: 0;
}

/* Menu Cards */
.menu-item {
  display: block;
}

.menu-card {
  background: var(--brand-cloud-white);
  border-radius: var(--brand-radius);
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--brand-ocean-teal);
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.menu-header h4 {
  font-size: 1.35rem;
  margin: 0;
  flex: 1;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.rating i {
  color: var(--brand-sunset-gold);
  font-size: 0.85rem;
}

.rating span {
  margin-left: 0.35rem;
  font-weight: 600;
}

.ingredients {
  color: var(--brand-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.package-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-muted);
  font-size: 0.9rem;
}

.duration i {
  color: var(--brand-ocean-teal);
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-deep-ocean);
}

.package-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.include-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  background: rgba(42, 157, 143, 0.1);
  border-radius: var(--brand-radius-sm);
  font-size: 0.85rem;
  color: var(--brand-deep-ocean);
}

.include-item i {
  color: var(--brand-ocean-teal);
}

.package-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

.btn-view-details,
.btn-customize {
  flex: 1;
  padding: 0.75rem;
  border-radius: var(--brand-radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.btn-view-details {
  background: var(--brand-ocean-teal);
  color: var(--brand-cloud-white);
}

.btn-view-details:hover {
  background: var(--brand-deep-ocean);
}

.btn-customize {
  background: transparent;
  color: var(--brand-ocean-teal);
  border: 2px solid var(--brand-ocean-teal);
}

.btn-customize:hover {
  background: var(--brand-ocean-teal);
  color: var(--brand-cloud-white);
}

.package-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.badge {
  padding: 0.35rem 0.85rem;
  border-radius: var(--brand-radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}





/* ============================================================
   GALLERY
   ============================================================ */

.gallery {
  padding: 4rem 0;
}

.swiper-wrapper {
  display: flex;
  gap: 1rem;
}

.swiper-slide {
  flex-shrink: 0;
}

.swiper-slide img {
  width: 100%;
  border-radius: var(--brand-radius);
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact {
  padding: 4rem 0;
}

.info-item {
  background: var(--brand-cloud-white);
  padding: 2rem;
  border-radius: var(--brand-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-item .icon {
  font-size: 2.5rem;
  color: var(--brand-ocean-teal);
  margin-right: 1.5rem;
}

.info-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.info-item p {
  color: var(--brand-muted);
  margin: 0 0 0.5rem 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 991px) {
  .navbar { display: none; }
  .mobile-nav-toggle { display: block; }
  .search-form { grid-template-columns: 1fr; }
  .hero h2 { font-size: 2.25rem; }
  .col-lg-4, .col-lg-5 { flex: 0 0 100%; max-width: 100%; }
  .order-1 { order: 2; }
  .order-2 { order: 1; }
}

@media (max-width: 768px) {
  .hero h2 { font-size: 2rem; }
  .section-header h2 { font-size: 2rem; }
  .package-actions { flex-direction: column; }
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background: linear-gradient(135deg, #2c4964 0%, #1e3a5f 100%);
  padding: 50px 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer .icon {
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
  color: var(--brand-sunset-gold);
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

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

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: var(--brand-sunset-gold);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer .copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}