
:root {
    --primary-pink: #ffb7b2;
    --soft-lavender: #e2f0cb;
    --text-dark: #4a4a4a;
    --text-light: #777;
    --bg-cream: #fff9f5;
    --font-display: 'Georgia', serif;
    --font-body: 'Helvetica Neue', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
}

.nail-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    background: white;
    box-shadow: 0 0 30px rgba(0,0,0,0.03);
    min-height: 100vh;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-box h1 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.main-nav a {
    text-decoration: none;
    color: var(--text-light);
    margin-left: 1.5rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--primary-pink);
}

/* Hero */
.hero-banner {
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff0f5 0%, #fff 100%);
    margin-bottom: 2rem;
    border-radius: 0 0 50% 50% / 20px;
}

.hero-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hero-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-view {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-pink);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 183, 178, 0.4);
}

/* Gallery */
.gallery-section {
    padding: 2rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--primary-pink);
    font-style: italic;
    letter-spacing: 1px;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    gap: 15px;
    grid-auto-flow: dense;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    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-tall {
    grid-row: span 2;
}

.item-wide {
    grid-column: span 2;
}

.item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 0.9rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.grid-item:hover .item-caption {
    transform: translateY(0);
}

/* Services */
.services-list {
    padding: 3rem 0;
    background-color: #fafafa;
    margin: 2rem -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.price-table {
    max-width: 600px;
    margin: 0 auto;
}

.price-row {
    display: flex;
    align-items: baseline;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.price-row.highlight {
    color: var(--primary-pink);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-name {
    white-space: nowrap;
}

.dots {
    flex: 1;
    border-bottom: 1px dotted #ccc;
    margin: 0 10px;
    position: relative;
    top: -5px;
}

.price {
    white-space: nowrap;
}

/* Footer */
.site-footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-family: var(--font-display);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.footer-col p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.copyright {
    font-size: 0.8rem;
    color: #aaa;
}

@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        gap: 1rem;
    }
    .main-nav {
        display: flex;
        gap: 1rem;
    }
    .main-nav a {
        margin: 0;
    }
    .item-wide {
        grid-column: span 1;
    }
    .hero-text h2 {
        font-size: 2rem;
    }
}
