/* Dainik Magazine - Bihu Special Standalone */

:root {
    --primary: #8b0000; /* Deep red for Bihu theme */
    --primary-container: #d4a017; /* Gold for Bihu theme */
    --on-primary: #ffffff;
    --secondary: #5f5e5e;
    --tertiary: #d4a017;
    --on-tertiary: #191c21;
    --background: #fdfaf5; /* Warm cream background */
    --on-background: #191c21;
    --surface: #ffffff;
    --surface-variant: rgba(212, 160, 23, 0.05);
    --outline: #d4a017;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --headline-font: 'Newsreader', serif;
    --body-font: 'Inter', sans-serif;
}

body {
    background-color: var(--background);
    color: var(--on-background);
    font-family: var(--body-font);
    min-height: 100vh;
    margin: 0;
}

h1, h2, h3, h4, h5, h6, .display-font {
    font-family: var(--headline-font);
    font-weight: 700;
}

.italic {
    font-style: italic;
}

/* Hero-like ePaper Section */
.epaper-promo {
    padding: 0;
    position: relative;
}

.epaper-promo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: var(--primary-container);
    filter: blur(150px);
    opacity: 0.1;
    z-index: -1;
    transform: translateY(-50%);
}

.epaper-preview {
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    box-shadow: 30px 40px 80px rgba(0,0,0,0.15);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 4px;
}

.epaper-preview:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) scale(1.02);
}

/* Custom Buttons */
.btn-primary-premium {
    background: linear-gradient(135deg, var(--primary), #b22222);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.2);
}

.btn-primary-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(139, 0, 0, 0.3);
    color: white;
    opacity: 1;
}

.text-primary {
    color: var(--primary) !important;
}

/* Typography Enhancements */
.display-3 {
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.tracking-widest {
    letter-spacing: 0.2em;
}

.font-bold {
    font-weight: 700;
}

/* Standalone Layout Centering */
main {
    min-height: 100vh;
    display: flex;
    padding: 3rem 0;
}

main > .epaper-promo {
    margin: auto;
}

/* Premium Modal Styles */
.premium-modal {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 24px !important;
}

.premium-input-group {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.premium-input-group:focus-within {
    border-color: var(--primary);
}

.premium-input-group input, 
.premium-input-group .input-group-text {
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
}

.price-pill {
    display: inline-block;
    background: var(--surface-variant);
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 900;
    padding: 1rem 3rem;
    border-radius: 50px;
    border: 2px dashed var(--primary-container);
}

.grayscale {
    filter: grayscale(1);
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.pulse {
    animation: pulse 2s infinite;
}

.step-view {
    animation: fadeIn 0.4s ease-out;
}

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


