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

body {
    font-family: 'Archivo', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    transition: opacity 0.3s ease;
}

.logo img {
    height: 60px;
}

.pill-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    background: #d4beac;
    border-radius: 25px;
    padding: 0.5rem;
    gap: 0.5rem;
}

.pill-nav a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: background 0.3s;
}

.pill-nav a:hover {
    background: rgba(51, 51, 51, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Novelle', serif;
    font-size: 5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #d4beac;
    font-weight: bold;
}

.hero-content p {
    font-size: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    color: #d4beac;
    font-weight: 600;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Spa Section */
.spa-section {
    background-color: #d4beac;
    padding: 5rem 0;
    color: #333;
}

.spa-section h2 {
    font-family: 'Novelle', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.spa-section h3 {
    font-family: 'Novelle', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.content p {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.3);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

/* Gallery Section */
.gallery-section {
    padding: 0;
    background: #f8f8f8;
    height: 60vh;
    position: relative;
    overflow: hidden;
}

.image-stack {
    width: 100%;
    height: 100%;
}

.image-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Salon Section */
.salon-section {
    background-color: #934930;
    padding: 5rem 0;
    color: white;
}

.salon-section h2 {
    font-family: 'Novelle', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.salon-section h3 {
    font-family: 'Novelle', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.salon-section .service-item {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Contact Section */
.contact-section {
    background: #3b4039;
    padding: 5rem 0;
    color: white;
}

.contact-section h2 {
    font-family: 'Novelle', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.contact-section h3 {
    font-family: 'Novelle', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    justify-content: space-between;
}

.contact-grid > div {
    flex: 1;
}

/* Location Info */
.location-info {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
}

.location-item {
    margin-bottom: 1.5rem;
}

.location-item:last-child {
    margin-bottom: 0;
}

.location-item h4 {
    font-family: 'Novelle', serif;
    font-size: 1.3rem;
    color: #d4beac;
    margin-bottom: 0.5rem;
}

.location-item p {
    color: white;
    margin-bottom: 0.5rem;
}

.location-item p a {
    color: #d4beac;
    text-decoration: none;
}

.location-item p a:hover {
    text-decoration: underline;
}

.location-link {
    display: inline-block;
    color: #d4beac;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #d4beac;
    border-radius: 5px;
    transition: all 0.3s;
}

.location-link:hover {
    background: #d4beac;
    color: #3b4039;
}

/* Map */
.map-container {
    text-align: center;
}

.map-container p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: white;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Archivo', sans-serif;
}

.contact-form button {
    background: #934930;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #7a3a26;
}

/* Instagram Section */
.instagram-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.instagram-embed p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.instagram-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin: 1rem 0;
}

.instagram-posts .post {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.instagram-link {
    display: inline-block;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s;
}

.instagram-link:hover {
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem;
}

footer a {
    color: #d4beac;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.75rem 1rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .pill-nav {
        position: relative;
        transform: none;
        left: auto;
        padding: 0.3rem;
        gap: 0.3rem;
    }
    
    .pill-nav a {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .spa-section,
    .salon-section,
    .contact-section {
        padding: 3rem 0;
    }
    
    .spa-section h2,
    .salon-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .content p {
        font-size: 1rem;
    }
    
    .services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-section {
        height: 40vh;
    }
    
    .contact-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-grid > div {
        width: 100%;
    }
    
    #map {
        height: 250px;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .instagram-posts {
        grid-template-columns: repeat(2, 1fr);
    }
    
    footer {
        padding: 1.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 35px;
    }
    
    .pill-nav a {
        padding: 0.3rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .spa-section h2,
    .salon-section h2,
    .contact-section h2 {
        font-size: 1.75rem;
    }
    
    .contact-section h3 {
        font-size: 1.3rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .gallery-section {
        height: 30vh;
    }
}