/* v2.css - Guaranteed Visibility Version */

:root {
    --bg-dark: #050505;
    /* Matte Black */
    --bg-card: #111111;
    /* Very dark grey */
    --accent-gold: #E5E4E2;
    /* Platinum/Silver instead of Gold */
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: #fff;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Layout Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: var(--bg-card);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.3;
}

.card h3 {
    font-size: 1.5rem;
    /* Larger like v1 */
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.card p {
    position: relative;
    z-index: 1;
    font-size: 1rem;
}

.number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
    z-index: 0;
}

/* Hero */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    /* Using a fallback color first, then gradient, then image */
    background-color: var(--bg-dark);
    background-image: linear-gradient(rgba(10, 14, 23, 0.8), rgba(10, 14, 23, 0.9)), url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 600px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--accent-gold);
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
}

/* Influencer/Brand Sections */
.image-box {
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px;
}

.image-box img {
    width: 100%;
    height: auto;
}

/* Contact */
input,
textarea,
select {
    display: block;
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: #0f141e;
    border: 1px solid #333;
    color: #fff;
    font-family: inherit;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    cursor: pointer;
}

button {
    cursor: pointer;
    border: none;
}

/* Mobile */
@media (max-width: 768px) {

    .grid,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.5rem;
    }
}