/* Ocean Plastic Eyewear Brand - Main Styles */
:root {
  /* Primary Color Palette - Pastel High-Contrast Ocean Theme */
  --ocean-blue: #58a5da;
  --ocean-blue-light: #b9e1f8;
  --ocean-blue-dark: #3670f2;
  
  --sea-green: #5bdf8c;
  --sea-green-light: #91f6e2;
  --sea-green-dark: #029167;
  
  --coral-pink: #ee5b95;
  --coral-pink-light: #fd9fc2;
  --coral-pink-dark: #c80e48;
  
  --sandy-beige: #ffe8d1;
  --sandy-beige-light: #e4d5c6;
  --sandy-beige-dark: #c2a072;
  
  --deep-teal: #009987;
  --deep-teal-light: #4ae8da;
  --deep-teal-dark: #155147;
  
  /* Typography */
  --font-family-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --content-max-width: 1200px;
}

/* Base Typography - Conservative Sizes */
body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #4c4949;
}

.navbar-brand {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--ocean-blue);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--deep-teal);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--ocean-blue);
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--deep-teal-dark);
}

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

/* Header Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.navbar-nav .nav-link:hover {
  color: var(--ocean-blue);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="3" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="1.5" fill="%23ffffff" opacity="0.1"/></svg>');
  pointer-events: none;
}

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

/* Section Spacing */
.section {
  padding: var(--section-padding);
}

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

/* About Section */
.about-section {
  background: var(--sandy-beige-light);
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.feature-icon {
  font-size: 2.5rem;
  color: var(--ocean-blue);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: white;
}

.service-card {
  background: var(--sandy-beige-light);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
  border: 2px solid var(--sea-green-light);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--sea-green);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--coral-pink-dark);
}

/* Features Section */
.features-section {
  background: var(--sea-green-light);
}

/* Price Plan Section */
.priceplan-section {
  background: white;
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
  position: relative;
  border: 3px solid var(--ocean-blue-light);
}

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

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--deep-teal);
}

/* Team Section */
.team-section {
  background: var(--ocean-blue-light);
}

.team-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--sea-green);
  margin-bottom: 1rem;
}

/* Reviews Section */
.reviews-section {
  background: white;
}

.review-card {
  background: var(--sandy-beige-light);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  border-left: 4px solid var(--coral-pink);
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 600;
  color: var(--deep-teal);
}

/* Case Studies Section */
.casestudy-section {
  background: var(--deep-teal-light);
}

.case-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Process Section */
.process-section {
  background: white;
}

.process-step {
  background: var(--ocean-blue-light);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  position: relative;
}

.step-number {
  background: var(--coral-pink);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

/* Timeline Section */
.timeline-section {
  background: var(--sandy-beige-light);
}

.timeline-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--sea-green);
}

/* Career Section */
.career-section {
  background: var(--sea-green-light);
}

.career-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Core Info Section */
.coreinfo-section {
  background: white;
}

.info-card {
  background: var(--ocean-blue-light);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  height: 100%;
}

/* Contact Section */
.contact-section {
  background: var(--deep-teal-light);
}

.contact-form {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--ocean-blue-light);
  border-radius: 10px;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--ocean-blue);
  box-shadow: 0 0 0 0.2rem rgba(87, 148, 250, 0.25);
}

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

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

/* Blog Section */
.blog-section {
  background: white;
}

.blog-card {
  background: var(--sandy-beige-light);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

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

/* FAQ Section */
.faq-section {
  background: var(--ocean-blue-light);
}

.faq-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.faq-answer {
  color: #787878;
}

/* Gallery Section */
.gallery-section {
  background: var(--sandy-beige-light);
}

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

.gallery-item {
  aspect-ratio: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--sea-green-light);
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  height: 20px;
  width: auto;
}

/* Responsive Behavior - No Animations on Mobile */
@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .feature-card:hover,
  .service-card:hover,
  .blog-card:hover {
    transform: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
  
  .gallery-item:hover img {
    transform: none;
  }
}

/* Accessibility - Respect 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;
  }
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

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

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
