/*
 * Main CSS for Curated Micro-Vacation Planning Agency
 * Bootstrap 5 Compatible - No Overrides
 */

/* ========== CSS VARIABLES ========== */
:root {
  /* Primary Colors - Pastel High Contrast */
  --primary-ocean: #679fd0;
  --primary-coral: #e28455;
  --primary-sage: #76aa8e;
  --primary-sand: #ffecc8;
  --primary-amethyst: #817bba;
  
  /* Light Shades */
  --light-ocean: #dff3f7;
  --light-coral: #fef5ef;
  --light-sage: #f0f7f2;
  --light-sand: #fefbf7;
  --light-amethyst: #f3f1f8;
  
  /* Dark Shades */
  --dark-ocean: #33627f;
  --dark-coral: #d98932;
  --dark-sage: #497357;
  --dark-sand: #e8caae;
  --dark-amethyst: #64587b;
  
  /* Neutral Colors */
  --text-primary: #263552;
  --text-secondary: #556269;
  --text-light: #879199;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --border-light: #d9dee6;
  
  /* Typography */
  --font-family-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --section-padding-sm: 2.5rem 0;
  
  /* Shadows */
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  
  /* Border Radius */
  --border-radius-sm: 0.375rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 0.75rem;
}

/* ========== GLOBAL STYLES ========== */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-white);
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }
h5 { font-size: var(--font-size-base); }
h6 { font-size: var(--font-size-sm); }

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.lead {
  font-size: var(--font-size-lg);
  font-weight: 400;
}

/* ========== LAYOUT SECTIONS ========== */
section {
  padding: var(--section-padding);
}

.section-sm {
  padding: var(--section-padding-sm);
}

/* ========== HERO SECTION ========== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-ocean) 0%, var(--light-sand) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: linear-gradient(45deg, var(--primary-coral), var(--primary-amethyst));
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 150px;
}

/* ========== CARDS & COMPONENTS ========== */
.custom-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-md);
}

.service-card {
  text-align: center;
  padding: 2rem 1.5rem;
  height: 100%;
}

.service-card .service-icon {
  font-size: 3rem;
  color: var(--primary-ocean);
  margin-bottom: 1rem;
}

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-coral);
  margin-top: 1rem;
}

/* ========== TEAM CARDS ========== */
.team-card {
  text-align: center;
  padding: 1.5rem;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-sand);
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
  background: var(--light-sage);
  border: none;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  font-size: var(--font-size-base);
  margin-bottom: 1.60rem;
  color: var(--text-primary);
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark-sage);
}

/* ========== FAQ CARDS ========== */
.faq-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--light-amethyst);
  padding: 1.5rem;
  margin: 0;
  font-weight: 600;
  color: var(--dark-amethyst);
  border-bottom: 1px solid var(--border-light);
}

.faq-answer {
  padding: 1.5rem;
  margin: 0;
  color: var(--text-secondary);
}

/* ========== FORMS ========== */
.form-control:focus {
  border-color: var(--primary-ocean);
  box-shadow: 0 0 0 0.2rem rgba(83, 141, 206, 0.25);
}

.btn-primary {
  background-color: var(--primary-ocean);
  border-color: var(--primary-ocean);
  font-weight: 500;
}

.btn-primary:hover {
  background-color: var(--dark-ocean);
  border-color: var(--dark-ocean);
}

.btn-secondary {
  background-color: var(--primary-coral);
  border-color: var(--primary-coral);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--dark-coral);
  border-color: var(--dark-coral);
  color: white;
}

/* ========== NAVIGATION ========== */
.navbar-brand {
    font-size: 10px !important;
  font-size: var(--font-size-lg) !important;
  font-weight: 700;
  color: var(--primary-ocean);
}

.navbar-nav .nav-link {
    font-size: 10px !important;
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-ocean);
}

/* ========== FOOTER ========== */
.footer {
  background-color: var(--dark-ocean);
  color: white;
  padding: 3rem 0 2rem;
}

.footer h5 {
  color: var(--primary-sand);
  margin-bottom: 1rem;
}

.footer p, .footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer a:hover {
  color: var(--primary-sand);
}

/* ========== UTILITY CLASSES ========== */
.text-ocean { color: var(--primary-ocean); }
.text-coral { color: var(--primary-coral); }
.text-sage { color: var(--primary-sage); }
.text-amethyst { color: var(--primary-amethyst); }

.bg-light-ocean { background-color: var(--light-ocean); }
.bg-light-coral { background-color: var(--light-coral); }
.bg-light-sage { background-color: var(--light-sage); }
.bg-light-sand { background-color: var(--light-sand); }
.bg-light-amethyst { background-color: var(--light-amethyst); }

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus states for accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
  outline: 2px solid var(--primary-ocean);
  outline-offset: 2px;
}

/* ========== BREADCRUMBS ========== */
.breadcrumb-image {
  max-height: 40px;
  width: auto;
}

/* ========== GALLERY ========== */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  margin-bottom: 1.73rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
} 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
