/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0a0a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}

h3 {
    font-size: 1.8rem;
    color: #ff4444;
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 2px solid #ff4444;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #ff4444;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff4444;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, #ff4444 48%, #ff4444 52%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, #ff4444 48%, #ff4444 52%, transparent 52%);
    background-size: 100px 100px;
    opacity: 0.03;
    animation: moveStripes 20s linear infinite;
}

@keyframes moveStripes {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
}

.hero-title {
    font-size: 6rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255, 68, 68, 0.5); }
    to { text-shadow: 0 0 40px rgba(255, 68, 68, 0.8), 0 0 60px rgba(255, 68, 68, 0.4); }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 68, 68, 0.6);
}

/* Introduction Section */
.intro {
    padding: 6rem 0;
    background: #0f0f0f;
}

.intro h2 {
    color: #ff4444;
}

.intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #c0c0c0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Guitar Types Section */
.guitar-types {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
}

.guitar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.guitar-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.guitar-card:hover {
    transform: translateY(-5px);
    border-color: #ff4444;
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.guitar-card h3 {
    margin-bottom: 1rem;
}

.guitar-card p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 0.5rem 0;
    color: #888;
    border-bottom: 1px solid #2a2a2a;
    font-size: 0.9rem;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li::before {
    content: '▸ ';
    color: #ff4444;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #0a0a0a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-item h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Legends Section */
.legends {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.legends-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.legend-item {
    background: rgba(255, 68, 68, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #ff4444;
    transition: transform 0.3s ease, background 0.3s ease;
}

.legend-item:hover {
    transform: translateX(5px);
    background: rgba(255, 68, 68, 0.1);
}

.legend-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.legend-item p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 2rem;
}

.cta-section .cta-button {
    background: #fff;
    color: #ff4444;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-section .cta-button:hover {
    background: #f0f0f0;
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: #0a0a0a;
    border-top: 1px solid #2a2a2a;
    text-align: center;
}

.footer p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.8rem;
    }
    
    .guitar-grid,
    .features-grid,
    .legends-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .nav-links {
        gap: 0.5rem;
    }
}


