:root {
    --primary-color: #fce4ec;
    --primary-dark: #f06292;
    --accent-gold: #d4af37;
    --text-color: #4a4a4a;
    --text-light: #7a7a7a;
    --white: #ffffff;
    --bg-light: #fff9fb;
    --header-height: 80px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: #2d2d2d;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section__header {
    text-align: center;
    margin-bottom: 50px;
}

.section__subtitle {
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.section__title {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn--primary {
    background-color: var(--primary-dark);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(240, 98, 146, 0.3);
}

.btn--primary:hover {
    background-color: #e91e63;
    transform: translateY(-3px);
}

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

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

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

.btn--white:hover {
    transform: scale(1.05);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav__logo {
    display: flex;
    align-items: center; /* ini kuncinya */
    gap: 8px;            /* jarak logo & teks */
    text-decoration: none;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-dark);
}

.nav__logo span {
    color: var(--accent-gold);
    font-weight: 400;
}

.nav__list {
    display: flex;
    gap: 30px;
}

.nav__link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
}

.nav__link:hover, .nav__link.active {
    color: var(--primary-dark);
}

.nav__toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    height: 100vh;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero__subtitle {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.hero__title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero__description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero__btns {
    display: flex;
    gap: 15px;
}

.hero__image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center;     /* vertical center (jika perlu) */
}

.hero__image-wrapper img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}

.hero__img {
    width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 200px 200px 0 0;
    box-shadow: 20px 20px 0 var(--primary-color);
    z-index: 2;
}

.hero__circle {
    position: absolute;
    top: -100px;
    right: 20px;
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.3;
}

/* About */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about__img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about__text {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about__stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item span {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    font-weight: 700;
}

/* Services */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    text-align: center;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(240, 98, 146, 0.1);
    border-color: var(--primary-color);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.service-card h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Gallery */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery__item {
    overflow: hidden;
    border-radius: 10px;
    height: 350px;
    width: 350px;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__cta {
    text-align: center;
    margin-top: 40px;
}

/* CTA */
.cta {
    background: linear-gradient(rgba(240, 98, 146, 0.8), rgba(240, 98, 146, 0.8)), url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.cta__container h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta__container p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background: #2d2d2d;
    color: #eee;
    padding-bottom: 20px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer__logo {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer__logo span { color: var(--primary-dark); }

.footer__links h4, .footer__social h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer__links ul li {
    margin-bottom: 10px;
}

.footer__links a:hover {
    color: var(--primary-dark);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: var(--primary-dark);
}

.footer__bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.8rem;
}

/* Floating WA */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero__container, .about__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero__content {
        order: 2;
    }
    
    .hero__image-wrapper {
        order: 1;
    }
    
    .hero__btns {
        justify-content: center;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav__list {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 40px 0;
        text-align: center;
        transition: 0.4s;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav__list.active {
        top: var(--header-height);
    }

    .nav__toggle {
        display: block;
    }

    .hero__img {
        width: 280px;
        height: 350px;
    }
}