/* She Should Be Here Website Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #374151;
}

/* Color Variables */
:root {
    --primary-pink: #ec4899;
    --primary-purple: #a855f7;
    --pink-50: #fdf2f8;
    --pink-100: #fce7f3;
    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --red-600: #dc2626;
    --white: #ffffff;
}

/* Gradient Utilities */
.gradient-bg {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-purple) 100%);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 5rem 0;
}

.section-sm {
    padding: 3rem 0;
}

/* Quick Exit Banner */
.quick-exit {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--red-600);
    color: var(--white);
    z-index: 50;
    padding: 0.5rem 1rem;
}

.quick-exit-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-exit button {
    background-color: var(--white);
    color: var(--red-600);
    padding: 0.25rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
}

.quick-exit button:hover {
    background-color: var(--gray-100);
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 3rem;
    z-index: 40;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    height: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-brand img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    margin-right: 0.75rem;
}

.nav-brand span {
    font-size: 1.25rem;
    font-weight: bold;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-700);
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
}

.nav-links a:hover {
    color: var(--primary-purple);
    background-color: var(--purple-50);
}

.nav-links a.active {
    color: var(--primary-purple);
    background-color: var(--purple-50);
}

/* Main Content */
.main-content {
    padding-top: 7rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--pink-50) 0%, var(--purple-50) 100%);
    padding: 5rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-image {
    position: relative;
}

.hero-image-container {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #fce7f3 0%, #e9d5ff 100%);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: overlay;
}

.hero-heart {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    font-size: 2.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    color: var(--white);
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline {
    border: 1px solid #d1d5db;
    color: var(--primary-purple);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--purple-50);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

.card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-content {
    padding: 2rem;
}

.card-header {
    padding: 2rem 2rem 0;
}

.card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Typography */
.text-center { text-align: center; }
.text-left { text-align: left; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Spacing */
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

.p-3 { padding: 0.75rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

/* Form Elements */
.form-input {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    color: var(--white);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-brand img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    margin-right: 0.75rem;
}

/* Emergency Styles */
.emergency-banner {
    background-color: var(--red-600);
    color: var(--white);
    padding: 1.5rem 0;
}

.emergency-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.emergency-card {
    text-align: center;
    padding: 2rem;
    border-radius: 0.5rem;
}

.emergency-card.red {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
}

.emergency-card.purple {
    background-color: var(--purple-50);
    border: 1px solid #e9d5ff;
}

.emergency-card.pink {
    background-color: var(--pink-50);
    border: 1px solid #fce7f3;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .grid-sm-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .emergency-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .grid-md-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-md-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .emergency-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 5rem;
    }
    
    .grid-lg-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .grid-lg-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Utility Classes */
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.bg-white { background-color: var(--white); }
.bg-red-50 { background-color: #fef2f2; }
.bg-red-600 { background-color: var(--red-600); }

.text-white { color: var(--white); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-900 { color: var(--gray-900); }
.text-red-600 { color: var(--red-600); }
.text-red-800 { color: #991b1b; }
.text-purple-600 { color: var(--primary-purple); }
.text-purple-800 { color: #6b21a8; }
.text-pink-600 { color: var(--primary-pink); }
.text-pink-800 { color: #be185d; }

.border { border: 1px solid #d1d5db; }
.border-red-200 { border: 1px solid #fecaca; }
.border-purple-200 { border: 1px solid #e9d5ff; }
.border-pink-200 { border: 1px solid #fce7f3; }

.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }

.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }

.opacity-90 { opacity: 0.9; }

.transition-all { transition: all 0.2s; }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:bg-gray-100:hover { background-color: var(--gray-100); }
.hover\:bg-purple-50:hover { background-color: var(--purple-50); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }