/* Bloom & Shine Theme */
:root {
    --bg-soft: #fdfbf7;
    --primary: #2d2d2d;
    --accent-pink: #ffb7b2;
    --accent-blue: #a6e3e9;
    --white: #ffffff;
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Noto Sans KR', sans-serif;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-soft);
    color: var(--primary);
    font-family: var(--font-body);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-head);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 2rem;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: center;
}

.nav-container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: var(--shadow-soft);
}

.logo {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-pink);
}

.btn-contact {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.btn-contact:hover {
    transform: scale(1.05);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    padding-top: 80px;
}

.hero-text {
    flex: 1;
}

.tag {
    background: var(--accent-pink);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-text {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.image-blob {
    width: 400px;
    height: 500px;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    position: relative;
}

.image-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 10%;
    right: 10%;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Price Section */
.price-section {
    padding: 6rem 0;
}

.section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.section-head h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.price-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.p-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 30px;
    width: 250px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s;
}

.p-card:hover {
    transform: translateY(-10px);
}

.p-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.p-card h3 {
    margin-bottom: 1rem;
    color: #888;
}

.p-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.p-card .change {
    font-size: 0.9rem;
    color: #888;
    background: #f5f5f5;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    display: inline-block;
}

.update-badge {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #999;
}

/* Gallery */
.gallery-section {
    padding: 6rem 0;
    background: #fff;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    height: 600px;
}

.grid-item {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.grid-item:hover img {
    transform: scale(1.1);
}

.item-1 {
    grid-column: span 1;
    grid-row: span 2;
}

.item-2 {
    grid-column: span 1;
    grid-row: span 1;
}

.item-3 {
    grid-column: span 1;
    grid-row: span 1;
}

.item-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Map */
.map-section {
    padding: 6rem 0;
}

.map-card {
    background: var(--white);
    border-radius: 40px;
    padding: 1rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    gap: 2rem;
    height: 500px;
}

.map-text {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.map-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.tags span {
    background: #f0f0f0;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    color: #666;
}

.map-view {
    flex: 1.5;
    border-radius: 30px;
    background: #eee;
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding-top: 120px;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 3rem;
    }

    .image-blob {
        width: 300px;
        height: 350px;
    }

    .masonry-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .map-card {
        flex-direction: column;
        height: auto;
    }

    .map-view {
        height: 300px;
    }

    .nav-links {
        display: none;
    }
}