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

:root {
    --primary: #2d5f3f;
    --secondary: #f4a6b8;
    --accent: #e8899e;
    --dark: #1a1a1a;
    --light: #fef8f9;
    --white: #ffffff;
    --text: #333333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    z-index: 1000;
    transition: all 0.3s;
}

.container-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo span {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 3px;
    font-weight: 400;
    color: var(--secondary);
    margin-top: -5px;
}

.navbar nav a {
    margin-left: 2.5rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.navbar nav a:hover {
    color: var(--secondary);
}

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(45, 95, 63, 0.7), rgba(232, 137, 158, 0.5)), 
                url('https://images.unsplash.com/photo-1487070183336-b863922373d4?w=1920') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent, rgba(0,0,0,0.2));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--light);
    display: block;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--secondary);
    display: block;
}

.hero p {
    font-size: 1.05rem;
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(244, 166, 184, 0.4);
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(244, 166, 184, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

/* Koleksi */
.koleksi {
    padding: 7rem 5%;
    background: var(--light);
}

.koleksi-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.koleksi-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s, box-shadow 0.4s;
}

.koleksi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(244, 166, 184, 0.2);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.koleksi-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 95, 63, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.koleksi-card:hover .card-overlay {
    opacity: 1;
}

.card-btn {
    padding: 0.9rem 2rem;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s;
}

.card-btn:hover {
    background: var(--accent);
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.card-content p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.card-price {
    display: block;
    color: var(--secondary);
    font-weight: 600;
    font-size: 1rem;
}

/* Layanan */
.layanan {
    padding: 7rem 5%;
    background: var(--white);
}

.layanan-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.layanan-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.layanan-content p {
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.layanan-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.layanan-item {
    text-align: center;
}

.layanan-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.layanan-item h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.layanan-item p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

.layanan-image {
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
}

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

/* Galeri */
.galeri {
    padding: 7rem 5%;
    background: var(--light);
}

.galeri-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.galeri-item {
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s;
}

.galeri-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.galeri-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Kontak */
.kontak {
    padding: 7rem 5%;
    background: var(--white);
}

.kontak-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.kontak-info {
    background: var(--primary);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
}

.kontak-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.kontak-info p {
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.kontak-info .section-subtitle {
    color: var(--secondary);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-size: 1rem;
}

.info-item p {
    margin: 0;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s;
    width: 100%;
}

.btn-whatsapp:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.wa-icon {
    font-size: 2.5rem;
}

.btn-whatsapp strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.btn-whatsapp small {
    display: block;
    opacity: 0.7;
}

.kontak-map {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--secondary);
}

.footer-col p {
    line-height: 1.8;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
    opacity: 0.9;
    font-size: 0.9rem;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.social-links a:hover {
    opacity: 1;
    color: var(--secondary);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navbar nav a {
        margin-left: 1rem;
        font-size: 0.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .koleksi-grid,
    .galeri-grid {
        grid-template-columns: 1fr;
    }
    
    .layanan-container,
    .kontak-container,
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .layanan-list {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}
