:root {
    --bg: #fff6f8;
    --bg-alt: #ffeef2;
    --accent: #e8869c;
    --accent-dark: #c95f7a;
    --text: #4a3540;
    --muted: #7a6670;
    --gold: #f5c842;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Cambria', serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

header {
    position: sticky;
    top: 0;
    background: rgba(255, 246, 248, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 100;
    border-bottom: 1px solid rgba(232, 134, 156, 0.15);
}

nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.nav-logo-img {
    height: 42px;
    width: auto;
}

.brand {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--accent-dark);
    letter-spacing: 0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.8rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent-dark);
}

main {
    max-width: 1100px;
    margin: 0 auto;
}

.hero {
    text-align: center;
    padding: 4rem 1.5rem 5rem;
}

.hero-logo {
    margin-bottom: 1.5rem;
}

.big-logo {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(232, 134, 156, 0.3));
    animation: floaty 4s ease-in-out infinite;
}

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--accent-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.2rem;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 6px 18px rgba(232, 134, 156, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(232, 134, 156, 0.45);
}

.section {
    padding: 4rem 1.5rem;
    text-align: center;
}

.section-alt {
    background: var(--bg-alt);
    margin: 2rem -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-radius: 24px;
}

.section h2 {
    font-size: 2.2rem;
    color: var(--accent-dark);
    margin-bottom: 1.5rem;
}

.section p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(232, 134, 156, 0.12);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(232, 134, 156, 0.22);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 0.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 64px;
}

.card-icon svg {
    width: 60px;
    height: 60px;
}

.card h3 {
    color: var(--accent-dark);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.card p {
    color: var(--muted);
    font-size: 1rem;
}

.contact-info {
    font-size: 1.3rem;
    color: var(--accent-dark);
    margin-top: 1rem;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 2rem 1.5rem;
    color: var(--muted);
    font-size: 0.95rem;
    border-top: 1px solid rgba(232, 134, 156, 0.15);
    margin-top: 2rem;
}

@media (max-width: 640px) {
    .hero h1 { font-size: 2.5rem; }
    .nav-links { gap: 1rem; font-size: 0.95rem; }
    .brand { font-size: 1.15rem; }
    .big-logo { width: 160px; }
}
