/* 기본 스타일 */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    font-weight: 300;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 배경 이미지 및 투명도 */
.background-wrap {
    position: relative;
    z-index: 1;
}

.background-wrap::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/IMG_1516.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: -1;
}

/* 헤더 스타일 */
header {
    background: transparent;
    color: #000;
    padding: 30px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: background 0.3s ease, color 0.3s ease;
}

header.scrolled {
    background-color: #fff;
    color: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 30px;
}

header nav ul li a {
    text-decoration: none;
    color: inherit;
    font-weight: 300;
    font-size: 16px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #ff8c00;
}

/* Hero 섹션 */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: transparent;
}

.hero-content {
    position: relative;
    overflow: hidden;
}

.hero .main-title {
    font-weight: 300;
    line-height: 1;
    margin-bottom: 20px;
    color: #222;
    position: relative;
    display: inline-block;
    z-index: 2;
    -webkit-text-fill-color: currentcolor;
    -webkit-text-stroke-width: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero .main-title > span {
    display: block;
    font-size: 10vw;
    line-height: 1;
}

.hero .main-title > span:last-child {
    /* STUDIO */
}

/* 와이퍼 효과를 위한 가상 요소 */
.hero .main-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    transform: translateX(-100%);
    transition: transform 5s ease-in-out;
    z-index: 1;
}

.hero .main-title.wiper-effect::before {
    transform: translateX(0);
    background-color: var(--next-color);
}

.hero .ellipse {
    width: 20vw;
    height: 8vw;
    border: 2px solid #ff8c00;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    z-index: -1;
}

/* 콘텐츠 섹션 공통 스타일 */
.content-section {
    padding: 120px 0;
    background-color: transparent;
}

.content-section .container {
    text-align: center;
}

.content-section h2 {
    font-size: 2.5em;
    font-weight: 300;
    color: #000;
    margin-bottom: 30px;
}

.content-section p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

/* 갤러리 섹션 */
.gallery-placeholder {
    padding: 120px 0;
    background-color: transparent;
}

.gallery-placeholder .section-title {
    font-size: 3em;
    font-weight: 300;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.photo-gallery a {
    display: block;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    aspect-ratio: 4 / 3;
}

.photo-gallery a:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.photo-gallery img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease-in-out;
    object-fit: cover;
    loading: lazy;
}

.photo-gallery img:hover {
    transform: scale(1.05);
}

.gallery-placeholder p {
    font-size: 1.2em;
    text-align: center;
    color: #777;
    font-weight: 300;
}

/* 모달 스타일 */
.modal {
    display: none;
    position: fixed;
    z-index: 200;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height
