/* Import Google Fonts - Professional Modern */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Merriweather:wght@300;400;700&display=swap');

/* Global Reset and Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4F000B;      /* Deep burgundy */
    --accent-color: #CE4257;       /* Coral pink */
    --secondary-color: #FF9B54;    /* Light peach */
    --light-accent: #FF7F51;       /* Coral/salmon */
    --text-light: #720026;         /* Wine burgundy */
    --bg-light: #FFF9F5;           /* Very light peach */
    --max-width: 1200px;
    
    /* Professional Modern Fonts */
    --heading-font: 'Merriweather', serif;
    --body-font: 'Inter', sans-serif;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--primary-color);
    overflow-x: hidden;
    font-weight: 400;
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    padding: 1rem 2rem; /* Slightly reduced padding to compensate for stacked logo */
    box-shadow: 0 2px 15px rgba(206, 66, 87, 0.1);
    border-bottom: 1px solid rgba(255, 155, 84, 0.2);
}

nav .container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--body-font);
    letter-spacing: -0.5px;
}


.logo-soundwave {
    width: 160px; /* Slightly smaller to look proportional */
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

/* Hover effects for the logo group */
.logo-container:hover .logo-soundwave {
    opacity: 1;
}

.logo-container:hover .logo {
    color: var(--accent-color);
}
@media (max-width: 768px) {
    .logo-soundwave {
        width: 130px; /* Even smaller on mobile */
    }
    
    .hero {
        margin-top: 90px; /* Adjust for mobile nav height */
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s;
    font-size: 0.95rem;
    font-family: var(--body-font);
    font-weight: 500;
    letter-spacing: 0;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    margin-top: 100px;
    padding: 5rem 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FFF9F5 0%, #FFE5D9 50%, #FFCAB0 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fbc4ab;
}

.hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.hero h1 {
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 400;
    font-family: var(--heading-font);
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease;
    color: var(--primary-color);
}

.hero h1 span {
    color: var(--accent-color);
    font-weight: 600;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
    line-height: 1.75;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: 0.875rem 2.25rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(206, 66, 87, 0.4);
    background: #B73E52;
}

/* Marquee Section */
.marquee {
    background: linear-gradient(90deg, #720026 0%, #CE4257 100%);
    color: white;
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: scroll 30s linear infinite;
    padding-left: 100%;
}

.marquee-content span {
    padding: 0 2rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, white 0%, #FFF9F5 100%);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-family: var(--heading-font);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--primary-color);
}

.intro-text {
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.0625rem;
    line-height: 1.75;
    font-weight: 400;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.about-card {
    padding: 2rem;
    background: linear-gradient(135deg, #FFF9F5 0%, rgba(255, 127, 81, 0.1) 100%);
    border-radius: 12px;
    transition: transform 0.3s;
    box-shadow: 0 3px 15px rgba(206, 66, 87, 0.08);
    border: 1px solid rgba(255, 155, 84, 0.2);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(206, 66, 87, 0.15);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 400;
}

.about-card p {
    line-height: 1.65;
    color: var(--text-light);
}

/* About Me Section - Enhanced Styling */
.about-me {
    padding: 5rem 2rem;
    background: #fbc4ab;
    border-top: 1px solid rgba(255, 155, 84, 0.2);
    border-bottom: 1px solid rgba(255, 155, 84, 0.2);
}

.about-me .section-title {
    position: relative;
    padding-bottom: 1rem;
}

.about-me .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #CE4257 0%, #FF7F51 100%);
    border-radius: 2px;
}

.about-me-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.about-me-image {
    position: relative;
    transform: translateY(-5px);
}

.about-me-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(206, 66, 87, 0.2);
    object-fit: cover;
    aspect-ratio: 4/5;
}

.about-me-text h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
    font-weight: 400;
    position: relative;
    padding-bottom: 0.75rem;
}

.about-me-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #CE4257 0%, #FF7F51 100%);
    opacity: 0.8;
}

.about-me-text p {
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.about-me-text p:first-of-type {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
}

.about-me-text blockquote {
    margin: 2rem 0;
    padding: 1.5rem;
    padding-left: 2rem;
    background: linear-gradient(135deg, rgba(255, 127, 81, 0.1) 0%, rgba(255, 155, 84, 0.1) 100%);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    font-style: italic;
    color: var(--primary-color);
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    box-shadow: 0 3px 15px rgba(206, 66, 87, 0.08);
}

.about-me-text blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: var(--heading-font);
}

/* Optional: Add social links or credentials */
.about-credentials {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 155, 84, 0.2);
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.credential-item::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
}

/* Process Section */
.process {
    padding: 5rem 2rem;
    background: #fbc4ab;
}

.process h3, .step h3, .contact-item h3 {
    font-family: var(--heading-font);
    font-weight: 400;
}

.process-steps {
    display:block;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 5rem;
    margin-top: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    text-align: center;
    padding: 2rem;
    background: #FFF9F5;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(206, 66, 87, 0.1);
    transition: transform 0.3s;
    border: 1px solid rgba(255, 155, 84, 0.2);
    margin-bottom: 8px;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(206, 66, 87, 0.2);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    font-family: var(--body-font);
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.35rem;
}

.step p {
    color: var(--text-light);
    line-height: 1.65;
    font-weight: 600 !important;
}

/* Testimonials */
.testimonials {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, white 0%, rgba(255, 249, 245, 0.7) 100%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    padding: 2rem;
    background: linear-gradient(135deg, #FFF9F5 0%, rgba(255, 127, 81, 0.08) 100%);
    border-radius: 12px;
    border-left: 3px solid var(--accent-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #4F000B 0%, #720026 100%);
    color: white;
    text-align: center;
}

.contact h2 {
    color: white;
    margin-bottom: 2rem;
}

.contact > .container > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.0625rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    text-align: left;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 155, 84, 0.3);
    border-radius: 8px;
    font-family: var(--body-font);
    font-size: 0.9375rem;
    font-weight: 400;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(206, 66, 87, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #B8A5A8;
    font-size: 0.9375rem;
    font-weight: 400;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25em;
    padding-right: 2.5rem;
}

.form-group.focused label {
    color: var(--accent-color);
}

.submit-button {
    background: var(--accent-color);
    color: white;
    padding: 0.875rem 2.25rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 0.5rem;
    font-family: var(--body-font);
}

.submit-button:hover {
    background: #B73E52;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(206, 66, 87, 0.3);
}

.submit-button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.form-note {
    color: var(--text-light);
    font-size: 0.8125rem;
    margin-top: -0.5rem;
    font-style: italic;
    font-weight: 400;
}

/* Contact Info Sidebar */
.contact-info-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    text-align: left;
}

.contact-item h3 {
    color: #FF9B54;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9375rem;
    font-weight: 400;
}

.contact-item a:hover {
    color: #FF9B54;
}

/* Footer */
footer {
    padding: 2rem;
    background: #2D0008;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Typography additions */
p, li, a {
    font-family: var(--body-font);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-container {
        background: rgba(255, 255, 255, 0.1);
        padding: 2rem;
        border-radius: 12px;
    }
    
    .contact-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-me-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-me-image {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .about-me-text h3 {
        text-align: center;
    }
    
    .about-me-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-me-text {
        text-align: left;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 3rem 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-grid,
    .process-steps,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .about-me-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-me-image {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .about-me-text {
        text-align: left;
    }
    
    .about-me-text h3 {
        font-size: 1.5rem;
        text-align: left;
    }
    
    .about-me-text h3::after {
        left: 0;
        transform: none;
    }
    
    .about-me-text blockquote {
        padding: 1rem;
        font-size: 1rem;
        margin: 1.5rem 0;
    }
    
    .about-me-text blockquote::before {
        font-size: 3rem;
        top: -5px;
        left: 10px;
    }
    
    .about-me-text p:first-of-type {
        font-size: 1.05rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info-container {
        background: rgba(255, 255, 255, 0.1);
        padding: 2rem;
        border-radius: 12px;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1.1rem;
    }
}