@font-face {
    font-family: "Roboto";
    src: url("fonts/Roboto/Roboto-Regular.ttf");
    font-weight: 400;
    font-style: normal;
  }

img{
    max-width: 100%;
    object-fit: cover;
    display: block;
}
a{
    color: inherit;
    text-decoration: none;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0d0620, #2a1b5a);
    color: #fff;
    overflow-x: hidden;
}

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

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 6, 32, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
     padding: 20px;
}

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

.logo {
    font-size: 2.2rem;
    color: #ff2e63;
    text-shadow: 0 0 15px rgba(255, 46, 99, 0.7);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #ff2e63;
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #fff;
}

section {
    padding: 80px 0;
}
.section-top{
    padding-top: 130px;
}
h2, h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: #ff2e63;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-button {
    background: linear-gradient(45deg, #ff2e63, #6b48ff);
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 10px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 46, 99, 0.7);
}

.hero {
    height: 100vh;
    max-height: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('image/banner.webp') top center/cover no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    text-shadow: 0 0 25px #ff2e63;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(3px, -3px); }
    60% { transform: translate(-3px, -3px); }
    80% { transform: translate(3px, 3px); }
    100% { transform: translate(0); }
}

.hero p {
    font-size: 1.6rem;
    margin: 20px auto;
    max-width: 600px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 46, 99, 0.3);
}

.feature-card img {
    border-radius: 10px;
}

.slider-container {
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
}

.slider-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 25px;
    border-radius: 8px;
    max-width: 500px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.slider-nav button {
    background: #ff2e63;
    border: none;
    padding: 10px;
    cursor: pointer;
    color: #fff;
    font-size: 1.5rem;
    border-radius: 50%;
}
.img{
    border-radius: 50%; 
    margin-bottom: 10px;
}
.flex{
    display: flex;
    align-items: center;
    gap: 40px;
}
.flex img{
    width: 50%;
    border-radius: 10px;
}
.accordion {
    margin: 20px 0;
}

.accordion-item {
    margin-bottom: 15px;
}

.accordion-header {
    background: linear-gradient(45deg, #ff2e63, #6b48ff);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    transition: transform 0.3s;
}

.accordion-header:hover {
    transform: scale(1.02);
}

.accordion-content {
    display: none;
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 8px;
}

.accordion-content.active {
    display: block;
}

.instrument-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.instrument-guide-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.instrument-guide-card:hover {
    transform: translateY(-10px);
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
}

.contact-form button {
    background: linear-gradient(45deg, #ff2e63, #6b48ff);
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.contact-form button:hover {
    transform: scale(1.05);
}
.contact-form label{
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}
.contact-form label input{
    width:  auto;
    margin: 0;
}

footer {
    background: #0d0620;
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-grid a {
    color: #ff2e63;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-grid a:hover {
    color: #6b48ff;
}
a.footer-logo{
    font-size: 28px;
    color: #fff;
    display: inline-block;
    margin-bottom: 15px;
}
.highlight-section {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.highlight-section img {
    max-width: 50%;
    border-radius: 10px;
}

.highlight-text {
    flex: 1;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.product-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 46, 99, 0.3);
}

.product-card img {
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-card .price {
    color: #6b48ff;
    font-size: 1.2rem;
    margin: 10px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: #ff2e63;
}

.inspiration-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.inspiration-block img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
}

.accessory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.accessory-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.accessory-card img {
    border-radius: 10px;
    margin-bottom: 10px;
}

.learn-hero {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.learn-hero img {
    max-width: 50%;
    border-radius: 10px;
}

.learn-hero-text {
    flex: 1;
}

.tutorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.tutorial-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tutorial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 46, 99, 0.3);
}

.tutorial-card img {
    border-radius: 10px;
    margin-bottom: 15px;
}
.technique-block {
    display: flex;
    gap: 30px;
    align-items: center;
}

.technique-block img {
    max-width: 40%;
    border-radius: 10px;
}

.technique-text {
    flex: 1;
}

.resource-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.resource-table th, .resource-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.resource-table th {
    background: #ff2e63;
}

.practice-tips {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.gear-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gear-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.gear-card img {
    border-radius: 10px;
    margin-bottom: 10px;
}

.community-block {
    text-align: center;
}

.community-block img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    margin: 20px auto;
}

p, li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

/* Thanks Page Specific Styles */
.thanks-page  {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.thanks-page .cta-button {
    text-decoration: none;
}

@media (max-width: 768px) {
    h1, h2{
        font-size: 2rem;
    }
    nav {
        display: none;
    }

    nav.active {
        display: block;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #0d0620;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    nav a {
        font-size: 1.5rem;
    }

    .burger {
        display: block;
    }

    body.no-scroll {
        overflow: hidden;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .slide img {
        height: 400px;
    }

    .highlight-section, .learn-hero, .technique-block, .flex {
        flex-direction: column;
    }

    .highlight-section img, .learn-hero img, .technique-block img , .flex img{
        max-width: 100%;
        width: 100%;
    }
    .learn-hero, .practice-tips, .highlight-section {
        padding: 20px;
    }

    .category-item, .skill-item {
        min-width: 100%;
    }
    .container{
        padding: 0 10px;
    }
    .resource-table th, .resource-table td, .comparison-table th, .comparison-table td {
        padding: 5px;
        font-size: 12px;
    }
}