/* Custom CSS inspired by Silicon Bootstrap Theme for MeatMeetME */

:root {
    --bs-primary: #6366f1;
    --bs-secondary: #8b5cf6;
    --bs-warning: #f59e0b;
    --bs-success: #10b981;
    --bs-info: #06b6d4;
    --bs-danger: #ef4444;
    --bs-light: #f8fafc;
    --bs-dark: #1e293b;
    
    /* Silicon-inspired gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-warning: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

/* Global Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
}

/* Navbar brand styling */
.navbar-brand {
    font-weight: 800;
    background: var(--gradient-warning);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero-title {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

/* Hero subtitle styling */
.hero-tagline {
    color: #ffffff;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Buttons */
.btn {
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
}

.btn-warning {
    background: var(--gradient-warning);
    border: none;
    color: #1e293b;
}

/* Card Styles */
.cut-card {
    transition: transform 0.3s ease;
    border-radius: 1rem;
    overflow: hidden;
}

.cut-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.cut-image {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cut-card:hover .cut-image {
    transform: scale(1.05);
}

/* Section Styling */
.bg-light {
    background-color: #f8fafc;
}

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

/* Typography */
.display-1, .display-2, .display-3, .display-4, .display-5 {
    font-weight: 800;
    letter-spacing: -0.025em;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: #64748b;
}

/* Hero section overrides Bootstrap lead styling */
.hero-section .hero-tagline {
    color: #ffffff;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Icon Styling */
.bi {
    vertical-align: -0.125em;
}

/* Navbar Enhancements */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(99, 102, 241, 0.95);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--bs-warning);
}

/* Form Styling */
.form-control {
    border-radius: 0.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--bs-warning);
    box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        background-attachment: scroll;
    }
}


