:root {
    --btn-primary: #6b21a8;
    --btn-primary-hover: #a855f7;
    --ivory: #fefce8;
    --cyan: #22d3ee;
    --coral: #f87171;
    --dark-bg: #1c1917;
    --white: #fff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html.no-scroll {
    overflow: hidden;
}

body {
    font-family: "Roboto", sans-serif;
    background-color: #edece7;
    color: #1c1917;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 500;
}

p,
li {
    font-size: clamp(1rem, 2vw, 1.125rem);
}

/* Buttons */
.cta-btn,
.secondary-btn,
.link-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 500;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: none;
}

.cta-btn {
    background-color: var(--btn-primary);
    color: var(--ivory);
}

.cta-btn:hover {
    background-color: var(--btn-primary-hover);
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: var(--white);
    border: 2px solid var(--btn-primary);
    color: var(--btn-primary);
}

.secondary-btn:hover {
    background-color: var(--ivory);
    transform: translateY(-2px);
}

.link-btn {
    color: var(--coral);
    position: relative;
}

.link-btn::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--coral);
    transition: width 0.3s ease;
}

.link-btn:hover::after {
    width: 100%;
}

/* Header */
.top-bar {
    background-color: var(--ivory);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.top-bar__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar__brand .brand-link {
    font-size: 2rem;
    font-weight: 700;
    color: var(--btn-primary);
}

.nav-list {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-link {
    font-size: 1.1rem;
    color: #1c1917;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active:not(.action-btn.active) {
    color: var(--cyan);
}

.action-btn {
    background-color: var(--btn-primary);
    color: var(--ivory);
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background-color: var(--btn-primary-hover);
    color: var(--ivory);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--btn-primary);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1001;
}

.menu-toggle.open::before {
    content: "✖";
}
.menu-toggle::before {
    content: "☰";
}

@media (max-width: 768px) {
    .top-bar {
        padding: 0;
    }
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 0;
        height: 100vh;
        left: 0;
        right: 0;
        background-color: var(--ivory);
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-list.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

/* Footer */
.bottom-bar {
    background-color: var(--dark-bg);
    color: var(--ivory);
    padding: 40px 0;
}

.bottom-bar__wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.bottom-bar__info,
.bottom-bar__links,
.bottom-bar__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bottom-bar__info .brand-link {
    font-size: 1.5rem;
    font-weight: 600;
}

.copyright,
.disclaimer {
    font-size: 0.9rem;
}

.footer-link {
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-link:hover,
.footer-link.active {
    color: var(--coral);
}

/* Banner */
.banner {
    color: var(--ivory);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url("../img/audio-studio.jpg") center / cover no-repeat;
}

.banner__content {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.banner__text h1 {
    margin-bottom: 20px;
}

.banner__text a {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .banner__content {
        flex-direction: column;
        text-align: center;
    }
}

/* Equipment Types */
.equipment-types {
    padding: 60px 0;
}

.equipment-types h2 {
    text-align: center;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.equipment-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    transition: transform 0.3s ease;
}

.equipment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.equipment-item a {
    margin-top: auto;
}

@media (max-width: 1199px) {
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .equipment-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* About Snippet */
.about-snippet {
    background-color: #e0ddd7;
    padding: 60px 0;
}

.about-snippet__content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-snippet__text {
    flex: 1;
}

.about-snippet__text h2 {
    margin-bottom: 20px;
}

.about-snippet__text a {
    margin-top: 20px;
}

.about-snippet__image {
    flex: 1;
}

@media (max-width: 768px) {
    .about-snippet__content {
        flex-direction: column;
    }
}

/* Benefits */
.benefits {
    padding: 60px 0;
    text-align: center;
}

.benefits__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.benefit {
    padding: 20px;
}

/* Gallery */
.gallery {
    padding: 60px 0;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery__item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery__item-img {
    overflow: hidden;
    border-radius: 14px;
}

.gallery__item img {
    transition: transform 0.3s ease;
    object-fit: cover;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery-text {
    margin-top: 30px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .gallery__grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background-color: var(--ivory);
}

.testimonials__carousel {
    position: relative;
    overflow: hidden;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 20px;
    animation: fade 15s infinite;
}

.testimonial.active {
    display: block;
}

.testimonial img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 10px;
    object-fit: cover;
    border: 3px solid var(--coral);
}

.testimonials .wrapper h2,
.testimonials .wrapper p {
    text-align: center;
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    25% {
        opacity: 1;
    }
    30% {
        opacity: 0;
    }
    70% {
        opacity: 0;
    }
    75% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .testimonial img {
        width: 80px;
        height: 80px;
    }
}

/* Process */
.process {
    padding: 60px 0;
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.process .wrapper h2,
.process .wrapper p {
    text-align: center;
}

.step {
    text-align: center;
    padding: 20px;
    background-color: var(--ivory);
    border-radius: 14px;
}

/* CTA Section */
.cta-section,
.app-promo,
.app-cta {
    padding: 60px 0;
    text-align: center;
    background-color: #e0ddd7;
}

.cta-section .wrapper,
.app-promo .wrapper,
.app-cta .wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

/* Story */
.story__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding-top: 50px;
}

.values-list {
    list-style: none;
    margin: 20px 0;
}

.values-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.values-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--coral); /* Coral for a bold accent */
    border-radius: 50%;
}

.story__image {
    max-height: 500px;
    overflow: hidden;
}

.story__image img {
    object-fit: cover;
}

@media (max-width: 768px) {
    .story__content {
        grid-template-columns: 1fr;
    }
}

/* History & Founders */
.history,
.founders {
    padding: 60px 0;
    text-align: center;
}

.signature {
    font-style: italic;
    color: var(--coral); /* Coral for a vibrant touch */
}

/* Catalog */
.equipment-catalog {
    padding: 60px 0;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .catalog-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.catalog-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: var(--ivory);
    padding: 20px;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.catalog-item:hover {
    transform: translateY(-5px);
}

/* Contact */
.contact-info,
.hours,
.faq {
    padding: 60px 0;
    text-align: center;
}

.contact-form {
    padding: 60px 0;
    background-color: var(--ivory);
}

.contact-form__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.reach-out {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-input,
.form-textarea {
    padding: 12px;
    border: 1px solid var(--cyan);
    border-radius: 8px;
    font-size: 1rem;
}

.form-textarea {
    resize: vertical;
}

.form-agree {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.hours-item {
    background-color: var(--ivory);
    padding: 20px;
    border-radius: 14px;
}

.faq-list {
    margin-top: 20px;
}

.faq-item {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .contact-form__content {
        grid-template-columns: 1fr;
    }
}

/* Careers */
.careers {
    padding: 60px 0;
    text-align: center;
}

.perks-list {
    list-style: none;
    margin: 20px 0;
}

.perks-list li {
    margin-bottom: 10px;
}

.contact-details {
    margin-top: 20px;
}

.contact-details p {
    margin-bottom: 10px;
}

/* App Page */
.app-content {
    background: url("../img/app.jpg") center/cover no-repeat;
    min-height: 100vh;
    position: relative;
}

.app-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 25, 23, 0.7);
}

.app-hero {
    position: relative;
    z-index: 1;
    color: var(--ivory);
    padding: 80px 0;
    text-align: center;
    min-height: 100%;
}

.app-hero__content {
    backdrop-filter: blur(15px);
    padding: 20px;
    background: rgba(254, 252, 232, 0.15);
    border-radius: 14px;
}

.app-features {
    list-style: none;
    margin: 20px 0;
}

.app-features li {
    margin-bottom: 10px;
}

/* Thanks Page */
.thanks-message {
    padding: 100px 0;
    text-align: center;
}

/* Disclaimer */
.disclaimer-text {
    padding: 60px 0;
}

.disclaimer-text p {
    margin: 30px 0;
}

/* Politics */
.terms-content,
.privacy-policy {
    padding: 50px 0;
}
