/* SosyalTank - Modern Refined CSS */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Variables */
:root {
    --primary: #3B82F6;
    --primary-hover: #2563EB;
    --accent: #F59E0B;
    --text-white: #FFFFFF;
    --text-gray: #CBD5E1;
    --bg-overlay: rgba(15, 23, 42, 0.75);
}

/* Base Body Override */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text-white);
    background-color: #0F172A;
    overflow-x: hidden;
}

/* Navbar Compatibility Fix */
.navbar {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, transparent 100%) !important;
    border-bottom: none !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 15px 0;
    /* Add some spacing */
}

/* Specific Header Button Styles */
.navbar .btn {
    padding: 8px 20px !important;
    /* Reset padding to be smaller */
    font-size: 0.9rem !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    height: auto !important;
    line-height: normal !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.navbar .btn-outline {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: #fff !important;
    box-shadow: none !important;
}

.navbar .btn-outline:hover {
    border-color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.navbar .btn-primary {
    background: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    color: #fff !important;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3) !important;
}

.navbar .btn-primary:hover {
    background: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
    transform: translateY(-1px);
}

/* Wrapper & Hero */
.modern-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url('/assets/images/authentic_hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

.modern-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.95) 100%);
}

.hero-container {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 60px;
}

.hero-text-content {
    max-width: 800px;
}

.main-heading {
    font-size: 6rem;
    line-height: 0.9;
    font-weight: 900;
    margin: 0 0 30px 0;
    letter-spacing: -3px;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.main-heading .highlight {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
    background: linear-gradient(180deg, #FFFFFF 0%, #94A3B8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
}

.sub-heading {
    font-size: 1.5rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 50px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Actions - Hero Specific */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
    padding: 20px 50px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.hero-actions .btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.5);
    border: 2px solid var(--primary);
}

.hero-actions .btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.7);
}

.glow-pulse {
    animation: glow-pulse 3s infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    }

    50% {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.8);
    }
}

.hero-actions .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-actions .btn-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-badges i {
    color: var(--accent);
}

/* Ticker / Marquee */
.ticker-wrap {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    overflow: hidden;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    z-index: 20;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    padding: 0 50px;
    font-size: 1.1rem;
    color: var(--text-white);
    font-weight: 500;
}

@keyframes ticker {
    0% {
        transform: translate3d(100vw, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Footer */
.modern-footer {
    position: relative;
    z-index: 10;
    padding: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .main-heading {
        font-size: 3.5rem;
    }

    .sub-heading {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 30px;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .ticker-wrap {
        bottom: 60px;
    }

    .navbar .btn {
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
    }
}