/* Virtual Coworking Café Main Styles */
/* Bootstrap 5 is loaded via CDN in HTML files */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* FontAwesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Color Palette - 5 Primary Colors with Light/Dark Variants */
:root {
  /* Primary Colors */
  --primary-purple: #8B5CF6;
  --primary-teal: #14B8A6;
  --primary-coral: #F97316;
  --primary-mint: #10B981;
  --primary-rose: #F43F5E;
  
  /* Light Variants */
  --light-purple: #C4B5FD;
  --light-teal: #7DD3FC;
  --light-coral: #FED7AA;
  --light-mint: #86EFAC;
  --light-rose: #FBBF24;
  
  /* Dark Variants */
  --dark-purple: #5B21B6;
  --dark-teal: #0F766E;
  --dark-coral: #C2410C;
  --dark-mint: #065F46;
  --dark-rose: #BE185D;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8FAFC;
  --gray: #64748B;
  --dark-gray: #1E293B;
  --black: #0F172A;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Prefers Reduced Motion */
@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;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--gray);
}

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-teal) 100%);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--white);
  font-weight: 500;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-purple);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-mint) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  color: var(--white);
  text-align: center;
    padding-top: 225px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--light-gray);
}

/* About Section */
.about {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.about-feature {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-rose) 100%);
  color: var(--white);
}

.services h2 {
  color: var(--white);
}

.service-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
  color: var(--dark-gray);
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-mint) 0%, var(--light-teal) 100%);
}

.feature-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-mint);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-rose) 100%);
  color: var(--white);
}

.priceplan h2 {
  color: var(--white);
}

.priceplan-item {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--dark-gray);
  position: relative;
  overflow: hidden;
}

.priceplan-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-mint) 100%);
}

.priceplan-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.priceplan-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.priceplan-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.priceplan-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-rose) 0%, var(--light-coral) 100%);
}

.team-member {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-member h4 {
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--primary-coral);
  font-weight: 500;
}

/* Reviews Section */
.reviews {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-mint) 100%);
  color: var(--white);
}

.reviews h2 {
  color: var(--white);
}

.review-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  color: var(--dark-gray);
  position: relative;
}

.review-item::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-teal);
  font-weight: 700;
}

.review-author {
  text-align: right;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary-teal);
}

/* Case Study Section */
.casestudy {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-rose) 100%);
}

.casestudy-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.casestudy-item h4 {
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

/* Process Section */
.process {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-mint) 0%, var(--primary-teal) 100%);
  color: var(--white);
}

.process h2 {
  color: var(--white);
}

.process-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  color: var(--dark-gray);
  position: relative;
}

.process-item::before {
  content: counter(process-counter);
  counter-increment: process-counter;
  position: absolute;
  top: -15px;
  left: 20px;
  background: var(--primary-mint);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.process {
  counter-reset: process-counter;
}

/* Timeline Section */
.timeline {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-rose) 0%, var(--primary-coral) 100%);
  color: var(--white);
}

.timeline h2 {
  color: var(--white);
}

.timeline-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  color: var(--dark-gray);
  position: relative;
  margin-left: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--primary-rose);
  border-radius: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: -20px;
  top: calc(50% + 20px);
  width: 2px;
  height: calc(100% + 20px);
  background: var(--primary-rose);
}

.timeline-item:last-child::after {
  display: none;
}

/* Career Section */
.career {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-teal) 0%, var(--light-mint) 100%);
}

.career-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.career-item h4 {
  color: var(--primary-teal);
  margin-bottom: 0.5rem;
}

.career-role {
  color: var(--primary-mint);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Core Info Section */
.coreinfo {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-teal) 100%);
  color: var(--white);
}

.coreinfo h2 {
  color: var(--white);
}

.coreinfo-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  color: var(--dark-gray);
}

.coreinfo-item h4 {
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-teal) 100%);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
}

/* Blog Section */
.blog {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-coral) 0%, var(--light-rose) 100%);
}

.blog-item {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-item h4 {
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

.blog-item a {
  color: var(--primary-rose);
  text-decoration: none;
  font-weight: 500;
}

.blog-item a:hover {
  text-decoration: underline;
}

/* FAQ Section - using Bootstrap cards */
.faq {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-mint) 0%, var(--primary-teal) 100%);
  color: var(--white);
}

.faq h2 {
  color: var(--white);
}

/* Gallery Section */
.gallery {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-teal) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-section a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-purple);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray);
}

/* Space Page */
#space {
  min-height: 80vh;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-5 {
  margin-top: 3rem;
}

.pt-5 {
  padding-top: 3rem;
}

.pb-5 {
  padding-bottom: 3rem;
}

/* Animations removed - no scroll animations */

/* Contact Info Styles */
#contact-info-phone,
#contact-info-email,
#contact-info-address {
  color: var(--white);
  margin-bottom: 0.5rem;
}

/* Site Copyright */
#site-copyright {
  color: var(--light-gray);
  font-size: 0.9rem;
}

/* Scrolled Header */
header.scrolled {
  background: rgba(139, 92, 246, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  max-width: 300px;
  z-index: 10000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.notification.show {
  transform: translateX(0);
}

.notification-content {
  background: var(--white);
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border-left: 4px solid var(--primary-purple);
}

.notification-success .notification-content {
  border-left-color: var(--primary-mint);
}

.notification-error .notification-content {
  border-left-color: var(--primary-rose);
}

.notification-warning .notification-content {
  border-left-color: var(--primary-coral);
}

.notification-message {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark-gray);
  font-weight: 500;
}

.notification-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--gray);
  cursor: pointer;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-close:hover {
  color: var(--dark-gray);
}

/* Image Loading States */
img.lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img.loaded {
  opacity: 1;
}

/* Contact Info Item Styles */
.contact-info-item {
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-info-item:hover {
  transform: translateY(-5px);
} 


/* 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;
    }
}
