/* Modern Styles for IndiStatus */
:root {
    --primary-gradient: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    --secondary-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.masthead {
    background: var(--primary-gradient);
    padding-top: 8rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    margin-bottom: 2rem;
}

.masthead h1 {
    font-weight: 800;
    letter-spacing: -0.05rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.masthead h2 {
    font-weight: 300;
    color: rgba(255,255,255,0.9);
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.2);
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-modern {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    background: white;
    color: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    background: #fff;
    color: #FF6B6B;
}

/* Category Cards specific styles */
.cat-card-text {
    background: linear-gradient(135deg, #a8e063 0%, #56ab2f 100%);
}
.cat-card-image {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}
.cat-card-video {
    background: linear-gradient(135deg, #fce38a 0%, #f38181 100%);
}
.cat-card-dp {
    background: linear-gradient(135deg, #3a1c71 0%, #d76d77 50%, #ffaf7b 100%);
}
.cat-card-bday {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
}
.cat-card-wishes {
    background: linear-gradient(135deg, #ee9ca7 0%, #ffdde1 100%);
}

.navbar-custom {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.navbar-custom .nav-link {
    color: #333 !important;
    font-weight: 500;
}

.navbar-custom .navbar-brand {
    color: #FF6B6B !important;
    font-weight: 700;
}

footer {
    background: white;
    border-top: 1px solid #eaeaea;
}

/* Utils */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Interaction Utilities */
.hover-scale {
    transition: transform 0.2s ease;
    display: inline-block;
}
.hover-scale:hover {
    transform: scale(1.1);
}

.pointer {
    cursor: pointer;
}

.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
