/* ===================================
   HANDCRAFTED LEATHER NOTEBOOK BRAND
   Main Styles with Bootstrap 5
   =================================== */

/* CDN Imports */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Inter:wght@300;400;500&display=swap');
@import url('https://cdn.jsdelivr.net/gh/mcstudios/glightbox/dist/css/glightbox.min.css');
@import url('https://unpkg.com/sal.js@0.8.5/dist/sal.css');

/* ===================================
   COLOR PALETTE VARIABLES
   =================================== */
:root {
  /* Primary Colors */
  --primary-leather: #7d4c0a;
  --primary-cream: #e4e7c1;
  --primary-gold: #efc717;
  --primary-charcoal: #28323c;
  --primary-sage: #9bb783;
  
  /* Light Shades */
  --leather-light: #9f3e24;
  --cream-light: #FFFEF7;
  --gold-light: #e6dcb9;
  --charcoal-light: #546977;
  --sage-light: #a9b89f;
  
  /* Dark Shades */
  --leather-dark: #5b3a22;
  --cream-dark: #dadbc0;
  --gold-dark: #c59000;
  --charcoal-dark: #2f3b44;
  --sage-dark: #6e7665;
  
  /* Semantic Colors */
  --text-primary: var(--charcoal-dark);
  --text-secondary: var(--charcoal-light);
  --bg-primary: var(--cream-light);
  --bg-secondary: var(--cream-dark);
  --accent: var(--primary-gold);
  --border-color: var(--sage-light);
}

/* ===================================
   TYPOGRAPHY (Conservative)
   =================================== */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: var(--primary-leather);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 600;
  color: var(--primary-leather);
}

p {
  font-size: 16px;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* ===================================
   LAYOUT & SPACING
   =================================== */
.section {
  padding: 4rem 0;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream-dark) 100%);
}

/* ===================================
   COMPONENTS
   =================================== */

/* Navigation */
.navbar {
  background-color: var(--bg-primary);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--text-primary);
  font-weight: 400;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

/* Buttons */
.btn-primary {
  background-color: var(--primary-leather);
  border-color: var(--primary-leather);
  color: white;
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

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

.btn-outline-primary {
  color: var(--primary-leather);
  border-color: var(--primary-leather);
}

.btn-outline-primary:hover {
  background-color: var(--primary-leather);
  border-color: var(--primary-leather);
}

/* Cards */
.card {
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
}

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

.card-header {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 1.25rem;
}

.card-body {
  padding: 1.5rem;
}

/* Price Cards */
.price-card {
  position: relative;
  overflow: hidden;
}

.price-card .price {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-gold);
}

/* Team Cards */
.team-card {
  height: auto;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  overflow: hidden;
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0.5rem 0.5rem 0 0;
}

.team-card .card-body {
  padding: 1.25rem;
}

.team-card .card-title {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
}

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

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

/* Forms */
.form-control {
  border: 2px solid var(--border-color);
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-leather);
  box-shadow: 0 0 0 0.2rem rgba(160, 68, 26, 0.25);
}

.form-label {
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

/* ===================================
   DECORATIVE ELEMENTS
   =================================== */
.decorative-shape {
  position: absolute;
  background: var(--accent);
  opacity: 0.1;
  border-radius: 50%;
  z-index: -1;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
}

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

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

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

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

.footer .footer-bottom {
  border-top: 1px solid var(--charcoal-light);
  margin-top: 2rem;
  padding-top: 1rem;
}

/* ===================================
   ACCESSIBILITY
   =================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus States */
.btn:focus,
.form-control:focus,
.nav-link:focus {
  outline: 2px solid var(--primary-leather);
  outline-offset: 2px;
}

/* ===================================
   UTILITIES
   =================================== */
.text-leather {
  color: var(--primary-leather);
}

.text-gold {
  color: var(--primary-gold);
}

.bg-cream {
  background-color: var(--bg-secondary);
}

.border-sage {
  border-color: var(--border-color);
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
  margin: 2rem 0;
} 

.hero-section h1 {
    padding-top: 125px;
}


/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

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

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

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

.x-link i {
    display: none;
}

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