/* ========================================
   ni.club Brand Styles
   ======================================== */

/* Base Styles */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #FDF8FB;
    color: #1F314A;
}

h1, h2, h3, .serif-font {
    font-family: 'Playfair Display', serif;
}

/* Brand Colors */
.bg-blush {
    background-color: #FDE8F0;
}

.bg-navy {
    background-color: #1F314A;
}

.text-navy {
    color: #1F314A;
}

.text-pink {
    color: #F7A1C4;
}

.border-pink {
    border-color: #F7A1C4;
}

/* Buttons */
.btn-primary {
    background-color: #F7A1C4;
    color: #1F314A;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #f08bb8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(247, 161, 196, 0.4);
}

.btn-navy {
    background-color: #1F314A;
    color: white;
    transition: all 0.3s ease;
}

.btn-navy:hover {
    background-color: #2a4160;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(31, 49, 74, 0.3);
}

/* Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(247, 161, 196, 0.3);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(247, 161, 196, 0.3);
}

/* Text Effects */
.gradient-text {
    background: linear-gradient(135deg, #1F314A 0%, #F7A1C4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

.animate-marquee {
    animation: marquee 20s linear infinite;
}

/* Legal Pages Styles */
.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1F314A;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: rgba(31, 49, 74, 0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: rgba(31, 49, 74, 0.7);
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content a {
    color: #F7A1C4;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.legal-content a:hover {
    color: #f08bb8;
}
