/* Dark Vintage Travel Companion Theme */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark-bg: #1a1410;
  --card-bg: #2a2018;
  --accent-gold: #d4a574;
  --accent-dark: #8b6914;
  --text-light: #f5f1e8;
  --text-muted: #b8a88a;
  --primary-btn: #d4a574;
  --hover-btn: #c9985b;
  --secondary-btn: #2a2018;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, rgba(26, 20, 16, 0.92), rgba(60, 40, 20, 0.92)), url('https://images.unsplash.com/photo-1488479829178-89b4f5e1af38?w=1200&h=800&fit=crop');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  line-height: 1.6;
  scroll-behavior: smooth;
  transition: background-color 0.3s ease;
  min-height: 100vh;
}

body.light-mode {
  --dark-bg: #f5f1e8;
  --card-bg: #ffffff;
  --text-light: #1a1410;
  --text-muted: #666;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(238, 205, 184, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(164, 126, 126, 0.3);
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--accent-gold);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-gold);
}

.nav-link:hover::after {
  width: 100%;
}

.dark-toggle {
  background: rgba(212, 165, 116, 0.2);
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 20px;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dark-toggle:hover {
  background: var(--accent-gold);
  color: var(--dark-bg);
}

/* PAGES */
.page {
  display: none;
  animation: fadeIn 0.5s ease;
}

.page.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* HERO SECTION */
.hero {
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
}

.hero-content {
  text-align: center;
  z-index: 2;
  animation: slideDown 0.8s ease;
}

.hero-title {
  font-size: 4rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--dark-bg);
  border: 2px solid var(--accent-gold);
}

.btn-primary:hover {
  background: var(--hover-btn);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
  background: var(--accent-gold);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

.btn-small {
  padding: 8px 20px;
  font-size: 14px;
  margin-top: 10px;
}

/* STEPS SECTION */
.steps-section {
padding: 80px 40px;
}

.steps-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}

.steps-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-gold);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(212, 165, 116, 0.3);
  transition: all 0.3s ease;
  animation: zoomIn 0.6s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-gold);
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.step-card h3 {
  color: var(--accent-gold);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* STATS SECTION */
.stats-section {
  background: linear-gradient(135deg, rgba(26, 20, 16, 0.9), rgba(90, 70, 30, 0.9)), url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=800&h=400&fit=crop');
  background-size: cover;
  background-attachment: fixed;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-box {
  background: rgba(42, 32, 24, 0.8);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--accent-gold);
}

.stat-box h3 {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.stat-box p {
  color: var(--text-muted);
}

/* PAGE HEADER */
.page-header {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  font-size: 3.5rem;
  color: var(--accent-gold);
  text-align: center;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-light);
  font-size: 1.2rem;
  text-align: center;
  z-index: 3;
}

/* DESTINATIONS GRID */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.destination-card {
  height: 300px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* fallback styling for cards with no images */
.destination-card.no-image {
  background: linear-gradient(135deg, rgba(26,20,16,0.6), rgba(40,30,22,0.6));
  display: flex;
  align-items: center;
  justify-content: center;
}

.destination-card:hover {
  transform: translateY(-12px) scale(1.06) rotateZ(-1deg);
  box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
}

/* image element to ensure reliable loading */
.destination-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

/* Ensure images always visible and not suppressed by other rules */
.destination-card {
  background: transparent !important;
}

.destination-img {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  z-index: 1;
  pointer-events: none;
}

.destination-info {
  background: transparent;
  padding: 12px 16px;
  border-radius: 6px;
  opacity: 1;
  transform: translateY(0);
  transition: none;
  pointer-events: auto;
}

.destination-overlay h3 {
  font-size: 2.2rem;
  color: var(--accent-gold);
  margin-bottom: 8px;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.destination-overlay p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 12px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.destination-btn {
  padding: 12px 30px;
  background: var(--accent-gold);
  border: 2px solid var(--accent-gold);
  border-radius: 25px;
  color: var(--dark-bg);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.destination-btn:hover {
  background: transparent;
  color: var(--accent-gold);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.5);
}

.destination-btn:active {
  transform: scale(0.98);
}

/* TIPS CONTAINER */
.tips-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.tip-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid var(--accent-gold);
  transition: all 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.tip-header {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.tip-card ul {
  list-style: none;
}

.tip-card li {
  padding: 8px 0;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

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

/* DAILY TIP SECTION */
.daily-tip {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(90, 70, 30, 0.2));
  padding: 60px 40px;
  text-align: center;
  border-top: 2px solid var(--accent-gold);
  border-bottom: 2px solid var(--accent-gold);
  margin: 60px 0;
}

.daily-tip h2 {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

#tipText {
  font-size: 1.2rem;
  color: var(--text-light);
  margin: 20px 0 30px;
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* MAP SECTION */
.map-section {
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

iframe {
  width: 100%;
  height: 500px;
  border-radius: 10px;
  border: 2px solid var(--accent-gold);
}

/* FILTER SECTION */
.filter-section {
  padding: 40px;
  text-align: center;
}

.filter-select {
  padding: 12px 20px;
  border: 2px solid var(--accent-gold);
  background: var(--card-bg);
  color: var(--accent-gold);
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-select:hover,
.filter-select:focus {
  box-shadow: 0 0 10px rgba(212, 165, 116, 0.4);
  background: rgba(212, 165, 116, 0.1);
}

/* COMPANIONS GRID */
.companions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.companion-card {
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 165, 116, 0.3);
  animation: zoomIn 0.6s ease;
}

.companion-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 35px rgba(212, 165, 116, 0.2);
}

.companion-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.companion-card h3 {
  color: var(--accent-gold);
  margin: 20px 0 10px;
  font-size: 1.3rem;
}

.companion-card .location {
  color: var(--accent-gold);
  font-weight: 500;
}

.companion-card .interest {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 10px 0;
}

.companion-card .rating {
  color: #ffd700;
  margin: 15px 0;
  font-weight: 500;
}

.companion-card .hidden {
  display: none;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, rgba(26, 20, 16, 0.95), rgba(60, 40, 20, 0.95)), url('https://images.unsplash.com/photo-1488479829178-89b4f5e1af38?w=800&h=400&fit=crop');
  background-size: cover;
  background-attachment: fixed;
  padding: 60px 40px;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 50px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial {
  background: rgba(42, 32, 24, 0.8);
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid var(--accent-gold);
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateX(10px);
}

.testimonial p {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 15px;
}

.testimonial h4 {
  color: var(--accent-gold);
  margin-top: 10px;
}

/* FOOTER */
.footer {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-top: 2px solid var(--accent-gold);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.footer-section h4 {
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.footer-section p {
  color: var(--text-muted);
  margin-bottom: 10px;
}

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

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

.footer-section ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(212, 165, 116, 0.2);
  padding-top: 20px;
  color: var(--text-muted);
}

/* MODALS */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  border: 2px solid var(--accent-gold);
  position: relative;
  animation: zoomIn 0.3s ease;
}

.modal-content.success {
  text-align: center;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: var(--accent-gold);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s ease;
}

.close:hover {
  color: var(--hover-btn);
}

.modal-content h2 {
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid var(--accent-gold);
  background: rgba(212, 165, 116, 0.1);
  color: var(--text-light);
  border-radius: 5px;
  font-family: inherit;
}

.modal-content input::placeholder,
.modal-content textarea::placeholder {
  color: var(--text-muted);
}

.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
  outline: none;
  border-color: var(--hover-btn);
  background: rgba(212, 165, 116, 0.2);
}

.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
  outline: none;
  border-color: var(--hover-btn);
  background: rgba(212, 165, 116, 0.2);
}

/* Old Style Sections (for backwards compatibility)*/
.how {
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid var(--accent-gold);
  transition: all 0.3s ease;
  color: var(--text-light);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.explore {
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.explore h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 40px;
}

.explore select {
  display: block;
  margin: 0 auto 40px;
  padding: 12px 20px;
  border: 2px solid var(--accent-gold);
  background: var(--card-bg);
  color: var(--accent-gold);
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
}

.companions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.companion {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(212, 165, 116, 0.3);
  transition: all 0.3s ease;
}

.companion:hover {
  transform: translateY(-10px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 35px rgba(212, 165, 116, 0.2);
}

.companion img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 2px solid var(--accent-gold);
}

.companion h3 {
  color: var(--accent-gold);
  margin: 15px 0;
  font-size: 1.3rem;
}

.companion p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.companion span {
  color: #ffd700;
  display: block;
  margin: 10px 0;
}

.map {
  padding: 60px 40px;
}

.map h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 40px;
}

.tips {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(90, 70, 30, 0.2));
  padding: 60px 40px;
  text-align: center;
  border-top: 2px solid var(--accent-gold);
  border-bottom: 2px solid var(--accent-gold);
  margin: 60px 0;
}

.tips h2 {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

#tipText {
  font-size: 1.2rem;
  color: var(--text-light);
  margin: 20px 0 30px;
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stats {
  background: linear-gradient(135deg, rgba(26, 20, 16, 0.9), rgba(90, 70, 30, 0.9)), url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=800&h=400&fit=crop');
  background-size: cover;
  background-attachment: fixed;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.stats div {
  background: rgba(42, 32, 24, 0.8);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--accent-gold);
}

.stats h3 {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.stats p {
  color: var(--text-muted);
}

.testimonials {
  background: linear-gradient(135deg, rgba(26, 20, 16, 0.95), rgba(60, 40, 20, 0.95)), url('https://images.unsplash.com/photo-1488479829178-89b4f5e1af38?w=800&h=400&fit=crop');
  background-size: cover;
  background-attachment: fixed;
  padding: 60px 40px;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 50px;
}

footer {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  text-align: center;
  border-top: 2px solid var(--accent-gold);
  color: var(--text-muted);
}

/* LOGIN PAGE STYLES */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(26, 20, 16, 0.95), rgba(60, 40, 20, 0.95)), url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1200&h=600&fit=crop');
  background-attachment: fixed;
  background-size: cover;
}

.login-container {
  background: rgba(42, 32, 24, 0.95);
  padding: 50px;
  border-radius: 15px;
  width: 100%;
  max-width: 450px;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideDown 0.6s ease;
}

.login-container h1 {
  text-align: center;
  color: var(--accent-gold);
  margin-bottom: 10px;
  font-size: 2rem;
}

.login-container .subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: var(--accent-gold);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid rgba(212, 165, 116, 0.3);
  background: rgba(212, 165, 116, 0.05);
  color: var(--text-light);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(212, 165, 116, 0.1);
  box-shadow: 0 0 10px rgba(212, 165, 116, 0.3);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.login-btn {
  width: 100%;
  padding: 14px;
  background: var(--accent-gold);
  color: var(--dark-bg);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.login-btn:hover {
  background: var(--hover-btn);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 165, 116, 0.4);
}

.login-footer {
  text-align: center;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.login-footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.login-footer a {
  color: var(--accent-gold);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.login-footer a:hover {
  text-decoration: underline;
}

/* PROFILE PAGE STYLES */
.profile-page {
  padding: 40px 20px;
}

.profile-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(42, 32, 24, 0.8);
  border-radius: 15px;
  border: 2px solid var(--accent-gold);
}

.profile-header h1 {
  color: var(--accent-gold);
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.profile-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.profile-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(42, 32, 24, 0.85);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid var(--accent-gold);
  animation: fadeIn 0.6s ease;
}

.profile-section {
  margin-bottom: 35px;
}

.profile-section h2 {
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-gold);
}

.profile-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.profile-input {
  padding: 12px 15px;
  border: 2px solid rgba(212, 165, 116, 0.3);
  background: rgba(212, 165, 116, 0.05);
  color: var(--text-light);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.profile-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(212, 165, 116, 0.1);
  box-shadow: 0 0 10px rgba(212, 165, 116, 0.3);
}

.profile-input::placeholder {
  color: var(--text-muted);
}

.profile-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  justify-content: center;
}

.save-btn, .logout-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.save-btn {
  background: var(--accent-gold);
  color: var(--dark-bg);
}

.save-btn:hover {
  background: var(--hover-btn);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 165, 116, 0.4);
}

.logout-btn {
  background: transparent;
  color: #ff6b6b;
  border: 2px solid #ff6b6b;
}

.logout-btn:hover {
  background: #ff6b6b;
  color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
    flex-wrap: wrap;
  }

  .nav-links {
    gap: 15px;
    flex-wrap: wrap;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .steps-section {
    padding: 40px 20px;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .destinations-grid,
  .companions-grid,
  .companions {
    padding: 30px 20px;
    grid-template-columns: 1fr;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}