/* BMHGDA.com - Passionate Dating Theme */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Lato:wght@300;400;700&display=swap');

:root {
    --primary: #E91E63;
    --secondary: #FF5722;
    --accent: #FFC107;
    --love: #FF1744;
    --romance: #F48FB1;
    --dark: #1a0a0a;
    --darker: #0d0505;
    --light: #FFF8F8;
    --pink: #FCE4EC;
}

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

body {
    font-family: 'Lato', sans-serif;
    background: var(--dark);
    color: var(--light);
    min-height: 100vh;
    background-image: 
        radial-gradient(ellipse at 30% 30%, rgba(233, 30, 99, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(255, 87, 34, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 60%);
}

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

header {
    background: linear-gradient(90deg, var(--love), var(--secondary), var(--primary));
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(233, 30, 99, 0.5);
}

header .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: white;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

nav { display: flex; gap: 10px; flex-wrap: wrap; }

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    background: rgba(255,255,255,0.2);
}

nav a:hover, nav a.active {
    background: white;
    color: var(--primary);
    transform: scale(1.05);
}

.hero {
    text-align: center;
    padding: 70px 20px;
    background: linear-gradient(180deg, transparent, rgba(233, 30, 99, 0.1));
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--accent), var(--love), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.hero p { font-size: 22px; color: var(--romance); }

.main { padding: 40px 20px; min-height: 60vh; }

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

.card {
    background: linear-gradient(145deg, rgba(233, 30, 99, 0.15), rgba(26, 10, 10, 0.95));
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 2px solid rgba(233, 30, 99, 0.3);
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.3);
}

.card-icon {
    font-size: 56px;
    padding: 30px;
    text-align: center;
    background: rgba(0,0,0,0.3);
}

.card-body { padding: 20px; text-align: center; }

.card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--accent);
}

.card-body p { font-size: 14px; color: var(--romance); margin-bottom: 15px; }

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.6);
}

.tool-page, .article-page {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(233, 30, 99, 0.12), rgba(26, 10, 10, 0.95));
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    border: 2px solid var(--primary);
}

.tool-page h1, .article-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    text-align: center;
    margin-bottom: 25px;
    color: var(--accent);
}

.article-page h1 { font-size: 36px; }

.article-page .meta { color: var(--romance); margin-bottom: 30px; padding-bottom: 20px; border-bottom: 2px dashed rgba(233,30,99,0.3); }

.article-page h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin: 30px 0 15px;
    color: var(--secondary);
}

.article-page p { line-height: 1.9; margin-bottom: 18px; font-size: 17px; }

input, select, textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 15px;
    background: rgba(0,0,0,0.4);
    border: 2px solid rgba(233, 30, 99, 0.3);
    border-radius: 12px;
    color: var(--light);
    font-size: 16px;
}

input:focus { border-color: var(--accent); outline: none; }

.result {
    margin-top: 25px;
    padding: 25px;
    background: rgba(255, 193, 7, 0.15);
    border-radius: 15px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    border: 2px solid var(--accent);
}

footer {
    background: linear-gradient(90deg, var(--love), var(--secondary), var(--primary));
    padding: 35px 0;
    margin-top: 60px;
    text-align: center;
}

footer p { color: white; font-size: 16px; }
footer a { color: white; text-decoration: underline; margin: 0 10px; }

.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.breadcrumb { margin-bottom: 25px; color: var(--romance); }
.breadcrumb a { color: var(--accent); text-decoration: none; }

h2 { font-family: 'Playfair Display', serif; font-size: 30px; margin: 40px 0 20px; color: var(--light); }

@media (max-width: 768px) {
    .hero h1 { font-size: 34px; }
    .grid { grid-template-columns: 1fr; }
    .tool-page, .article-page { padding: 25px; }
    .logo { font-size: 28px; }
}
