
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --bg: #f8f3f0;              
    --card-bg: #ffffff;         
    --text: #4b3f3f;            
    --accent: #d8a7b1;          
    --accent-soft: #eac6cf;    
    --gold: #c9a86a;           
    --shadow: rgba(0,0,0,0.08);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.fade {
    animation: fadeIn 0.7s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


header {
    background: var(--card-bg);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 1px;
    transition: .3s;
}

.logo:hover {
    color: var(--accent);
}

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    padding-bottom: 4px;
    transition: .3s ease;
}

nav a:hover,
nav a.active {
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
}


.hero {
    height: 80vh;
    background: linear-gradient(135deg, #eac7d099 0%, #d8a7b199 100%), url("bg.jpg") center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}


.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    background: var(--accent);
    color: white;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,.12);
    transition: .3s ease;
}

.btn:hover {
    background: var(--gold);
    transform: scale(1.05);
}


.container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.title {
    color: var(--text);
    font-size: 2rem;
    margin-bottom: 35px;
    font-weight: 700;
}


.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: .3s ease;
    text-align: center;
}

.card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
}

.card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 28px rgba(0,0,0,.15);
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 5px;
}

.desc {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-top: 6px;
}

.step-list {
    list-style: none;
    counter-reset: step;
    max-width: 600px;
    margin: auto;
}

.step-list li {
    background: var(--card-bg);
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px var(--shadow);
}

.step-list li::before {
    counter-increment: step;
    content: counter(step);
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

footer {
    background: var(--accent);
    color: white;
    padding: 25px;
    text-align: center;
    margin-top: 50px;
    border-top: 4px solid var(--gold);
}

footer a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}
