@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

:root {
    --primary-color: #333;
    --secondary-color: #f8f8f8;
    --accent-color: #d4a5a5;
    /* Soft pinkish tone for a nail salon */
    --text-color: #444;
    --light-text: #666;
    --font-heading: 'Noto Sans KR', sans-serif;
    --font-body: 'Noto Sans KR', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-bottom: 40px;
}

.main-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.main-header h1 a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
.main-nav {
    margin-top: 20px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.05rem;
    padding: 5px 10px;
    border-bottom: 2px solid transparent;
    /* For hover effect */
    transition: color 0.3s, border-bottom 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

/* Section Common */
.section {
    padding: 40px 0;
    margin-bottom: 40px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 5px;
    animation-name: zoom;
    animation-duration: 0.3s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Location Section */
.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.info-box {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.info-box .address {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--light-text);
}

.info-box .hours h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.info-box ul {
    list-style: none;
    margin-bottom: 15px;
}

.info-box ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.info-box ul li span {
    font-weight: 500;
}

.info-box .note {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-style: italic;
}

/* Social Links */
.social-links {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.social-btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s;
    font-size: 0.9rem;
}

.social-btn.instagram {
    background-color: #E1306C;
    color: #fff;
}

.social-btn.instagram:hover {
    background-color: #C13584;
}

.social-btn.naver {
    background-color: #03C75A;
    /* Naver Green */
    color: #fff;
}

.social-btn.naver:hover {
    background-color: #02b351;
}

/* Location carousel specific sizing if needed */
#location-carousel {
    flex: 1;
    min-width: 300px;
    height: 400px;
    display: none;
    /* Hide default carousel style for location page override if needed, though we change HTML */
}

/* Price Preview Section (Home) */
.price-preview-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.price-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    width: 250px;
    text-align: center;
    transition: transform 0.2s;
    border: 1px solid #eee;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.price-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.price-card .desc {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
    min-height: 40px;
    /* Aligns prices */
}

.price-card .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.view-more-container {
    text-align: center;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

/* Slightly darker */

/* Design Enhancements */
.fancy-title {
    font-family: 'Great Vibes', cursive;
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.intricate-bg {
    background-color: #fff0f5;
    background-image:
        radial-gradient(circle at 100% 150%, #fff0f5 24%, #ffe4e1 25%, #ffe4e1 28%, #fff0f5 29%, #fff0f5 36%, #ffe4e1 36%, #ffe4e1 40%, transparent 40%, transparent),
        radial-gradient(circle at 0 150%, #fff0f5 24%, #ffe4e1 25%, #ffe4e1 28%, #fff0f5 29%, #fff0f5 36%, #ffe4e1 36%, #ffe4e1 40%, transparent 40%, transparent),
        radial-gradient(circle at 50% 100%, #ffe4e1 10%, #fff0f5 11%, #fff0f5 23%, #ffe4e1 24%, #ffe4e1 30%, #fff0f5 31%, #fff0f5 43%, #ffe4e1 44%, #ffe4e1 50%, #fff0f5 51%, #fff0f5 63%, #ffe4e1 64%, #ffe4e1 71%, transparent 71%, transparent),
        radial-gradient(circle at 100% 50%, #ffe4e1 5%, #fff0f5 6%, #fff0f5 15%, #ffe4e1 16%, #ffe4e1 20%, #fff0f5 21%, #fff0f5 30%, #ffe4e1 31%, #ffe4e1 35%, #fff0f5 36%, #fff0f5 45%, #ffe4e1 46%, #ffe4e1 49%, transparent 50%, transparent),
        radial-gradient(circle at 0 50%, #ffe4e1 5%, #fff0f5 6%, #fff0f5 15%, #ffe4e1 16%, #ffe4e1 20%, #fff0f5 21%, #fff0f5 30%, #ffe4e1 31%, #ffe4e1 35%, #fff0f5 36%, #fff0f5 45%, #ffe4e1 46%, #ffe4e1 49%, transparent 50%, transparent);
    background-size: 100px 50px;
}



/* Location Circular Images */
.location-gallery {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.location-img-wrapper {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.location-img-wrapper:hover {
    transform: scale(1.05);
}

.location-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Full Price Page */
.price-category {
    max-width: 800px;
    margin: 0 auto 50px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.price-category h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.4rem;
    border-left: 5px solid var(--accent-color);
    padding-left: 15px;
    display: inline-block;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th,
.price-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.price-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #555;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table td:first-child {
    font-weight: 500;
    width: 50%;
}

.back-link {
    text-align: center;
    margin-top: 40px;
}

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
}