/* EPIC Motorsports Marketing - Clean Minimal Design inspired by WWP Group */
/* Professional, clean, and minimal aesthetic */

/* Import clean fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Reset and 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;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Typography - Clean and Minimal */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #000000;
    letter-spacing: -0.02em;
}

h1 { 
    font-size: clamp(3rem, 8vw, 8rem); 
    font-weight: 900;
    line-height: 0.9;
}

h2 { 
    font-size: clamp(2rem, 5vw, 4rem); 
    font-weight: 800;
    line-height: 1.1;
}

h3 { 
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700; 
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #666666;
    font-size: 1rem;
    font-weight: 400;
}

a {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

a:hover {
    opacity: 0.7;
}

/* Clean Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border: 2px solid #000000;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: transparent;
    color: #000000;
}

.btn:hover {
    background: #000000;
    color: #ffffff;
}

.btn-primary {
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
}

.btn-primary:hover {
    background: transparent;
    color: #000000;
}

.btn-secondary {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.btn-secondary:hover {
    background: #000000;
    color: #ffffff;
}

/* Section Spacing */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-label {
    color: #000000;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: block;
}

.section-title {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    color: #000000;
    margin-bottom: 2rem;
    position: relative;
    line-height: 0.9;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 60px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 60px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }

/* Clean Cards */
.card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 60px 40px;
    transition: all 0.3s ease;
    position: relative;
}

.card:hover {
    border-color: #000000;
    transform: translateY(-4px);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Focus States */
*:focus {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.85rem;
    }
    
    .card {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }
    
    .card {
        padding: 32px 20px;
    }
}