/* Digital Nomad Coliving Space - Main Styles */

:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-coral: #ef8877;
  --primary-ocean: #5abeb5;
  --primary-lavender: #a8d4c4;
  --primary-sunset: #f9c845;
  --primary-sky: #89caf9;
  
  /* Light/Dark Shades */
  --light-coral: #ffe5e8;
  --dark-coral: #d55a68;
  --light-ocean: #e4e8e7;
  --dark-ocean: #2d9392;
  --light-lavender: #F0FBF5;
  --dark-lavender: #86ae94;
  --light-sunset: #f1e0b4;
  --dark-sunset: #d6bc32;
  --light-sky: #e6ecf4;
  --dark-sky: #508bbc;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --gray: #606365;
  --dark-gray: #242a31;
  --black: #1e2022;
}

/* Base Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-coral);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark-ocean);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark-sky);
  margin-bottom: 0.5rem;
}

h4, h5, h6 {
  font-weight: 500;
  color: var(--dark-gray);
}

p {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

/* Header & Navigation */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-coral);
}

.navbar-nav .nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-coral);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-ocean) 0%, var(--light-lavender) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, var(--light-sunset) 0%, transparent 70%);
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 275px;
}

/* Section Spacing */
.section-padding {
  padding: 5rem 0;
}

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

.section-subtitle {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Services Cards */
.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  border: 1px solid var(--light-ocean);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-coral);
  margin-top: 1rem;
}

/* Features Grid */
.feature-item {
  background: var(--light-sky);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 2rem;
  border: 2px solid var(--primary-sky);
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-sky);
  margin-bottom: 1rem;
}

/* Price Plan Cards */
.price-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--light-lavender);
  margin-bottom: 2rem;
}

.price-card.featured {
  border-color: var(--primary-coral);
  transform: scale(1.05);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-coral);
  margin: 1rem 0;
}

/* Team Members */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--primary-ocean);
  margin-bottom: 1rem;
}

/* Review Cards */
.review-card {
  background: var(--light-lavender);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  border-left: 5px solid var(--primary-lavender);
}

.review-author {
  font-weight: 600;
  color: var(--dark-coral);
  margin-top: 1rem;
}

/* Case Study Cards */
.case-study-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--primary-sunset);
}

/* Process Steps */
.process-step {
  background: var(--light-sunset);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.process-step::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-sunset);
  color: var(--dark-gray);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.process-container {
  counter-reset: step;
}

/* Timeline */
.timeline-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-sky);
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 2rem;
  width: 12px;
  height: 12px;
  background: var(--primary-sky);
  border-radius: 50%;
}

/* Career Cards */
.career-card {
  background: var(--light-coral);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  border: 2px solid var(--primary-coral);
}

/* Core Info Grid */
.core-info-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.core-info-item i {
  font-size: 2.5rem;
  color: var(--primary-ocean);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  background: var(--light-gray);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--light-ocean);
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-ocean);
  box-shadow: 0 0 0 0.2rem rgba(63, 221, 205, 0.25);
}

.btn-primary {
  background-color: var(--primary-coral);
  border-color: var(--primary-coral);
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--dark-coral);
  border-color: var(--dark-coral);
  transform: translateY(-2px);
}

/* Blog Cards */
.blog-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

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

.blog-card-body {
  padding: 1.5rem;
}

/* FAQ Cards */
.faq-card {
  background: var(--white);
  border: 2px solid var(--light-sky);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--dark-sky);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--gray);
}

/* Gallery */
.gallery-item {
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-coral);
}

.footer-bottom {
  border-top: 1px solid var(--gray);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Contact Info */
.contact-info {
  background: var(--light-ocean);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.contact-info i {
  color: var(--primary-ocean);
  margin-right: 0.5rem;
}

/* Breadcrumb */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--light-gray);
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 5px;
}

/* Space Page */
#space {
  min-height: 70vh;
  background: linear-gradient(45deg, var(--light-coral) 0%, var(--light-ocean) 50%, var(--light-lavender) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin: 2rem 0;
  position: relative;
}

#space::before {
  content: 'SPACE';
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  opacity: 0.3;
  text-align: center;
}

/* Accessibility - Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none;
  }
}

/* Utility Classes */
.text-coral { color: var(--primary-coral); }
.text-ocean { color: var(--primary-ocean); }
.text-lavender { color: var(--primary-lavender); }
.text-sunset { color: var(--primary-sunset); }
.text-sky { color: var(--primary-sky); }

.bg-coral { background-color: var(--light-coral); }
.bg-ocean { background-color: var(--light-ocean); }
.bg-lavender { background-color: var(--light-lavender); }
.bg-sunset { background-color: var(--light-sunset); }
.bg-sky { background-color: var(--light-sky); } 


/* Team Social Links - Glass Style */
.team-social-links {
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.5);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.3);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 0.5);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.5);
}

.x-link {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
