:root {
    --bg-pattern: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c19a5b' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

body {
    background-color: #F7F5F0;
    background-image: var(--bg-pattern);
    color: #2D2B2A;
}

.glass-panel {
    background: rgba(247, 245, 240, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(193, 154, 91, 0.2);
}

.magazine-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(193, 154, 91, 0.15);
    box-shadow: 0 10px 30px -10px rgba(26, 54, 45, 0.1);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.magazine-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(26, 54, 45, 0.2);
    border-color: rgba(200, 90, 54, 0.4);
}

.title-gradient {
    background: linear-gradient(135deg, #1A362D 0%, #C85A36 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Highly Orchestrated Motion */
@keyframes revealUp {
    0% { opacity: 0; transform: translateY(50px) scale(0.98); filter: blur(4px); }
    100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.animate-reveal {
    opacity: 0;
    animation: revealUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Elegant hover underlines */
.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #C85A36;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}
