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

:root {
    --green: #136239;
    --pink: #FFC4EB;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-text: #333333;
}

body {
    font-family: 'Gabarito', sans-serif;
    color: var(--dark-text);
    background-color: var(--white);
    line-height: 1.6;
}

/* Header Styles */
.header {
    background-color: var(--green);
    padding: 3rem 2rem;
    color: var(--white);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.header-left {
    flex: 1;
    min-width: 300px;
}

.header-intro {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.header-text {
    flex: 1;
}

.header-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--pink);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.header-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: 0.5rem;
}

.social-icon {
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.3s ease;
    width: 28px;
    height: 28px;
}

.social-icon:hover {
    color: var(--pink);
    transform: scale(1.1);
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--green);
    background-color: var(--white);
    color: var(--green);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

.btn-header {
    min-width: 140px;
}

.btn-header:hover {
    background-color: var(--pink);
    color: #000000;
}

.header-image {
    width: 100px;
    height: 166px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

/* Tabs Navigation */
.tabs {
    display: flex;
    background-color: var(--white);
    border-bottom: 2px solid var(--light-gray);
}

.tab {
    flex: 1;
    padding: 2rem;
    background-color: var(--white);
    border: 2px solid #000000;
    font-size: 2rem;
    font-weight: bold;
    color: var(--green);
    text-decoration: none;
    text-align: center;
    display: block;
    transition: background-color 0.3s ease;
}

.tab.active {
    background-color: var(--pink);
}

.tab:hover:not(.active) {
    background-color: var(--light-gray);
}

/* About/Contact Navigation Tabs */
.about-tabs {
    display: flex;
    background-color: var(--white);
    border-bottom: 2px solid var(--dark-text);
}

.about-tab {
    flex: 1;
    padding: 2rem;
    background-color: var(--white);
    border: 2px solid #000000;
    font-size: 2rem;
    font-weight: bold;
    color: var(--green);
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-right: 2px solid #000000;
}

.about-tab:last-child {
    border-right: none;
}

.about-tab.active {
    background-color: var(--pink);
}

.about-tab:hover:not(.active) {
    background-color: var(--light-gray);
}

/* Content Sections */
.content-section {
    display: block;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* About Me Section */
.about-section {
    background-color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--pink);
    text-align: center;
    margin-bottom: 2rem;
    -webkit-text-stroke: 2px #000000;
    text-stroke: 2px #000000;
}

.about-content,
.goals-content {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.goals-content {
    margin-top: 4rem;
}

.about-list {
    list-style: none;
    padding: 0;
    line-height: 2;
}

.about-list li {
    margin-bottom: 0.75rem;
    color: var(--dark-text);
    font-size: 1.1rem;
}

/* Get In Touch Section */
.contact-section {
    background-color: var(--pink);
    padding: 3rem 2rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--pink);
    text-align: center;
    margin-bottom: 1.5rem;
    -webkit-text-stroke: 2px #000000;
    text-stroke: 2px #000000;
}

.contact-intro {
    text-align: center;
    color: var(--dark-text);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--green);
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--green);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(255, 196, 235, 0.3);
}

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

.btn-send {
    background-color: var(--pink);
    color: #000000;
    border: 2px solid #000000;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    float: right;
    margin-top: 1rem;
}

.btn-send:hover {
    background-color: var(--green);
    border-color: var(--green);
    color: var(--white);
}

/* Controls (Filter and Sort) */
.controls {
    margin-bottom: 3rem;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 12px;
}

.control-group {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.control-group:last-child {
    margin-bottom: 0;
}

.control-label {
    font-weight: 600;
    color: var(--green);
    font-size: 1.1rem;
    min-width: 100px;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-btn,
.sort-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--green);
    background-color: var(--white);
    color: var(--green);
    font-size: 0.95rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.sort-btn:hover {
    background-color: var(--green);
    color: var(--white);
}

.filter-btn.active,
.sort-btn.active {
    background-color: var(--green);
    color: var(--white);
}

/* Genre Sections */
.genre-section {
    margin-bottom: 4rem;
}

.genre-section-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-section {
    margin-bottom: 4rem;
}

.genre-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--pink);
    margin-bottom: 0;
    -webkit-text-stroke: 2px #000000;
    text-stroke: 2px #000000;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.genre-image {
    max-width: 300px;
    width: auto;
    height: auto;
    border-radius: 8px;
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    color: var(--green);
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.arrow-link:hover {
    transform: translateX(5px);
    opacity: 0.8;
}

.arrow-icon {
    width: 32px;
    height: 32px;
    color: var(--green);
}

/* Demos Grid */
.demos-grid,
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.demo-wrapper {
    display: flex;
    flex-direction: column;
}

.demo-item {
    position: relative;
    background-color: var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.demo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.demo-item .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 98, 57, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.demo-item:hover .play-overlay {
    opacity: 1;
}

.play-icon {
    width: 60px;
    height: 60px;
    fill: var(--white);
}

.soundcloud-embed {
    display: none;
    width: 100%;
    margin-top: 1rem;
    grid-column: 1 / -1;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.soundcloud-embed.active {
    display: block;
}

.soundcloud-embed iframe {
    width: 100%;
    height: 100%;
}

.demo-info {
    margin-top: 1rem;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 8px;
}

.demo-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--green);
    margin-bottom: 0.5rem;
}

.demo-duration,
.demo-keywords {
    font-size: 1rem;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.demo-synopsis {
    font-size: 1rem;
    color: var(--dark-text);
    margin-top: 0.75rem;
    line-height: 1.5;
}

/* Social Media Grid */
.social-item {
    position: relative;
    background-color: var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.social-item iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* More Button */
.btn-more {
    display: block;
    margin: 2rem auto;
    padding: 1rem 2rem;
}

/* Footer */
.footer {
    background-color: var(--white);
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 2px solid var(--light-gray);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left p,
.footer-right p {
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.footer-center {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-center a {
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-center a:hover {
    color: var(--green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-title {
        font-size: 2.5rem;
    }

    .header-content {
        flex-direction: column;
    }

    .header-intro {
        flex-direction: column;
        align-items: center;
    }

    .header-text {
        text-align: center;
    }

    .header-image {
        width: 100px;
        height: 166px;
        margin: 0 auto;
    }

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

    .genre-title {
        font-size: 2rem;
    }

    .demos-grid,
    .social-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .soundcloud-embed.active {
        grid-column: 1 / -1;
    }

    .control-group {
        flex-direction: column;
    }

    .control-label {
        min-width: auto;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-center {
        justify-content: center;
    }

    .about-tab {
        padding: 1.5rem 1rem;
        font-size: 1.5rem;
    }

    .section-title,
    .contact-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .about-list li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 2rem 1rem;
    }

    .header-title {
        font-size: 2rem;
    }

    .content-section {
        padding: 1rem;
    }

    .demos-grid,
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

