@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:wght@700;800&display=swap');

:root {
    --primary-gradient: linear-gradient(135deg, #064E3B 0%, #10B981 100%);
    --bg-soft-gradient: linear-gradient(180deg, #FFFFFF 0%, #F0FDF4 100%);
    --accent-emerald: #064E3B;
    --accent-mint: #10B981;
    --text-main: #064E3B;
    --text-muted: #374151;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --footer-bg: #FFFFFF;
    --primary-shadow: rgba(16, 185, 129, 0.2);
}

body {
    padding-top: 70px;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background: var(--bg-soft-gradient);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.serif-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
}

/* Navbar Tuning */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(33, 37, 41, 0.95) !important;
}

/* Content Wrapper */
.main-content {
    flex: 1 0 auto;
}

/* Footer Styles */
.rich-footer {
    background: linear-gradient(180deg, #FFFFFF 0%, #F0FDF4 100%) !important;
    border-top: 1px solid #EEEEEE;
    padding: 80px 0 40px 0;
    margin-top: 100px;
    flex-shrink: 0;
}

.rich-footer,
.rich-footer *,
.rich-footer a,
.rich-footer a:hover,
.rich-footer a:visited {
    color: #000000 !important;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.5rem;
    text-decoration: none;
    margin-bottom: 1rem;
    display: block;
}

.footer-heading {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.subscribe-box {
    position: relative;
}

.subscribe-input {
    border-radius: 50px;
    border: 1px solid #000000;
    padding: 0.8rem 3rem 0.8rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    color: #000000 !important;
}

.subscribe-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid #EEEEEE;
    padding-top: 30px;
    margin-top: 60px;
    font-size: 0.85rem;
}

/* Social Design Elements */
.hero-gradient-text {
    background: linear-gradient(90deg, #064E3B 0%, #10B981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.btn-start-hosting {
    background-color: var(--accent-mint);
    border: none;
    border-radius: 12px;
    padding: 12px 32px;
    font-weight: 600;
    color: white;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-start-hosting:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
    color: white;
}

/* Premium Design Extensions */
.glass-premium {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.glass-premium-white {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

/* Global Button Refactor - Standardizing all action colors to the Emerald Theme */
.btn-primary,
.btn-primary:active,
.btn-primary:focus,
.btn-success,
.btn-success:active,
.btn-success:focus,
.btn-info,
.btn-info:active,
.btn-info:focus {
    background: var(--primary-gradient) !important;
    border: none !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover,
.btn-success:hover,
.btn-info:hover {
    opacity: 0.9 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3) !important;
}

.btn-outline-primary,
.btn-outline-success {
    color: #10B981 !important;
    border-color: #10B981 !important;
    transition: all 0.3s ease !important;
}

.btn-outline-primary:hover,
.btn-outline-success:hover {
    background: var(--primary-gradient) !important;
    color: white !important;
    border-color: transparent !important;
}

.btn-premium {
    background: var(--primary-gradient);
    border: none;
    border-radius: 14px;
    color: white;
    padding: 12px 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-premium:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
    color: white;
}

.pulse-hover:hover {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Theme Utility Overrides */
.text-primary-theme,
.text-accent-theme,
.text-purple {
    color: var(--accent-mint) !important;
}

.bg-primary-theme {
    background: var(--primary-gradient) !important;
}

.bg-theme-soft,
.theme-gradient-soft {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(6, 78, 59, 0.05) 100%) !important;
}

.badge-theme {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--accent-mint);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.4em 0.8em;
    border-radius: 8px;
    font-weight: 600;
}

.spinner-theme {
    color: var(--accent-mint) !important;
}