/* Main stylesheet for Meadow Muse Voice Artist Website */

/* === BASE STYLES === */
:root {
    --primary-color: #2c6e49;
    --secondary-color: #4d9de0;
    --accent-color: #e0b0d5;
    --dark-color: #2d3748;
    --light-color: #f8f9fa;
    --grey-color: #e2e8f0;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--dark-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* === HEADER === */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-text h1 {
    margin: 0;
    font-size: 24px;
}

.logo-text p {
    margin: 0;
    color: var(--primary-color);
    font-size: 14px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

nav a:hover, 
nav a.active {
    color: var(--primary-color);
}

/* === CIRCLE DECORATIONS === */
.circle-decoration {
    position: absolute;
    border-radius: 50%;
    z-index: 1; /* Set to 1 to ensure they stay behind content */
    pointer-events: none; /* Makes the circles non-interactive so they don't block clicks */
}

/* Original circles */
.circle-1 {
    width: 150px;
    height: 150px;
    background-color: rgba(44, 110, 73, 0.1); /* Light green */
    top: 100px;
    left: 10%;
}

.circle-2 {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(77, 157, 224, 0.2); /* Light blue */
    bottom: 60px;
    left: 25%;
}

.circle-3 {
    width: 200px;
    height: 200px;
    border: 5px solid rgba(72, 202, 178, 0.1); /* Teal */
    top: 80px;
    right: 15%;
}

/* New circles in blue and green shades */
.circle-4 {
    width: 120px;
    height: 120px;
    background-color: rgba(13, 110, 253, 0.08); /* Medium blue */
    bottom: 120px;
    right: 20%;
}

.circle-5 {
    width: 100px;
    height: 100px;
    border: 4px solid rgba(25, 135, 84, 0.1); /* Medium green */
    top: 180px;
    left: 22%;
}

.circle-6 {
    width: 160px;
    height: 160px;
    background-color: rgba(32, 201, 151, 0.1); /* Light teal/green */
    bottom: 30px;
    right: 8%;
}

.circle-7 {
    width: 90px;
    height: 90px;
    border: 3px solid rgba(13, 202, 240, 0.15); /* Light cyan/blue */
    top: 120px;
    left: 5%;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    padding: 80px 20px;
    background-color: var(--light-color);
    overflow: hidden;
    min-height: 400px;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #225536;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

/* === ABOUT SECTION === */
.about {
    padding: 80px 20px;
    background-color: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* === PORTFOLIO SECTION === */
.portfolio {
    padding: 80px 20px;
    background-color: var(--grey-color);
}

.section-title {
    font-size: 36px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-tab {
    padding: 10px 20px;
    border: none;
    background-color: white;
    border-radius: 30px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab.active,
.filter-tab:hover {
    background-color: var(--primary-color);
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: all 0.4s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.item-visual {
    height: 180px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

/* === WAVEFORM STYLES === */
.waveform-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.waveform {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100px;
    width: 80%;
    gap: 4px;
}

.wave-bar {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.wave-bar:nth-child(1) { height: 40%; }
.wave-bar:nth-child(2) { height: 70%; }
.wave-bar:nth-child(3) { height: 50%; }
.wave-bar:nth-child(4) { height: 90%; }
.wave-bar:nth-child(5) { height: 60%; }
.wave-bar:nth-child(6) { height: 80%; }
.wave-bar:nth-child(7) { height: 40%; }
.wave-bar:nth-child(8) { height: 70%; }

.portfolio-item:hover .wave-bar {
    animation: wave-animation 1.2s infinite ease-in-out;
}

.wave-bar:nth-child(2n) { animation-delay: 0.1s; }
.wave-bar:nth-child(3n) { animation-delay: 0.2s; }
.wave-bar:nth-child(4n) { animation-delay: 0.3s; }

@keyframes wave-animation {
    0%, 100% { height: 40%; }
    50% { height: 80%; }
}

.item-content {
    padding: 20px;
}

.item-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tag {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.tag-technical {
    background-color: rgba(44, 110, 73, 0.1);
    color: var(--primary-color);
}

.tag-corporate {
    background-color: rgba(77, 157, 224, 0.1);
    color: var(--secondary-color);
}

.tag-educational {
    background-color: rgba(224, 176, 213, 0.1);
    color: #9c27b0;
}

.tag-commercial {
    background-color: rgba(224, 176, 213, 0.2);
    color: #9c27b0;
}

.tag-software {
    background-color: rgba(45, 55, 72, 0.1);
    color: var(--dark-color);
}

audio {
    width: 100%;
    margin: 10px 0;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--light-color);
    border: none;
    border-radius: 4px;
    color: var(--dark-color);
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    text-decoration: none;
}

.download-btn:hover {
    background-color: var(--dark-color);
    color: white;
}

/* === PROCESS SECTION === */
.process-section {
    padding: 80px 20px;
    background-color: white;
}

.process-container {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* === PAGE HEADER === */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* === CONTACT SECTION === */
.contact-section {
    padding: 80px 20px;
    background-color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 8px;
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 4px 0 0 4px;
}

.contact-form-container {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--grey-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
}

textarea.form-control {
    min-height: 150px;
}

/* === FAQ SECTION === */
.faq-section {
    padding: 80px 20px;
    background-color: var(--grey-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion {
    margin-bottom: var(--space-s);
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.accordion-header {
    padding: 20px;
    width: 100%;
    text-align: left;
    background-color: white;
    border: none;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: rgba(44, 110, 73, 0.05);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content-inner {
    padding-bottom: 20px;
}

.accordion.active .accordion-content {
    max-height: 300px;
}

/* === EQUIPMENT SECTION === */
.equipment-section {
    padding: 80px 20px;
    background-color: var(--grey-color);
}

.equipment-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.quality-item {
    background-color: white;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.quality-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.quality-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* === FOOTER === */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-logo h2 {
    font-size: 28px;
    margin-bottom: 5px;
}

.footer-links h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

/* === CTA SECTION === */
.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background-color: var(--light-color);
}

/* === RESPONSIVE STYLES === */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
    }

    nav ul.show {
        max-height: 300px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-content, .hero-image {
        width: 100%;
        text-align: center;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    /* Hide some circles on mobile to prevent layout issues */
    .circle-4, .circle-6 {
        display: none;
    }
    
    /* Make remaining circles smaller on mobile */
    .circle-decoration {
        transform: scale(0.7);
    }
}