:root {
    --nude: #D9C5B2;
    --earth: #A68A71;
    --dark: #121212;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    font-family: 'Inter', sans-serif;
    background-color: #000;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    transition: all 0.4s ease;
    background: transparent;
}

nav.scrolled {
    background: rgba(0, 0, 0, 0.9);
    padding: 15px 5%;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo {
    height: 75px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: 0.3s;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--nude);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px;
    background: white;
    transition: 0.3s;
}

.about-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 5% 80px;
}

.bg-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('mood (25).jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.content-wrapper {
    position: relative;
    z-index: 3;
    max-width: 850px;
    width: 100%;
    text-align: center;
}

.main-title {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.letter {
    display: inline-block;
    opacity: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 8vw, 90px);
    color: white;
    font-weight: 900;
    animation: letterDrop 0.8s cubic-bezier(0.2, 0.5, 0.3, 1.3) forwards;
}

@keyframes letterDrop {
    0% { opacity: 0; transform: translateY(-150px); filter: blur(10px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.text-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(15px);
    padding: 50px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
    color: white;
}

.lead-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--nude);
    margin-bottom: 25px;
    font-style: italic;
    line-height: 1.3;
}

p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.signature {
    margin-top: 20px;
    font-style: italic;
    color: var(--nude);
    transition: all 0.5s ease;
}

.footer-logo-img {
    width: 180px;
    margin-top: 50px;
    transition: 0.5s;
}

.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #121212;
    padding: 40px;
    border: 1px solid var(--nude);
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    position: relative;
    text-align: center;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: var(--nude);
}

.modal-content h3 {
    color: white;
    margin-bottom: 10px;
}

.modal-content p {
    color: rgba(255, 255, 255, 0.8);
}

#mini-contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

#mini-contact-form input, 
#mini-contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    color: #ffffff !important;
    border-radius: 5px;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

#mini-contact-form input::placeholder, 
#mini-contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.send-btn {
    background: var(--nude);
    color: black;
    padding: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    transition: 0.3s;
}

.send-btn:hover {
    background: white;
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 80%;
        background: #000;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.4s ease;
        z-index: 2001;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li {
        margin: 20px 0;
    }
    .nav-links a {
        font-size: 1.2rem;
    }
    .is-active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .is-active .bar:nth-child(2) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .text-box {
        padding: 30px 20px;
    }
    .about-hero {
        padding-top: 140px;
    }
}