* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    background: #fff8f0;
    color: #3e2723;
    line-height: 1.7;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 248, 240, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #d84315;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    color: #3e2723;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d84315;
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: #d84315;
}

/* Hero */
.hero {
    margin-top: 80px;
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('hero.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-text h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-text p {
    font-size: 1.8rem;
    opacity: 0.95;
}

/* Masonry Section */
.masonry-section {
    padding: 6rem 0;
    background: white;
}

.section-heading {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #3e2723;
}

.masonry-grid {
    column-count: 4;
    column-gap: 2rem;
    margin-top: 2rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    width: 100%;
}

.masonry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
}

.item-content {
    padding: 1.5rem;
}

.item-content h3 {
    font-size: 1.5rem;
    color: #d84315;
    margin-bottom: 0.8rem;
}

.item-content p {
    color: #5d4037;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Places Section */
.places-section {
    padding: 6rem 0;
    background: #fff8f0;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.place-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.place-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.place-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.place-card h3 {
    font-size: 1.8rem;
    color: #3e2723;
    margin: 1.5rem 1.5rem 1rem;
}

.place-card p {
    color: #5d4037;
    margin: 0 1.5rem 1.5rem;
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #d84315 0%, #ff6f00 100%);
    color: white;
}

.contact-section .section-heading {
    color: white;
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-info strong {
    font-weight: 600;
}

/* Footer */
footer {
    background: #3e2723;
    color: white;
    text-align: center;
    padding: 3rem 0;
}

.footer-link {
    color: rgba(255,255,255,0.7);
    text-decoration: underline;
}

.footer-link:hover {
    color: white;
}

/* Responsive */
@media (max-width: 1200px) {
    .masonry-grid {
        column-count: 3;
    }
}

@media (max-width: 900px) {
    .masonry-grid {
        column-count: 2;
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .masonry-grid {
        column-count: 1;
    }

    .main-nav {
        gap: 1.5rem;
        font-size: 0.9rem;
    }
}
