/* Custom user CSS overrides for Sleeper Cell template */
/* ============================================================
   Original Sleeper Cell Landing Page CSS
   Paste into user.css to use these classes in your Joomla pages
   ============================================================ */

:root {
    --cream: #E8D5B7;
    --slate: #526774;
    --dark-slate: #3a4a54;
    --deep-black: #0a0a0a;
    --gold: #d4a574;
    --rich-black: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--deep-black);
    color: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Art Deco Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(232, 213, 183, 0.02) 2px,
            rgba(232, 213, 183, 0.02) 4px
        );
    pointer-events: none;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    text-align: center;
    padding: 60px 20px 40px;
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.logo {
    max-width: 300px;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    animation: fadeInScale 1s ease-out;
    filter: drop-shadow(0 0 20px rgba(212, 165, 116, 0.3));
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1);   }
}

.headline {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-shadow:
        2px 2px 0 var(--slate),
        4px 4px 0 rgba(82, 103, 116, 0.5);
    animation: slideInFromTop 0.8s ease-out 0.3s both;
}

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

.tagline {
    font-size: clamp(1rem, 3vw, 1.4rem);
    color: var(--cream);
    font-weight: 300;
    letter-spacing: 0.08em;
    font-style: italic;
    animation: slideInFromTop 0.8s ease-out 0.5s both;
    margin-bottom: 10px;
}

.password-text {
    font-size: 0.9rem;
    color: var(--slate);
    margin-top: 20px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: slideInFromTop 0.8s ease-out 0.7s both;
}

/* Art Deco Divider */
.deco-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto;
    max-width: 600px;
}

.deco-divider::before,
.deco-divider::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--slate), var(--gold), transparent);
}

.deco-divider span {
    padding: 0 30px;
    font-size: 2rem;
    color: var(--gold);
}

/* Content Sections */
.content-section {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(58, 74, 84, 0.3));
    border: 2px solid var(--slate);
    border-radius: 2px;
    padding: 50px 40px;
    margin: 40px auto;
    position: relative;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(232, 213, 183, 0.1);
    animation: fadeInUp 0.8s ease-out both;
}

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

.content-section::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(135deg, var(--gold), transparent 30%, transparent 70%, var(--gold));
    z-index: -1;
    opacity: 0.3;
    border-radius: 2px;
}

.section-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--gold);
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cream);
    max-width: 800px;
    margin: 0 auto;
}

.section-content p {
    margin-bottom: 20px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background: rgba(82, 103, 116, 0.2);
    border: 1px solid var(--slate);
    padding: 25px;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '◆';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.3;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.2);
    border-color: var(--gold);
}

.benefit-item h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.benefit-item p {
    color: var(--cream);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Signup Section */
.signup-section {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(82, 103, 116, 0.2));
    border: 3px solid var(--gold);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.signup-section::before {
    content: '✦';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: var(--gold);
    background: var(--deep-black);
    padding: 0 20px;
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid var(--slate);
    color: var(--cream);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 165, 116, 0.3);
    background: rgba(10, 10, 10, 0.95);
}

.submit-btn {
    background: linear-gradient(135deg, var(--gold), var(--slate));
    color: var(--deep-black);
    border: none;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before { left: 100%; }

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

.incentive-text {
    margin-top: 25px;
    font-size: 1rem;
    color: var(--gold);
    font-style: italic;
    padding: 20px;
    background: rgba(212, 165, 116, 0.1);
    border-left: 3px solid var(--gold);
    border-radius: 2px;
}

/* Founder Section */
.founder-section {
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.founder-section h3 {
    font-family: 'Libre Baskerville', serif;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.founder-section p {
    color: var(--cream);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid var(--slate);
    margin-top: 60px;
    font-size: 0.9rem;
    color: var(--slate);
    letter-spacing: 0.1em;
}

/* Decorative Corners */
.corner-decor {
    position: fixed;
    width: 100px;
    height: 100px;
    border-style: solid;
    border-color: var(--gold);
    opacity: 0.3;
    pointer-events: none;
    z-index: 10;
}

.corner-decor.top-left    { top: 0;    left: 0;  border-width: 2px 0 0 2px; }
.corner-decor.top-right   { top: 0;    right: 0; border-width: 2px 2px 0 0; }
.corner-decor.bottom-left { bottom: 0; left: 0;  border-width: 0 0 2px 2px; }
.corner-decor.bottom-right{ bottom: 0; right: 0; border-width: 0 2px 2px 0; }

/* Responsive */
@media (max-width: 768px) {
    .content-section  { padding: 30px 20px; }
    .benefits-grid    { grid-template-columns: 1fr; }
    .corner-decor     { width: 50px; height: 50px; }
}