/* She Inspire Network - Custom Styles */
 /* Feminine, empowering theme with pinks, purples, golds */

:root {
  --primary-color: #C2185B; /* Deep rose */
  --secondary-color: #FFF8F0; /* Warm cream */
  --accent-color: #E8A838; /* Soft gold */
  --dark-color: #2C2C2C; /* Charcoal */
  --light-bg: #FFF8F0;
  --white: #ffffff;
  --text-dark: #2C2C2C;
  --text-light: #6b7280;
  --z-index-highest: 999999;
}

.safety-banner {
  box-shadow: 0 2px 10px rgba(194, 24, 91, 0.5);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

.bg-primary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.btn-warning {
  background-color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  color: var(--dark-color) !important;
}

.btn-warning:hover {
  background-color: #D4A017 !important; /* Darker gold */
  border-color: #D4A017 !important;
  transform: translateY(-1px);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.4rem;
  text-decoration: none;
}

.navbar-brand i {
  color: var(--accent-color);
}

.navbar-dark .navbar-brand {
  color: var(--white) !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  color: white;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(194, 24, 91, 0.8), rgba(232, 168, 56, 0.6));
  z-index: 1;
}

.hero-section img {
  height: 70vh;
  object-fit: cover;
}

.hero-section .carousel-caption {
  background: rgba(0,0,0,0.6);
  border-radius: 20px;
  padding: 2rem;
}

.live-indicator {
  animation: pulse 2s infinite;
  box-shadow: 0 0 20px rgba(220, 53, 69, 0.5);
}

/* Cards Hover Effects */
.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}

.card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
}

.card-img-top {
  transition: transform 0.3s ease;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

/* Content Categories */
.content-categories-section {
  background: linear-gradient(135deg, var(--light-bg), var(--white));
  padding: 5rem 0;
}

.content-categories-section .card {
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}

.content-categories-section .card:hover {
  border-color: var(--primary-color);
  background: var(--white);
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* Live Elements */
.live-badge {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

/* Story Cards */
.story-card {
  opacity: 1;
  transition: all 0.3s ease;
}

.story-card.fade-out {
  opacity: 0.3;
}

/* Event Cards */
.event-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.live-event {
  border-left: 5px solid #dc3545;
}

/* Resource Cards */
.progress {
  border-radius: 10px;
}

.progress-bar {
  border-radius: 10px;
}

/* Contact Form */
#contactForm .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
}

.accordion-button {
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: white;
}

/* Footer */
footer {
  background: var(--dark-color);
  color: var(--white);
}

.newsletter-section {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.social-media a {
  transition: transform 0.2s ease;
}

.social-media a:hover {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section img {
    height: 50vh;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  .display-4 {
    font-size: 2.5rem;
  }
  
  .btn-lg {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #7c3aed;
}

/* Badge Styles */
.badge {
  font-weight: 600;
  padding: 0.5em 0.75em;
}

/* Smooth Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Newsletter Form */
.input-group .form-control {
  border-radius: 50px 0 0 50px;
}

.input-group .btn {
  border-radius: 0 50px 50px 0;
}

/* Live Overlay */
.live-overlay {
  cursor: pointer;
}

.live-overlay:hover {
  background: rgba(0,0,0,0.85);
}

/* Countdown Animation */
.countdown-number {
  background: linear-gradient(45deg, var(--accent-color), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Print Styles */
@media print {
  .navbar, footer, .live-hero {
    display: none;
  }
}

@import url('checkout.css');


/* Focus States for Accessibility */
.btn:focus, .form-control:focus, a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.nav-link:focus {
  outline: 2px solid var(--accent-color);
}

/* Footer text override for white color */
footer .text-muted {
    color: var(--white) !important;
}

footer .text-muted a {
    color: var(--white) !important;
}

/* Hero logo styling */
.hero-logo {
    height: 100vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(3px 3px 6px rgba(0,0,0,0.8));
}

