@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #050505;
    font-family: 'Inter', sans-serif;
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
    scrollbar-width: thin;
    scrollbar-color: #333 #050505;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #444;
}

/* Background Atmosphere */
.background-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 800px;
    background: radial-gradient(circle at center, rgba(155, 17, 17, 0.216) 0%, rgba(5, 5, 5, 0) 70%);
    /* Green glow to match button */
    z-index: -1;
    pointer-events: none;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    padding: 24px 48px;
    width: 100%;
    z-index: 10;
    position: relative;
}

.nav-brand {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    margin-right: 48px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #e5e5e5;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #fff;
}

/* Hero Section - Simplified */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    min-height: 60vh;
    perspective: 1200px;
    /* Perspective for the tilt */
}

.hero-main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    /* Increased to fit image */
    padding: 0 20px;
    z-index: 5;
    width: 100%;
}

.hero-main-content h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    max-width: 800px;
    /* Subtle gradient on the text */
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Fade-in animation */
    animation: fadeInUp 0.8s ease-out;
}

/* Highlight effect for emphasized words */
.hero-main-content h2 .highlight {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

/* Fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    /* Space before image */
}

/* Showcase Image with Tilt */
.hero-showcase {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    transform-style: preserve-3d;
    transform: rotateX(10deg);
    /* The requested tilt effect */
    transition: transform 0.4s ease-out;
}



.showcase-img {
    width: 100%;
    max-width: 1100px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid #333;
}

.btn {
    text-decoration: none;
    padding: 16px 48px;
    /* Larger buttons */
    border-radius: 9999px;
    font-weight: 700;
    /* Bolder text */
    font-size: 1.2rem;
    transition: transform 0.1s ease-in-out;
    /* Smooth snappy transition */
    letter-spacing: -0.5px;
    /* Tighter text in button */
    display: inline-block;
}

/* Hover: Slight scale up, NO GLOW */
.btn:hover {
    transform: scale(1.03);
}

/* Active: Press down effect */
.btn:active {
    transform: scale(0.96);
}

/* Green Primary Button */
.btn-primary {
    background-color: #a31616;
    color: white;
    border: none;
}

/* Dark Grey Secondary Button */
.btn-secondary {
    background: #252525;
    /* Solid dark grey base to match image */
    color: #fff;
    border: 1px solid #333;
    /* subtle inner highlight */
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: #2a2a2a;
    border-color: #444;
}