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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #8B8680;
    background-color: #F7F5F3;
    font-weight: 300;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(247, 245, 243, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(139, 134, 128, 0.1);
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    color: #8B8680;
    text-transform: uppercase;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #F7F5F3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2rem;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
    right: 0;
}

.nav-link {
    text-decoration: none;
    color: #8B8680;
    font-weight: 300;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #6B6560;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: #8B8680;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #F7F5F3;
    padding-top: 120px;
}

.hero-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content {
    margin-bottom: 4rem;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: #8B8680;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #8B8680;
    max-width: 600px;
    margin: 0 auto;
    text-transform: uppercase;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circular-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #D4CFC7;
    box-shadow: 0 20px 40px rgba(139, 134, 128, 0.1);
}

.circular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Section */
.about {
    padding: 8rem 0;
    background-color: #F7F5F3;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: #8B8680;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.about-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: #8B8680;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.about-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #8B8680;
    font-weight: 300;
    text-align: justify;
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
    background-color: #EFEBE7;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.portfolio-item {
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.02);
}

.portfolio-image {
    height: 300px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(20%) saturate(80%);
    transition: filter 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    filter: sepia(10%) saturate(90%);
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background-color: #F7F5F3;
}

.contact-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: #8B8680;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.contact-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #8B8680;
    margin-bottom: 1rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    width: 90vw;
    height: 90vh;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #F7F5F3;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    color: #8B8680;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #F7F5F3;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 1rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #8B8680;
    background: rgba(0, 0, 0, 0.7);
}

.portfolio-image {
    height: 300px;
    overflow: hidden;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-container {
        padding: 1.5rem;
    }

    .nav-logo h1 {
        font-size: 1rem;
        letter-spacing: 0.2em;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 0.15em;
    }

    .hero-description {
        font-size: 0.8rem;
        letter-spacing: 0.08em;
    }

    .circular-image {
        width: 280px;
        height: 280px;
    }

    .about {
        padding: 4rem 0;
    }

    .about-content {
        padding: 0 1rem;
    }

    .about-title {
        font-size: 1rem;
        letter-spacing: 0.2em;
    }

    .about-subtitle {
        font-size: 0.8rem;
        letter-spacing: 0.15em;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
    }

    .portfolio {
        padding: 4rem 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .portfolio-image {
        height: 250px;
    }

    .contact {
        padding: 4rem 0;
    }

    .contact-content {
        padding: 0 1rem;
    }

    .contact-title {
        font-size: 1rem;
        letter-spacing: 0.2em;
    }

    .contact-info p {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-logo h1 {
        font-size: 0.9rem;
        letter-spacing: 0.15em;
    }

    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }

    .hero-description {
        font-size: 0.7rem;
        letter-spacing: 0.05em;
    }

    .circular-image {
        width: 240px;
        height: 240px;
    }

    .about-title {
        font-size: 0.9rem;
        letter-spacing: 0.15em;
    }

    .about-subtitle {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .contact-title {
        font-size: 0.9rem;
        letter-spacing: 0.15em;
    }

    .contact-info p {
        font-size: 0.85rem;
    }
}
