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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

/* Header Styles */
header {
    background: rgba(0, 0, 0, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    transition: background 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}


.guitar-icon {
    width: 300px;
    height: 400px;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    border-radius: 150px 150px 50px 50px;
    position: relative;
    animation: rotate 10s linear infinite;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.guitar-icon::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: #2a2a2a;
    border-radius: 50%;
    border: 10px solid #8B4513;
}

.guitar-icon::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 180px;
    background: linear-gradient(to bottom, #C0C0C0, #808080);
    box-shadow: 20px 0 0 #C0C0C0, 40px 0 0 #C0C0C0, 60px 0 0 #C0C0C0, 80px 0 0 #C0C0C0, 100px 0 0 #C0C0C0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}
@keyframes glow {
    from { filter: drop-shadow(0 0 5px rgba(255, 107, 53, 0.5)); }
    to { filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.8)); }
} 
@keyframes rotate {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}   
 @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}    
/* Text Animation */
.animated-text {
    font-size: 5em;
    color: #333;
    animation: fadeInOut 2s infinite alternate; /* Animation properties */
}

.animated-text p {
    font-size: 1.5em; /* 50% larger than base font size */
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}
/* End Text Animation */

/* Full Blast Styles */
/* Header Content Section */
.header-content {
    padding-top: 120px;
    background: #34495e;
    text-align: center;
    padding-bottom: 40px;
}

.header-content h1 {
    color: #ecf0f1;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.header-content h2 {
    color: #3498db;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.header-content h3 {
    color: #e74c3c;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.header-content p {
    color: #ecf0f1;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Method Description Text */
.method-description {
    color: white;
    line-height: 1.6;
    margin: 3.2em 0;
    font-size: 1rem;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.description-extended {
    color: white;
    line-height: 1.2;
    margin: 3.2em 0;
    font-size: 1rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.volume {
    color: white;
    line-height: 1.2;
    margin: 3.2em 0;
    font-size: 1rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.table-of-contents {
    margin: 2rem 0 3rem;
    text-align: left;
}

.table-of-contents h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.table-of-contents ul {
    color: white;
    margin: 0;
    padding-left: 1.25rem;
    line-height: 1.5;
}

.table-of-contents li {
    margin-bottom: 0.4rem;
}
/* Products Section */
.products {
    background: #2c3e50;
}
/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

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

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

#books-choice-bass {
    background: linear-gradient(45deg, #764ba2, #667eea);
    border-color: transparent;
    color: #ffffff;
}

#books-choice-bass:hover {
    background: linear-gradient(45deg, #6c4394, #5b72d9);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

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

.feature-icon-svg {
    width: 3rem;
    height: 3rem;
    display: inline-block;
    vertical-align: middle;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}
.feature-card h4 {
    font-size: 1.0rem;
    margin-bottom: 1rem;
    color: white;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: #2c3e50;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}
.products h3 {
    text-align: center;
    font-size: 2.0rem;
    margin-bottom: 3rem;
    color: white;
}
.products p {
    text-align: center;
    font-size: 1.0rem;
    margin-bottom: 1.0rem;
    color: rgb(123, 186, 231);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.35);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f5f8ff;
    font-family: 'Cormorant Garamond', 'Baskerville', 'Times New Roman', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.product-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group select {
    color: white;
}

.form-group select option {
    background: #333;
    color: white;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1001;
}

.flash-message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    max-width: 300px;
    animation: slideIn 0.3s ease;
}

.flash-message.success {
    background: #27ae60;
    color: white;
}

.flash-message.error {
    background: #e74c3c;
    color: white;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Cool Music Stuff Section */
.cool-music-stuff {
    background: linear-gradient(145deg, #1a2238 0%, #223a5f 45%, #2e5678 100%);
    background-size: 140% 140%;
    background-position: 50% 50%;
    padding: 4rem 0;
    text-align: center;
    width: 80%;
    margin: 0 auto;
    border-radius: 25px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background-position 0.45s ease;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.cool-music-stuff::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.cool-music-stuff:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
    background-position: 58% 42%;
}

.cool-music-stuff:hover::before {
    opacity: 1;
}

.cool-music-stuff h1 {
    font-size: 1.55rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    text-transform: none;
    letter-spacing: 0.6px;
    font-family: 'Cormorant Garamond', 'Baskerville', 'Times New Roman', serif;
}

.cool-music-stuff h2 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #f5f8ff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    margin-bottom: 1.5rem;
    text-transform: none;
    letter-spacing: 0.6px;
    font-family: 'Cormorant Garamond', 'Baskerville', 'Times New Roman', serif;
}

.cool-music-stuff h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #f4d58d;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    margin-bottom: 1rem;
    font-style: normal;
}

.cool-music-stuff h3:last-of-type {
    color: #d7e9ff;
    font-size: 1rem;
    text-transform: capitalize;
}

@media (prefers-reduced-motion: reduce) {
    .cool-music-stuff {
        transition: none;
    }

    .cool-music-stuff::before {
        transition: none;
    }

    .cool-music-stuff:hover {
        transform: none;
        background-position: 50% 50%;
    }

    .product-card {
        transition: none;
    }

    .product-card::before {
        transition: none;
    }

    .product-card:hover {
        transform: none;
    }
}

/* Christmas Music Section */
.christmas-music-stuff {
    background: linear-gradient(135deg, #c41e3a 0%, #22518b 50%, #e9e9e5 100%);
    padding: 4rem 0;
    text-align: center;
    width: 80%;
    margin: 0 auto;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.christmas-music-stuff::before {
    content: '❄️ ❄️ ❄️ ❄️ ❄️';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.christmas-music-stuff::after {
    content: '🎄 🎁 🎄 🎁 🎄';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.christmas-music-stuff h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.christmas-music-stuff h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffd700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
    font-style: italic;
}

.christmas-music-stuff h3:last-of-type {
    color: #fff;
    font-size: 2rem;
    text-transform: capitalize;
    text-shadow: 2px 2px 6px rgba(196, 30, 58, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
}