/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

        body {
            margin: 0;
            font-family: Arial, Helvetica, sans-serif;
            background-color: #f8f7ff;
            color: #333;
        }

        header {
            background: linear-gradient(135deg, #c77dff, #80ffb3);
            padding: 60px 20px;
            text-align: center;
        }

        .logo {
            max-width: 140px;
            margin-bottom: 15px;
        }
       .image-row {
          display: flex;
           justify-content: center; /* Centers horizontally */
          align-items: center;     /* Centers vertically (optional) */
           gap: 20px;               /* Space between images */
          }

        header h1 {
            margin: 10px 0 0;
            font-size: 3rem;
            color: #3a006f;
        }

        header p {
            font-size: 1.3rem;
            margin-top: 10px;
        }

        section {
            padding: 50px 20px;
            max-width: 1100px;
            margin: auto;
        }

  
h2 {
    text-align: center;
    margin-top: 50px;
    color: #6a00c8;
}

        /* TWO-COLUMN LAYOUT */
        .details-wrapper {
            display: flex;
            gap: 40px;
            align-items: center;
            margin-bottom: 50px;
        }

        .details-image img {
            width: 100%;
            max-width: 480px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            object-fit: cover;
        }

        .highlight {
            background-color: #ffffff;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            flex: 1;
        }

        .cards {
            display: flex;
            gap: 25px;
            margin-top: 25px;
        }

        .card {
            flex: 1;
            background-color: #ffffff;
            border-radius: 18px;
            padding: 35px 25px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            text-align: center;
            position: relative;
            border-top: 6px solid #80ffb3;
        }

        .card h3 {
            color: #6a00c8;
            margin-bottom: 10px;
        }

        .price {
            font-size: 2.2rem;
            font-weight: bold;
            margin: 12px 0;
        }

        .savings {
            color: #2fa36b;
            font-weight: bold;
        }

        .badge {
            position: absolute;
            top: -14px;
            right: -14px;
            background-color: #80ffb3;
            color: #003d1f;
            padding: 10px 16px;
            font-size: 0.85rem;
            font-weight: bold;
            border-radius: 22px;
        }

        .payments {
            margin-top: 50px;
            text-align: center;
        }

        .payment-buttons {
            display: flex;
            justify-content: center;
            gap: 18px;
            flex-wrap: wrap;
            margin-top: 18px;
        }

        .pay-btn {
            padding: 14px 26px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            min-width: 150px;
            text-align: center;
            color: white;
        }

        .venmo { background-color: #3d95ce; }
        .zelle { background-color: #6d1ed4; }
        .paypal { background-color: #003087; }

        footer {
            background-color: #ece9ff;
            color: #555;
            text-align: center;
            padding: 25px;
            font-size: 0.9rem;
        }
        

        /* MOBILE */
        @media (max-width: 900px) {
            .details-wrapper {
                flex-direction: column;
            }

            .details-image img {
                max-width: 100%;
            }

            .cards {
                flex-direction: column;
            }
        }
        
        /* ABOUT SECTION */
/* ABOUT SECTION - TWO COLUMNS */
.about-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 50px auto;
}

.about-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    object-fit: cover;
}

.about-content {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    flex: 1;
}

.about-content h2 {
    color: #6a00c8;
}

.about-content h3 {
    color: #6a00c8;
    margin-top: 25px;
}

.cert-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.cert-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.cert-icon {
    font-size: 1.4rem;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .about-wrapper {
        flex-direction: column;
    }

    .about-image img {
        max-width: 100%;
    }
}

/* NAVIGATION */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffffee;
    display: flex;
    justify-content: center;
    gap: 35px;
    padding: 14px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.navbar a {
    text-decoration: none;
    font-weight: bold;
    color: #6a00c8;
    font-size: 1.05rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.navbar a:hover {
    color: #c77dff;
    transform: translateY(-2px);
}

/* MOBILE NAV */
@media (max-width: 600px) {
    .navbar {
        gap: 20px;
        font-size: 0.95rem;
    }
}

/* SONG LIST + TAGS */
.song-list {
    list-style: none;
    padding: 0;
    line-height: 2;
    font-size: 1.05rem;
}

.tag {
    margin-left: 10px;
    padding: 4px 10px;
    border-radius: 14px;
    font-size: 0.75rem;
    font-weight: bold;
    color: white;
}

/* Rhythm colors */
.salsa { background-color: #ff6b6b; }
.reggaeton { background-color: #6a00c8; }
.merengue { background-color: #ff9f1c; }
.cumbia { background-color: #2fa36b; }
.latinpop { background-color: #ff9f1c; }
.soca { background-color:dodgerblue; }
.pop { background-color: Magenta; }
.electrofusion{ background-color: Violet; }

.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
}

.section-visual {
    display: flex;
    justify-content: center;
    margin: 10px 0 20px;
}

.section-visual img {
      width: 280px;      /* HARD limit */
    height: 140px;     /* HARD limit */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
    width: 220px !important;
    max-width: 220px !important;
    height: 110px !important;
    object-fit: cover !important;
    display: block !important;
}

/* Cards layout */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.card h3 {
    margin-top: 10px;
    color: #222;
}

.card p {
    color: #555;
    font-size: 0.95rem;
}


    