:root {
    --primary-color: #1f232e;
    --secondary-color: #daaab2;
    --text-dark: #3d4245;
    --text-light: #f4f4f4;
    --background: #b9c5ca;
    --section-bg: #FFF8D4;
    --font-stack: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    font-family: var(--font-stack);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.music-section {
    background: linear-gradient(180deg, #2a2f3d 0%, #1a1d26 100%);
}

.photography-section {
    background: var(--background);
}

.contact-section {
    background: #1a1d26;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: rgba(218, 170, 178, 0.4);
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) var(--primary-color);
}

nav {
    position: sticky;
    top: 0;
    z-index: 2000;
    background: rgba(31, 35, 46, 0.85); /* Indigo base */
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(218, 170, 178, 0.1);
}

nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(218, 170, 178, 0.1),
        transparent
    );
    transform: skewX(-20deg);
    animation: navShimmer 8s infinite linear;
}

@keyframes navShimmer {
    0% { left: -150%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    scroll-margin-top: 100px; 
}

.hero {
    background: var(--text-dark);
    color: var(--text-light);
    padding-bottom: 40px;
    scroll-margin-top: 100px;
    background: linear-gradient(
        180deg, 
        #26292a 0%,
        #3d4245 50%,
        #485157 100% 
    );
}

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(218, 170, 178, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.logo {
    color: var(--text-light);
    font-size: 3em;
    font-weight: 200;
    margin-right: 20px;
    font-family: "Splash", cursive;
    background: linear-gradient(45deg, var(--text-light), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(218, 170, 178, 0.2));
}

.social-links {
    display: flex;
    flex-direction: row; 
    align-items: center;
    gap: 20px;
}

.social-links a, 
.social-links a:visited {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: fill 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

.social-links a i {
    margin-right: 5px;
}

.hero-content {
    text-align: center;
    padding: 20px 0;
}

.profile-photo {
    width: 450px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 20px;
    margin-top: 10px;

    filter: grayscale(20%) brightness(0.9);
    border: 1px solid rgba(218, 170, 178, 0.2);
    
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    
    animation: float 6s ease-in-out infinite;
}

.profile-photo:hover {
    filter: grayscale(0%) brightness(1.05);
    transform: scale(1.03);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 40px rgba(218, 170, 178, 0.3);
}

.hero-content h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 1.1em;
    opacity: 0.8;
}

.section {
    width: 100%;
    padding: 80px 0;
    margin: 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 5px;
    position: relative;
    padding-bottom: 15px;
    border: none;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--secondary-color);
}

.music-section {
    width: 100%;
    background: var(--section-bg);
}

.music-players {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 60px 0;
    position: relative;
}

.music-section {
    background: linear-gradient(180deg, var(--background) 0%, #1a1d26 100%);
}

.music-players.reveal-on-scroll {
    transition-delay: 0.2s;
}

.music-section .section-title {
    color: var(--text-light);
}

#music {
    background: linear-gradient(180deg, #485157 0%, #1a1d26 100%);
}

.music-section .section-title,
.contact-section .section-title {
    color: var(--text-light);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

.embed-container {

    width: 100%;
    max-width: 700px; 
    position: relative;

    background: rgba(31, 35, 46, 0.6); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(218, 170, 178, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    border-radius: 16px; 
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 10px;
}

.embed-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(218, 170, 178, 0.2) 0%, transparent 70%);
    border-radius: 40px;
    filter: blur(40px);
    z-index: -1;
    animation: pulseGlow 4s ease-in-out infinite;
}

.embed-container:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: var(--secondary-color);
    box-shadow: 0 0 50px rgba(218, 170, 178, 0.2);
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

.embed-container iframe {
    border-radius: 12px;
    display: block;
}

.photography-section {
    background: var(--background);
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.photo-gallery .gallery-item:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.02);
}

.gallery-item {
    width: 100%;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);

    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    
    filter: grayscale(0%) brightness(0.8);
    border: 1px solid rgba(218, 170, 178, 0.1);
    
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: crosshair;
}

.gallery-item:hover {
    transform: translateY(-5px);
    transform: scale(1.03) translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(218, 170, 178, 0.4);
    z-index: 10;
}

.view-more {
    margin-top: 40px;
}

.view-more .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    background: rgba(31, 35, 46, 0.4);
    border: 1px solid rgba(218, 170, 178, 0.3);
    color: var(--text-light);
    
    padding: 12px 30px;
    border-radius: 50px; 
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 500;
    
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    box-shadow: none;
}

.view-more .btn:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(218, 170, 178, 0.4);
    background: rgba(31, 35, 46, 0.6);
    color: var(--text-light);
}

.btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 1px solid var(--secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(218, 170, 178, 0.6);
}

footer {
    background: var(--text-dark);
    color: var(--text-light);
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

.current-projects-title {
    margin-top: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.project-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.project-list li {
    background: rgba(31, 35, 46, 0.4);
    border: 1px solid rgba(218, 170, 178, 0.3);
    color: var(--text-light);
    border-radius: 50px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.project-list li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    width: 100%;
    height: 100%;
    color: inherit;
}

.project-list li strong {
    color: var(--text-light);
    font-size: 1rem;
    display: block;
}

.project-list li span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    color: var(--secondary-color);
}

.project-list li:hover {
    cursor: pointer;
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(218, 170, 178, 0.4);
    background: rgba(31, 35, 46, 0.6);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -1px;
    
    background: linear-gradient(to right, #ffffff, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(218, 170, 178, 0.3);
}

.hero-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-light);
    opacity: 0.8;
}

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    cursor: zoom-out;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(218, 170, 178, 0.3);
    border: 1px solid rgba(218, 170, 178, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease, opacity 0.2s ease;
    opacity: 1;
}

.lightbox-overlay img.fade {
    opacity: 0;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-overlay.active img {
    transform: scale(1);
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(31, 35, 46, 0.5);
    border: 1px solid var(--secondary-color);
    color: var(--text-light);
    font-size: 1.5rem;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 0 15px var(--secondary-color);
}

.prev { left: 20px; }
.next { right: 20px; }

@media (max-width: 480px) {
    .nav-btn {
        padding: 10px 15px;
        background: rgba(31, 35, 46, 0.8);
    }
}

    .contact-card {
        max-width: 600px;
        margin: 40px auto;
        background: rgba(31, 35, 46, 0.4);
        backdrop-filter: blur(12px);
        padding: 40px;
        border-radius: 20px;
        border: 1px solid rgba(218, 170, 178, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .form-group {
        margin-bottom: 25px;
        position: relative;
        width: 100%;
        text-align: left;
    }

    #google-form input[type="text"],
    #google-form input[type="email"],
    #google-form textarea {
        width: 100%;
        display: block;
        box-sizing: border-box;
        margin: 0 auto;
        padding: 15px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(218, 170, 178, 0.2);
        border-radius: 12px;
        color: #ffffff;
        font-size: 1rem;
        font-family: inherit;
        transition: all 0.3s ease;
    }

    .contact-form input:focus, 
    .contact-form textarea:focus {
        background: rgba(255, 255, 255, 0.07);
        border-color: var(--secondary-color);
        box-shadow: 0 0 15px rgba(218, 170, 178, 0.2);
        transform: translateY(-2px);
    }

    ::placeholder {
        color: rgba(255, 255, 255, 0.4);
        font-weight: 300;
    }

    input:-webkit-autofill,
    input:-webkit-autofill:hover, 
    input:-webkit-autofill:focus {
        -webkit-text-fill-color: white;
        -webkit-box-shadow: 0 0 0px 1000px #1f232e inset;
        transition: background-color 5000s ease-in-out 0s;
    }

    .contact-form .btn {
        width: 100%;
        padding: 16px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        background: linear-gradient(45deg, var(--secondary-color), #ff8ea1);
        border: none;
        color: var(--primary-color);
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(218, 170, 178, 0.3);
    }

    .contact-form .btn:hover {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(218, 170, 178, 0.5);
    }

    .form-group label {
        display: block;
        color: var(--secondary-color);
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 8px;
        margin-left: 5px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .form-group label {
        text-shadow: 0 0 8px rgba(218, 170, 178, 0.3);
    }

    #google-form input:focus, 
    #google-form textarea:focus {
        outline: none;
        border-color: var(--secondary-color);
        
        box-shadow: 0 0 15px rgba(218, 170, 178, 0.3);
        background: rgba(255, 255, 255, 0.08);
        
        transform: translateY(-2px);
    }

    #google-form ::placeholder {
        color: rgba(255, 255, 255, 0.3);
        transition: opacity 0.3s ease;
    }

    #google-form input:focus::placeholder,
    #google-form textarea:focus::placeholder {
        opacity: 0;
    }

.success-overlay {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    animation: fadeIn 0.5s ease forwards;
}

.success-content i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--secondary-color));
}

.success-content h3 {
    color: var(--text-light);
    margin-bottom: 10px;
}

.success-content p {
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    nav {
        padding: 10px 0;
    }

    .nav-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .logo {
        font-size: 2em;
        margin-right: 0;
        flex: 1;
        text-decoration: none;
        display: inline-block;
    }

    .logo a {
        text-decoration: none;
        color: inherit;
        display: inline-block;
        
        background: inherit;
        -webkit-background-clip: inherit;
        -webkit-text-fill-color: inherit;
    }

    .logo a:visited, 
    .logo a:active, 
    .logo a:hover {
        text-decoration: none;
        color: inherit;
    }

    .menu-toggle {
        display: block !important; 
        background: transparent;
        border: none;
        color: var(--text-light);
        font-size: 2rem;
        cursor: pointer;
        padding: 10px;
        line-height: 1;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        /* right: -100%; */
        width: 100%;
        height: 100vh;
        background: var(--text-dark);

        transform: translateX(100%); 
        transition: transform 0.4s ease-in-out;

        z-index: 9999;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
    }

    .nav-menu.active {
        transform: translateX(0);
        /* display: block; */
        right: 0;
    }

    .menu-toggle {
        display: block;
        z-index: 10000; 
        position: relative;
    }

    .social-links {
        flex-direction: column;
        gap: 15px;
    }

    .social-links a {
        justify-content: center;
        padding: 10px;
        font-size: 1.1rem;
    }

    .hero-content h2 { font-size: 1.6em; }
    .music-players { grid-template-columns: 1fr; }
    .gallery-item { 
        aspect-ratio: 1 / 1;
        height: auto;
        object-fit: cover;
    }

    .project-list {
        flex-direction: column;
        align-items: center;
    }
    .project-list li {
        width: 70%;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 0;
    }
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
}
