/* ===== UPCYCLED SNEAKERS - MAIN STYLES ===== */

/* Bootstrap 5 CDN Import */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');

/* FontAwesome CDN Import */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES - COLOR PALETTE ===== */
:root {
  /* Primary Colors */
  --ocean-blue: #5d9cb3;
  --sea-green: #4bad8f;
  --recycled-gray: #80858b;
  --coral: #f3697e;
  --sand-beige: #F4F3EE;
  
  /* Light Shades */
  --ocean-blue-light: #73afc1;
  --sea-green-light: #86c39c;
  --recycled-gray-light: #b0b2b4;
  --coral-light: #ffa5a8;
  --sand-beige-light: #FAFAF9;
  
  /* Dark Shades */
  --ocean-blue-dark: #31515d;
  --sea-green-dark: #3fa982;
  --recycled-gray-dark: #4e5768;
  --coral-dark: #d75c4a;
  --sand-beige-dark: #fbfbfb;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--ocean-blue) 0%, var(--sea-green) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
  --gradient-tertiary: linear-gradient(135deg, var(--sand-beige) 0%, var(--sand-beige-light) 100%);
  
  /* Typography */
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --font-size-base: 1rem;
  --line-height-base: 1.6;
}

/* ===== GLOBAL STYLES ===== */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--recycled-gray-dark);
  background-color: var(--sand-beige-light);
  overflow-x: hidden;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--ocean-blue-dark);
  margin-bottom: 1rem;
}

h1 { font-size: 2.53rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.82rem; }
h4 { font-size: 1.59rem; }
h5 { font-size: 1.31rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--recycled-gray);
}

/* ===== HEADER & NAVIGATION ===== */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 21px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.52rem;
  font-weight: 700;
  color: var(--ocean-blue);
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--recycled-gray-dark);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--ocean-blue);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(60, 163, 170, 0.25);
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.5em;
  height: 1.5em;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  color: white;
    padding-top: 150px;
}

.hero-title {
  font-size: 3.62rem;
  font-weight: 700;
  margin-bottom: 1.57rem;
}

.hero-subtitle {
  font-size: 1.58rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.13rem;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--recycled-gray);
  margin-bottom: 2rem;
}

.section-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  color: var(--recycled-gray);
}

/* ===== CARDS ===== */
.card {
  border: none;
  border-radius: 17px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-body {
  padding: 2rem;
}

/* ===== SERVICES ===== */
.services-card {
  background: white;
  margin-bottom: 2rem;
}

.services-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 15px 15px 0 0;
}

.services-price {
  font-size: 1.61rem;
  font-weight: 700;
  color: var(--coral);
}

/* ===== TEAM ===== */
.team-card {
  text-align: center;
  background: white;
}

.team-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background-size: cover;
  background-position: center;
  border: 5px solid var(--sea-green-light);
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--gradient-tertiary);
  border: 1px solid var(--sand-beige-dark);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--ocean-blue-dark);
}

/* ===== FAQ ===== */
.faq-item {
  background: white;
  border: 1px solid var(--sand-beige-dark);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--gradient-tertiary);
  padding: 1.5rem;
  margin: 0;
  font-weight: 600;
  color: var(--ocean-blue-dark);
  cursor: pointer;
  border-bottom: 1px solid var(--sand-beige-dark);
}

.faq-answer {
  padding: 1.5rem;
  margin: 0;
  color: var(--recycled-gray);
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--sand-beige-dark);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--ocean-blue);
  box-shadow: 0 0 0 0.2rem rgba(69, 136, 177, 0.25);
}

.form-control:invalid {
  border-color: var(--coral);
}

.form-control:valid {
  border-color: var(--sea-green);
}

.was-validated .form-control:invalid {
  border-color: var(--coral);
  box-shadow: 0 0 0 0.2rem rgba(241, 93, 92, 0.25);
}

.was-validated .form-control:valid {
  border-color: var(--sea-green);
  box-shadow: 0 0 0 0.2rem rgba(78, 188, 139, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gradient-primary);
}

/* ===== GALLERY ===== */
.gallery-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px 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: var(--coral-light);
  color: white;
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--sand-beige-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--sea-green-light);
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--sea-green-light);
}

/* ===== BREADCRUMBS ===== */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* ===== RESPONSIVE UTILITIES ===== */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

.bg-gradient-tertiary {
  background: var(--gradient-tertiary);
}

/* ===== ANIMATION UTILITIES ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SPACE PAGE ===== */
#space {
  min-height: 70vh;
  background: var(--gradient-primary);
  border-radius: 20px;
  margin: 2rem 0;
} 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
