/* ==========================================================================
   Lions Club Vardar - Landing Page Style Guide (Simplified & Elegant)
   Theme: Classic Deep-Navy & Gold
   ========================================================================== */

/* Variables & Base Customization */
:root {
    --bg-navy: #0B132B;
    --bg-navy-light: #1C2541;
    --gold: #D4AF37;
    --gold-light: #FFE082;
    --gold-dark: #AA7C11;
    
    --text-dark: #0B132B;
    --text-gray: #4A5568;
    --text-light: #F7FAFC;
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', Inter, sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    min-height: 100vh;
    background: radial-gradient(circle at center, #1C2541 0%, #0B132B 100%);
    color: var(--text-light);
    font-family: var(--font-sans);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- CONTAINER & LAYOUT --- */
.page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
    padding: 2rem 1rem;
    min-height: 90vh;
}

/* --- MAIN CARD --- */
.main-content {
    width: 100%;
    margin: auto 0;
    animation: fadeIn 0.8s var(--transition-smooth);
}

.main-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 5px solid var(--gold);
}

/* Logo Frame */
.logo-wrapper {
    margin-bottom: 1rem;
}

.logo-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 50%;
    background-color: #FFFFFF;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 3px solid var(--gold);
    transition: var(--transition-smooth);
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Brand Typography */
.brand-text {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.brand-sub {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-gray);
}

.brand-main {
    font-size: 1.6rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--bg-navy);
    line-height: 1.2;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FFFBEB;
    border: 1px solid #FEF3C7;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: var(--gold);
    border-radius: 50%;
    animation: dotPulse 2s infinite ease-out;
}

@keyframes dotPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold-dark);
}

/* Text elements */
.hero-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--bg-navy);
}

.hero-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 480px;
}

/* --- BUTTONS & ACTIONS --- */
.buttons-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    width: 100%;
}

.btn i {
    font-size: 1rem;
}

/* Facebook Button Styling */
.btn-facebook {
    background-color: #1877F2;
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(24, 119, 242, 0.2);
}

.btn-facebook:hover {
    background-color: #166FE5;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(24, 119, 242, 0.3);
}

/* Email action layout */
.email-action-wrapper {
    background-color: #F7FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
}

.email-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.email-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.email-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bg-navy);
}

.email-buttons {
    display: flex;
    gap: 0.8rem;
    width: 100%;
}

.btn-email {
    background-color: var(--bg-navy);
    color: #FFFFFF;
    flex: 1;
}

.btn-email:hover {
    background-color: #1C2541;
    transform: translateY(-2px);
}

.btn-copy {
    background-color: #FFFFFF;
    border: 1px solid #CBD5E0;
    color: var(--text-gray);
    flex: 1;
}

.btn-copy:hover {
    background-color: #F7FAFC;
    border-color: #A0AEC0;
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* Tooltip design */
.tooltip {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: var(--bg-navy);
    color: #FFFFFF;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 5;
}

.tooltip.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}


/* --- FOOTER --- */
.main-footer {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.motto {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold);
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.copyright {
    font-size: 0.7rem;
    color: #718096;
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- RESPONSIVENESS --- */
@media (max-width: 480px) {
    .main-card {
        padding: 2rem 1.2rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .logo-img {
        width: 140px;
        height: 140px;
    }
    
    .email-buttons {
        flex-direction: column;
        gap: 0.6rem;
    }
    
}
