:root {
    --primary: #b88c5d;
    --bg: #fdfaf6;
    --dark: #333;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

header .logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

header nav a {
    margin-left: 24px;
    font-size: 14px;
    font-weight: 500;
}

.btn-primary {
    padding: 12px 24px;
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    display: inline-block;
}

/* HERO */
#hero {
    padding: 100px 20px;
    text-align: center;
    background: url('https://images.pexels.com/photos/1024993/pexels-photo-1024993.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
    position: relative;
    color: #fff;
}

#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

#hero .content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: auto;
}

#hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    margin-bottom: 10px;
}

#hero p {
    font-size: 18px;
    opacity: .9;
    margin-bottom: 20px;
}

/* FEATURES */
#features {
    padding: 80px 20px;
    text-align: center;
}

#features h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 10px;
}

#features .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature-box {
    background: #fff;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.feature-box h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* PRICING */
#pricing {
    padding: 80px 20px;
    background: #fff;
}

#pricing h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    text-align: center;
}

.pricing-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.plan {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.plan h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.plan .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin: 16px 0;
}

.plan ul {
    list-style: none;
    margin: 20px 0;
    text-align: left;
    font-size: 14px;
}

.plan ul li {
    margin-bottom: 6px;
}

/* TESTIMONI */
#testimoni {
    padding: 80px 20px;
    text-align: center;
}

#testimoni h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
}

.testi-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.testi-box {
    background: #fff;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* CTA */
#cta {
    padding: 80px 20px;
    text-align: center;
    background: var(--primary);
    color: #fff;
}

#cta h2 {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

footer {
    padding: 20px;
    text-align: center;
    font-size: 13px;
    color: #777;
}

/* === ANIMATION ON SCROLL === */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease-out, transform .8s ease-out;
}

[data-animate].in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ==== SIMPLE CAROUSEL ==== */
.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 4px;
    border: none;
    background: #ccc;
    cursor: pointer;
    transition: 0.3s;
}

.carousel-dots button.active {
    background: var(--primary);
    transform: scale(1.2);
}

#hero .carousel-item {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
}

#hero .carousel-item .content {
    position: relative;
    color: #fff;
    text-align: center;
    max-width: 700px;
    padding: 20px;
}
