/* ===== UPCYCLED GLASSWARE TEMPLATE - MAIN STYLES ===== */

/* Color Palette - Pastel & High Contrast for Upcycled Glassware */
:root {
  /* Primary Colors */
  --color-sage: #abba9d;          /* Sustainable green */
  --color-seafoam: #b2e2e5;       /* Glass clarity */
  --color-cream: #F1FAEE;         /* Clean white */
  --color-coral: #f63e4c;         /* Accent warmth */
  --color-navy: #1c2c4b;          /* Professional depth */
  
  /* Light/Dark Shades */
  --color-sage-light: #bec7b5;
  --color-sage-dark: #75895e;
  --color-seafoam-light: #d3dfe1;
  --color-seafoam-dark: #72afb1;
  --color-cream-light: #FFFFFF;
  --color-cream-dark: #deffda;
  --color-coral-light: #f37777;
  --color-coral-dark: #b82120;
  --color-navy-light: #324774;
  --color-navy-dark: #1c3255;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 600;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --border-radius: 0.5rem;
  --box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* ===== GLOBAL STYLES ===== */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-navy);
  background-color: var(--color-cream);
  padding-top: 76px; /* Allow padding for fixed navbar */
}

/* Conservative Typography */
h1, .h1 {
  font-size: 2.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-navy);
  margin-bottom: 1rem;
}

h2, .h2 {
  font-size: 1.875rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

h3, .h3 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-navy-light);
  margin-bottom: 0.5rem;
}

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

/* ===== HEADER STYLES ===== */
/* Using Bootstrap navbar classes instead of custom styles */
.navbar-brand {
  color: var(--color-sage-dark);
  font-weight: var(--font-weight-bold);
}

.navbar-nav .nav-link {
  color: var(--color-navy);
  font-weight: var(--font-weight-medium);
}

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

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-seafoam-light) 100%);
  display: flex;
  align-items: center;
  padding: var(--section-padding);
}

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

.hero-image {
  position: relative;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--color-sage-light);
  border-radius: 50%;
  opacity: 0.3;
  top: -50px;
  right: -50px;
  z-index: 1;
}

/* ===== SECTION STYLES ===== */
.section {
  padding: var(--section-padding);
}

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

.section-subtitle {
  text-align: center;
  color: var(--color-sage);
  margin-bottom: 0.5rem;
  font-size: var(--font-size-lg);
}

.section-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--color-navy-light);
}

/* ===== CARD STYLES ===== */
/* Extending Bootstrap cards with custom styling */
.card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--color-cream);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-img-top {
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  height: 200px;
  object-fit: cover;
}

.card-title {
  color: var(--color-navy);
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--color-navy-light);
  font-size: var(--font-size-sm);
}

/* ===== SERVICES STYLES ===== */
.service-card {
  text-align: center;
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
}

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

.service-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.service-features li {
  padding: 0.25rem 0;
  color: var(--color-navy-light);
  font-size: var(--font-size-sm);
}

/* ===== TEAM STYLES ===== */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--color-seafoam);
}

.team-name {
  font-weight: var(--font-weight-medium);
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--color-sage);
  font-size: var(--font-size-sm);
}

/* ===== FORM STYLES ===== */
.form-control {
  border: 2px solid var(--color-seafoam-light);
  border-radius: var(--border-radius);
  color: var(--color-navy);
}

.form-control:focus {
  border-color: var(--color-sage);
  box-shadow: 0 0 0 0.2rem rgba(153, 182, 135, 0.25);
}

.btn-primary {
  background-color: var(--color-sage);
  border-color: var(--color-sage);
  color: var(--color-cream);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s ease;
}

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

/* ===== FOOTER STYLES ===== */
.footer {
  background-color: var(--color-navy);
  color: var(--color-cream);
  padding: 3rem 0 1rem;
}

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

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

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

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

/* ===== GALLERY STYLES ===== */
/* Using Bootstrap grid system for layout */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  height: 100%;
}

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

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

/* ===== FAQ STYLES ===== */
.faq-card {
  margin-bottom: 1rem;
  border-left: 4px solid var(--color-sage);
}

.faq-question {
  font-weight: var(--font-weight-medium);
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--color-navy-light);
  font-size: var(--font-size-sm);
}

/* ===== BREADCRUMB STYLES ===== */
.breadcrumb-container {
  padding: 1rem 0;
  background-color: var(--color-cream-dark);
}

.breadcrumb-image {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* ===== UTILITY CLASSES ===== */
.text-sage { color: var(--color-sage); }
.text-seafoam { color: var(--color-seafoam); }
.text-coral { color: var(--color-coral); }
.bg-sage { background-color: var(--color-sage); }
.bg-seafoam { background-color: var(--color-seafoam); }
.bg-cream { background-color: var(--color-cream); }

.section-alt {
  background-color: var(--color-cream-dark);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-seafoam-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-info-icon {
  width: 20px;
  height: 20px;
  margin-right: 0.75rem;
  color: var(--color-sage);
} 

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