/* theVgency - Main Styles */

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

:root {
    --vgency-red: #C41E3A;
    --dark-bg: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* V Background Animation Layer */
#v-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vh;
    height: 75vh;
    max-width: 90vw;
    max-height: 85vw;
    z-index: 1;
    pointer-events: none;
    transition: opacity 800ms ease-out;
}

#v-container.faded {
    opacity: 0.30;
}

.stroke {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.stroke img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#left-stroke {
    clip-path: inset(0 0 100% 0);
    transform: rotate(6deg);
    transform-origin: center center;
}

#right-stroke {
    clip-path: inset(100% 0 0 0);
    transform: rotate(3deg) scaleY(1.15) translateX(-5%);
    transform-origin: center bottom;
}

/* Main Content */
.content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header */
header {
    text-align: center;
    padding: 100px 20px 60px;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.tagline {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 40px;
}

/* Sections */
section {
    margin: 80px 0;
    padding: 40px 20px;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--vgency-red);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin: 30px 0 15px;
}

p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--vgency-red);
    color: white;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background: #a01828;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

/* Footer */
footer {
    text-align: center;
    padding: 60px 20px 40px;
    color: var(--text-secondary);
    border-top: 1px solid #222;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 60px 20px 40px;
    }
    
    section {
        margin: 50px 0;
        padding: 20px;
    }
}
