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

body {
    background-color: #ffffff;
    color: #333;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    font-size: 14px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: black;
}


.hero-section {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%); 
}

.hero-overlay h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    white-space: nowrap;
    z-index: 10;
}

.portfolio-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 40px 50px;
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.grid-item {
    display: block;
    overflow: hidden;
    transition: transform 0.3s ease;
}


.grid-item:hover {
    transform: scale(1.02);
    opacity: 0.9;
}


.bottom-gallery {
    padding: 0 50px 50px 50px;
    width: 100%;
}

.full-width-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 0 50px 50px 50px;
}
.about-section {
    padding: 80px 50px;
    background-color: #ffffff;
}

.about-container {
    display: flex;
    align-items: flex-start;
    gap: 60px; 
    max-width: 1100px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px; 
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-family: 'Italiana', serif;
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 400;
}

.about-text p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #000;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        padding: 20px;
    }
    
    .about-text h2 {
        font-size: 32px;
    }
}

.frame-3-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 60px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-wrapper {
    flex: 2; 
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

.top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
	max-width: 70%;
}

.bottom-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #eee;
}

.frame-3-text {
    flex: 1;
    padding-top: 20px;
}

.frame-3-text p {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    line-height: 1.6;
    max-width: 480px;
}

@media (max-width: 1024px) {
    .frame-3-container {
        flex-direction: column;
    }
    .bottom-row {
        grid-template-columns: 1fr;
    }
}
.frame-13-container {
    display: flex;
    align-items: flex-start; 
    gap: 40px;
    padding: 60px 50px;
    max-width: 1100px;
    margin: 0 auto;
}


.stack-column {
    flex: 2; 
    display: flex;
    flex-direction: column;
    gap: 20px; 
}

.stack-column img {
    width: 100%;
    height: auto;
    max-width: 600px; 
    display: block;
    border: 1px solid #eee;
}


.sidebar-text {
    flex: 1;
    padding-top: 10px;
}

.sidebar-text p {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    line-height: 1.6;
    color: #333;
    max-width: 480px; 
}


@media (max-width: 800px) {
    .frame-13-container {
        flex-direction: column;
    }
    .sidebar-text p {
        max-width: 100%;
    }
}
.frame-16-container {
    display: flex;
    align-items: flex-end; 
    justify-content: center;
    gap: 60px;
    padding: 100px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.poster-display {
    flex: 2;
    max-width: 600px;
}

.poster-display img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
}

.poster-description {
    flex: 1;
    margin-bottom: 40px; 
}

.poster-description p {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    line-height: 1.6;
    color: #333;
    max-width: 480px;
}

@media (max-width: 850px) {
    .frame-16-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .poster-description {
        margin-bottom: 0;
    }
}