/* ===================================
   STEAK INCOME - PREMIUM LANDING PAGE
   Black & Gold Aesthetic
   =================================== */

/* ===================================
   RESET & BASE STYLES
   =================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #e0e0e0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #b0b0b0;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: #d4af37;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

/* ===================================
   DIVIDER
   =================================== */

.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #d4af37 50%, 
        transparent 100%);
    margin: 0 auto;
    opacity: 0.4;
}

/* ===================================
   VALUE SECTION
   =================================== */

.value {
    padding: 6rem 2rem;
    background: #0a0a0a;
}

.value-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #c0c0c0;
    font-weight: 300;
    line-height: 1.8;
    padding-left: 1.5rem;
    border-left: 2px solid #d4af37;
    transition: all 0.3s ease;
}

.value-text:hover {
    color: #ffffff;
    border-left-color: #d4af37;
    transform: translateX(8px);
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-email {
    display: inline-block;
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: #d4af37;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.01em;
    padding: 0.75rem 1.5rem;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: #ffffff;
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    padding: 3rem 2rem;
    background: #0a0a0a;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-text {
    text-align: center;
    font-size: 0.875rem;
    color: #606060;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* ===================================
   ANIMATIONS
   =================================== */

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 1.5rem;
    }
    
    .hero-subtitle {
        margin-bottom: 2.5rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
    
    .value {
        padding: 4rem 1.5rem;
    }
    
    .value-content {
        gap: 1.5rem;
    }
    
    .value-text {
        padding-left: 1rem;
    }
    
    .contact {
        padding: 4rem 1.5rem;
    }
    
    .footer {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        margin-bottom: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .value-text {
        font-size: 1rem;
    }
}

/* ===================================
   ACCESSIBILITY
   =================================== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for keyboard navigation */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #d4af37;
    outline-offset: 4px;
}
