/* ===== MAIN.CSS - Digital Planner Marketplace Template ===== */

/* Import Bootstrap 5 */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');

/* Import FontAwesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-lavender: #e7e7e8;
  --primary-mint: #F0FFF0;
  --primary-peach: #edd6be;
  --primary-sky: #cdf0ff;
  --primary-rose: #e8d0ca;
  
  /* Light/Dark Shades */
  --lavender-light: #F5F5FF;
  --lavender-dark: #9e71e8;
  --mint-light: #F8FFF8;
  --mint-dark: #12ac9d;
  --peach-light: #e9e4c5;
  --peach-dark: #e0a57b;
  --sky-light: #F0FAFF;
  --sky-dark: #3e4dc8;
  --rose-light: #FFF0F0;
  --rose-dark: #cc6d5d;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --medium-gray: #6a7177;
  --dark-gray: #3c454f;
  --black: #000000;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-accent: 'Playfair Display', serif;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --container-max-width: 1200px;
  
  /* Border Radius */
  --border-radius-sm: 0.375rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  
  /* Box Shadow */
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

/* ===== GLOBAL STYLES ===== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-accent);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.1rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--medium-gray);
}

/* ===== HEADER STYLES ===== */
.navbar {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
}

.navbar-brand {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lavender-dark);
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark-gray);
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-lavender) 0%, var(--primary-sky) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: var(--primary-mint);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--lavender-dark);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--medium-gray);
  margin-bottom: 2rem;
}

.hero-image {
  position: relative;
  z-index: 2;
}

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

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--lavender-dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-desc {
  text-align: center;
  font-size: 1.1rem;
  color: var(--medium-gray);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CARD STYLES ===== */
.card {
  border: none;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-header {
  background-color: var(--primary-lavender);
  border-bottom: none;
  padding: 1.5rem;
}

.card-body {
  padding: 2rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.card-text {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
}

/* ===== SERVICES SECTION ===== */
.service-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.service-card:hover {
  background: var(--primary-mint);
}

.service-icon {
  font-size: 3rem;
  color: var(--mint-dark);
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--lavender-dark);
  margin-top: 1.5rem;
}

/* ===== PRICING SECTION ===== */
.pricing-card {
  background: var(--white);
  border: 2px solid var(--primary-lavender);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  height: 100%;
}

.pricing-card.featured {
  border-color: var(--lavender-dark);
  transform: scale(1.05);
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--lavender-dark);
  margin: 1.5rem 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: var(--medium-gray);
}

.pricing-features li i {
  color: var(--mint-dark);
  margin-right: 0.5rem;
}

/* ===== TEAM SECTION ===== */
.team-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--primary-peach);
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--lavender-dark);
  font-weight: 500;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonial-card {
  background: var(--primary-rose);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  height: 100%;
  position: relative;
}

.testimonial-text {
  font-style: italic;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--rose-dark);
}

/* ===== FAQ SECTION ===== */
.faq-card {
  background: var(--white);
  border: 1px solid var(--primary-lavender);
  border-radius: var(--border-radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--primary-lavender);
  padding: 1.5rem;
  margin: 0;
  font-weight: 600;
  color: var(--dark-gray);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--medium-gray);
  margin: 0;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-control {
  border: 2px solid var(--primary-lavender);
  border-radius: var(--border-radius-md);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--lavender-dark);
  box-shadow: 0 0 0 0.2rem rgba(141, 112, 242, 0.25);
}

.btn-primary {
  background-color: var(--lavender-dark);
  border-color: var(--lavender-dark);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: var(--border-radius-md);
  transition: all 0.3s ease;
}

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

/* ===== GALLERY SECTION ===== */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  margin-bottom: 1.5rem;
}

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

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

/* ===== FOOTER STYLES ===== */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer p, .footer a {
  color: var(--light-gray);
  text-decoration: none;
}

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

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

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

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

/* ===== UTILITY CLASSES ===== */
.bg-lavender {
  background-color: var(--primary-lavender);
}

.bg-mint {
  background-color: var(--primary-mint);
}

.bg-peach {
  background-color: var(--primary-peach);
}

.bg-sky {
  background-color: var(--primary-sky);
}

.bg-rose {
  background-color: var(--primary-rose);
}

.text-lavender {
  color: var(--lavender-dark);
}

.text-mint {
  color: var(--mint-dark);
}

.text-peach {
  color: var(--peach-dark);
}

.text-sky {
  color: var(--sky-dark);
}

.text-rose {
  color: var(--rose-dark);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--lavender-dark);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--rose-dark);
  transform: translateY(-3px);
}

/* ===== NOTIFICATIONS ===== */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--white);
  color: var(--dark-gray);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--lavender-dark);
  z-index: 1050;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
  min-width: 300px;
}

.notification.show {
  opacity: 1;
  transform: translateX(0);
}

.notification.notification-success {
  border-left-color: var(--mint-dark);
}

.notification.notification-error {
  border-left-color: var(--rose-dark);
}

.notification.notification-warning {
  border-left-color: var(--peach-dark);
}

.notification-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--medium-gray);
  cursor: pointer;
  float: right;
  line-height: 1;
  margin-left: 1rem;
}

.notification-close:hover {
  color: var(--dark-gray);
}

/* ===== ADDITIONAL UTILITIES ===== */
.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
}

.input-focused {
  transform: scale(1.02);
  transition: transform 0.2s ease;
}

.form-check.checked {
  color: var(--lavender-dark);
}

/* ===== 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 - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

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

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

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

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

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
