/* Tripszi About Page - Complete Styles with SocialBlazor Theme */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");

:root {
  /* SocialBlazor Color Theme */
  --theme-color: #1E74FD;
  --theme-color-rgb: 30, 116, 253;
  --theme-color-shade: #1560d6;
  --theme-color-tint: #3582fd;

  /* Bootstrap Colors from SocialBlazor */
  --bs-primary: #1E74FD;
  --bs-secondary: #673BB7;
  --bs-success: #10d876;
  --bs-info: #2754e6;
  --bs-warning: #FE9431;
  --bs-danger: #f32323;

  /* Main Theme Colors */
  --background: #f6f7fc;
  --foreground: #212529;
  --card: #ffffff;
  --card-foreground: #212529;
  --primary: #1E74FD;
  --primary-foreground: #ffffff;
  --secondary: #f6f7fc;
  --secondary-foreground: #212529;
  --muted: #f5f5f5;
  --muted-foreground: #6c757d;
  --accent: #673BB7;
  --accent-foreground: #ffffff;
  --destructive: #f32323;
  --border: #e9ecef;
  --input: #e9ecef;
  --radius: 0.5rem;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #1E74FD 0%, #673BB7 100%);
  --gradient-primary: linear-gradient(135deg, var(--theme-color), var(--theme-color-shade));
  --gradient-gold: linear-gradient(to right, #f2994a, #f2c94c);
  --gradient-red: linear-gradient(to right, #e44d26, #f16529);
  --gradient-blue: linear-gradient(to right, #0575e6, #021b79);

  /* Shadows */
  --shadow-soft: 0 4px 20px -4px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 8px 40px -8px rgba(30, 116, 253, 0.25);
  --shadow-accent: 0 8px 30px -8px rgba(103, 59, 183, 0.35);

  /* Fonts */
  --font-display: 'Montserrat', 'Outfit', sans-serif;
  --font-body: 'Roboto', 'Inter', sans-serif;

  /* Background Colors */
  --bg-lightblue: #e8f1fa;
  --bg-lightblue2: #f7f9fd;
  --bg-lightgreen: #f2faf6;
  --bg-greyblue: #f6f7fc;
  --bg-greylight: #f5f5f5;
  --bg-lightgrey: #f9f9f9;
}

/* Utilities - SocialBlazor Style */
.text-gradient { background: var(--gradient-hero); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-current { color: var(--theme-color) !important; }
.text-success { color: var(--bs-success) !important; }
.text-warning { color: var(--bs-warning) !important; }
.text-danger { color: var(--bs-danger) !important; }

/* Background Utilities */
.bg-gradient-hero { background: var(--gradient-hero); }
.bg-gradient-primary { background: var(--gradient-primary); }
.bg-gradient-gold { background: var(--gradient-gold); }
.bg-current { background-color: var(--theme-color) !important; }
.bg-lightblue { background-color: var(--bg-lightblue) !important; }
.bg-lightblue2 { background-color: var(--bg-lightblue2) !important; }
.bg-lightgreen { background-color: var(--bg-lightgreen) !important; }
.bg-greyblue { background-color: var(--bg-greyblue) !important; }
.bg-greylight { background-color: var(--bg-greylight) !important; }
.bg-lightgrey { background-color: var(--bg-lightgrey) !important; }

/* Shadow Utilities */
.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-glow { box-shadow: var(--shadow-glow); }
.shadow-accent { box-shadow: var(--shadow-accent); }

/* Buttons - SocialBlazor Style */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: var(--radius); font-weight: 600; transition: all 0.3s ease; cursor: pointer; font-family: var(--font-display); letter-spacing: 0.3px; }
.btn-primary { background: var(--theme-color); color: #fff; border: none; }
.btn-primary:hover { background: var(--theme-color-shade); transform: translateY(-1px); }
.btn-secondary { background: var(--accent); color: #fff; }
.btn-secondary:hover { opacity: 0.9; }
.btn-success { background: var(--bs-success); color: #fff; }
.btn-success:hover { opacity: 0.9; }
.btn-warning { background: var(--bs-warning); color: #fff; }
.btn-warning:hover { opacity: 0.9; }
.btn-danger { background: var(--bs-danger); color: #fff; }
.btn-danger:hover { opacity: 0.9; }
.btn-hero { background: var(--gradient-hero); color: #fff; box-shadow: var(--shadow-glow); }
.btn-hero:hover { transform: translateY(-2px); box-shadow: var(--shadow-accent); }
.btn-outline { border: 2px solid var(--theme-color); background: transparent; color: var(--theme-color); }
.btn-outline:hover { background: var(--theme-color); color: #fff; }
.btn-outline-secondary { border: 2px solid var(--accent); background: transparent; color: var(--accent); }
.btn-outline-secondary:hover { background: var(--accent); color: #fff; }
.btn-ghost { background: transparent; color: var(--foreground); }
.btn-ghost:hover { background: var(--secondary); }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; border-radius: calc(var(--radius) + 2px); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-round { border-radius: 50px; }

/* Cards - SocialBlazor Style */
.card { background: var(--card); border: 1px solid var(--border); border-radius: 10px; box-shadow: var(--shadow-soft); transition: all 0.3s ease; }
.card:hover { border-color: rgba(30, 116, 253, 0.3); box-shadow: 0 8px 25px -5px rgba(30, 116, 253, 0.15); }
.card-content { padding: 1.5rem; }

/* Grid */
.grid { display: grid; gap: 1.5rem; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 768px) { .grid-cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-cols-3 { grid-template-columns: repeat(3, 1fr); } }

/* Hero Section */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.5), transparent); }
.hero-overlay-bottom { position: absolute; bottom: 0; left: 0; right: 0; height: 128px; background: linear-gradient(to top, var(--background), transparent); }
.hero-content { position: relative; z-index: 10; padding-top: 80px; width: 100%; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; width: 100%; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 400px; } }
.hero-text { max-width: 672px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.75rem); color: white; margin-bottom: 1.5rem; }
.hero p { font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 600px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 2rem; }
.hero-stat { display: flex; align-items: center; gap: 0.75rem; }
.hero-stat-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; color: white; }
.hero-stat-value { font-size: 1.5rem; font-weight: 700; color: white; }
.hero-stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.6); }

/* Login Card */
.login-card-container { display: flex; justify-content: center; }
.login-card { background: #ffffff; border-radius: 16px; padding: 2rem; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); width: 100%; max-width: 400px; }
.login-input { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: 8px; font-size: 1rem; transition: all 0.3s; background: #ffffff; }
.login-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(30, 116, 253, 0.1); }
.login-input::placeholder { color: var(--muted-foreground); }
@keyframes spin { to { transform: rotate(360deg); } }

/* Sections */
section { padding: 6rem 0; }
.section-header { text-align: center; max-width: 768px; margin: 0 auto 4rem; }
.section-title { font-size: clamp(1.875rem, 4vw, 2.25rem); margin-bottom: 1rem; }
.section-description { font-size: 1.125rem; color: var(--muted-foreground); }

/* Animations */
@keyframes slide-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.animate-slide-up { animation: slide-up 0.6s ease-out forwards; }
.animate-fade-in { animation: fade-in 0.5s ease-out forwards; }
.transition-smooth { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }

/* Feature Card - SocialBlazor Style */
.feature-card { cursor: pointer; }
.feature-card:hover { border-color: rgba(30, 116, 253, 0.3); }
.feature-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--gradient-hero); display: flex; align-items: center; justify-content: center; color: var(--primary-foreground); margin-bottom: 1.25rem; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.feature-card:hover .feature-icon { transform: scale(1.1); }
.feature-title { font-size: 1.25rem; margin-bottom: 0.5rem; font-family: var(--font-display); }
.feature-description { color: var(--muted-foreground); }

/* Destination Card - SocialBlazor Style */
.destination-card { position: relative; aspect-ratio: 4/5; border-radius: 16px; overflow: hidden; cursor: pointer; }
.destination-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.destination-card:hover img { transform: scale(1.1); }
.destination-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2), transparent); }
.destination-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; color: white; }
.destination-hover { position: absolute; inset: 0; background: rgba(30, 116, 253, 0.2); opacity: 0; transition: opacity 0.3s; }
.destination-card:hover .destination-hover { opacity: 1; }

/* Navbar */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: #ffffff; border-bottom: 1px solid var(--border); }
nav .nav-container { display: flex; align-items: center; justify-content: space-between; height: 64px; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
nav .logo { display: flex; align-items: center; gap: 0.5rem; font-size: 1.25rem; font-weight: 700; font-family: var(--font-display); }
nav .logo-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--gradient-hero); display: flex; align-items: center; justify-content: center; color: var(--primary-foreground); }
nav .nav-links { display: none; gap: 0.25rem; }
@media (min-width: 768px) { nav .nav-links { display: flex; } }
nav .nav-link { padding: 0.5rem 1rem; border-radius: 0.5rem; display: flex; align-items: center; gap: 0.5rem; transition: all 0.3s; }
nav .nav-link:hover { background: var(--secondary); }
nav .nav-link.active { background: var(--secondary); }
nav .mobile-menu-btn { display: block; padding: 0.5rem; border-radius: 0.5rem; }
@media (min-width: 768px) { nav .mobile-menu-btn { display: none; } }

/* Mobile Menu */
.mobile-menu { display: none; background: var(--card); border-bottom: 1px solid var(--border); padding: 1rem; }
.mobile-menu.active { display: block; animation: slide-up 0.3s ease-out; }
.mobile-menu-link { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem; border-radius: 12px; margin-bottom: 0.5rem; transition: all 0.3s; }
.mobile-menu-link:hover, .mobile-menu-link.active { background: var(--secondary); }

/* Footer */
footer { background: rgba(250, 245, 240, 0.5); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(6, 1fr); } }
.footer-brand { grid-column: span 2; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link { color: var(--muted-foreground); transition: color 0.3s; }
.footer-link:hover { color: var(--foreground); }
.footer-bottom { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); text-align: center; color: var(--muted-foreground); font-size: 0.875rem; }

/* Responsive */
@media (max-width: 767px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  section { padding: 3rem 0; }
  .section-title { font-size: 1.875rem; }
}

