* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #1C2526;
    color: #fff;
}

/* Header */
header {
    background-color: #2A3435;
    padding: 1rem 2rem;
    border-bottom: 2px solid #FF5733;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF5733;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

nav ul li a:hover {
    color: #FF5733;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/guitar-bg.png');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 50%;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(255, 87, 51, 0.3);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #FF5733;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
    margin: 2rem auto;
    display: block;
    width: fit-content;
}

.cta-button:hover {
    background-color: #e04e2d;
    transform: scale(1.05);
}

.hero-image img {
    max-width: 300px;
    border: 2px solid #FF5733;
    border-radius: 5px;
    cursor: pointer;
}

/* Secondary CTA Link */
.secondary-cta {
    display: inline-block;
    color: #FF5733;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    margin-top: 1rem;
    transition: color 0.3s;
}

.secondary-cta:hover {
    color: #e04e2d;
    text-decoration: underline;
}

/* Value Proposition Section */
.value-proposition {
    padding: 4rem 2rem;
    text-align: center;
}

.value-proposition h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.value-proposition p {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.value-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.value-item {
    max-width: 300px;
    text-align: center;
}

.value-item .icon {
    font-size: 3rem;
    color: #FF5733;
    margin-bottom: 1rem;
}

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

.value-item p {
    font-size: 1rem;
}

/* Tools Showcase Section */
.tools-showcase {
    padding: 4rem 2rem;
    background-color: #2A3435;
    text-align: center;
}

.tools-showcase h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.tool-item img {
    width: 100%;
    border: 2px solid #FF5733;
    border-radius: 5px;
    cursor: pointer;
}

.tool-item .caption {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 255, 0.5);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    display: block;
    margin: 5% auto;
    max-width: 80%;
    max-height: 80vh;
    border: 3px solid #FF5733;
    border-radius: 5px;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #FF5733;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #e04e2d;
}

/* Pricing Section */
.pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
}

.pricing-content {
    max-width: 50%;
}

.pricing h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pricing p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.pricing-image img {
    max-width: 300px;
    border: 2px solid #FF5733;
    border-radius: 5px;
}

/* Introduction Section (Browse Page) */
.intro {
    padding: 4rem 2rem;
    text-align: center;
}

.intro h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(255, 87, 51, 0.3);
    margin-bottom: 1rem;
}

.intro p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Scroller Section (Browse Page) */
.scroller-section {
    padding: 4rem 2rem;
    background-color: #2A3435;
    text-align: center;
}

.scroller-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Carousel Styles (Browse Page) */
.carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    background-color: #1C2526;
    border: 2px solid #FF5733;
    border-radius: 5px;
    padding: 1rem;
}

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

.slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide img {
    width: 100%;
    max-width: 600px;
    border: 2px solid #FF5733;
    border-radius: 5px;
    cursor: pointer;
}

.slide .caption {
    font-size: 1rem;
    margin-top: 1rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 255, 0.5);
    text-align: center;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FF5733;
    color: #fff;
    border: none;
    padding: 1.5rem;
    cursor: pointer;
    font-size: 2rem;
    transition: background-color 0.3s;
    border-radius: 5px;
    z-index: 10; /* Ensure buttons are clickable */
}

.carousel-button:hover {
    background-color: #e04e2d;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.carousel-dots {
    text-align: center;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allow dots to wrap on smaller screens */
    gap: 5px;
}

.dot {
    height: 12px; /* Slightly smaller dots to fit more */
    width: 12px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #FF5733;
}

/* Footer */
footer {
    background-color: #2A3435;
    padding: 2rem;
    text-align: center;
    border-top: 2px solid #FF5733;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-links a:hover {
    color: #FF5733;
}

.newsletter {
    margin: 1rem 0;
}

.newsletter p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.newsletter form {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.newsletter input {
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter button {
    background-color: #FF5733;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.newsletter button:hover {
    background-color: #e04e2d;
}

.copyright {
    font-size: 0.875rem;
    margin-top: 1rem;
}
/* Add these to the existing styles.css */

/* Info Link */
.info-link {
    color: #FF5733;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.info-link:hover {
    color: #e04e2d;
    text-decoration: underline;
}

/* Info Modal Content */
.info-modal-content {
    background-color: #fff;
    color: #000;
    padding: 2rem;
    max-width: 600px;
    margin: 10% auto;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.info-modal-content p {
    font-size: 1rem;
    line-height: 1.5;
}

.info-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #FF5733;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.info-close:hover,
.info-close:focus {
    color: #e04e2d;
}
/* Basic Responsiveness */
@media (max-width: 768px) {
    .hero, .pricing {
        flex-direction: column;
        text-align: center;
    }

    .hero-content, .pricing-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .hero-image img, .pricing-image img {
        max-width: 100%;
    }

    .value-grid, .tools-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        max-width: 90%;
        max-height: 70vh;
    }

    .intro h1 {
        font-size: 2rem;
    }

    .intro p {
        font-size: 1rem;
    }

    .scroller-section h2 {
        font-size: 1.5rem;
    }

    .carousel {
        max-width: 100%;
        padding: 0.5rem;
    }

    .carousel-button {
        padding: 1rem;
        font-size: 1.5rem;
    }

    .slide img {
        max-width: 100%;
    }

    .dot {
        height: 10px;
        width: 10px;
    }
}