/* =====================================
   LEA MARIE ADVOCACY WEBSITE
   style.css
===================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Great+Vibes&family=Poppins:wght@300;400;500;600&display=swap');

/* COLORS */
:root {
    --pink-main: #FDF1F5;
    --pink-light: #FFF8FA;
    --pink-accent: #E8B8C8;
    --pink-dark: #C97A9A;

    --blue-main: #5B9BD5;
    --blue-light: #DDEEFF;

    --white: #ffffff;
    --text: #444444;

    --shadow: 0 6px 20px rgba(0,0,0,0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--pink-main);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
}

/* NAVIGATION */

nav {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

nav a {
    text-decoration: none;
    color: var(--blue-main);
    font-weight: 600;
    transition: .3s;
}

nav a:hover {
    color: var(--pink-dark);
}

/* HERO */

.hero {
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--pink-dark);
    margin-bottom: 10px;
}

.hero h2 {
    color: var(--blue-main);
    font-size: 1.4rem;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 25px;
}

/* SCRIPT QUOTES */

.script {
    font-family: 'Great Vibes', cursive;
    font-size: 2.3rem;
    color: var(--blue-main);
    margin-top: 20px;
}

/* BUTTONS */

.btn {
    display: inline-block;
    background: var(--blue-main);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    margin: 10px;
    transition: .3s;
}

.btn:hover {
    transform: translateY(-3px);
    opacity: .9;
}

.btn-pink {
    background: var(--pink-dark);
}

/* SECTIONS */

.section {
    max-width: 1100px;
    margin: auto;
    padding: 90px 25px;
}

.section h2 {
    text-align: center;
    color: var(--pink-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin-bottom: 30px;
}

.section p {
    margin-bottom: 20px;
}

/* CARDS */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 25px;
}

.card {
    background: var(--pink-light);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.card h3 {
    color: var(--blue-main);
    margin-bottom: 15px;
}

/* RESOURCE CARDS */

.resource {
    background: white;
    border-left: 6px solid var(--blue-main);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.resource h3 {
    color: var(--pink-dark);
}

/* CONTACT FORM */

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
}

.contact-form button {
    background: var(--blue-main);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 1rem;
}

/* BIBLE VERSE */

.verse-box {
    background: white;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow);
}

.verse {
    font-family: 'Great Vibes', cursive;
    color: var(--pink-dark);
    font-size: 2.5rem;
}

/* FOOTER */

footer {
    background: white;
    text-align: center;
    padding: 50px 20px;
    margin-top: 80px;
}

footer p {
    margin: 10px 0;
}

.footer-quote {
    color: var(--blue-main);
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
}

/* AWARENESS RIBBON */

.ribbon {
    font-size: 4rem;
    color: var(--blue-main);
    margin-bottom: 15px;
}

/* SOCIAL */

.social-link {
    color: var(--blue-main);
    font-weight: 600;
    text-decoration: none;
}

/* MOBILE */

@media (max-width: 768px) {

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero h2 {
        font-size: 1rem;
    }

    .section h2 {
        font-size: 2.2rem;
    }

    .script,
    .verse {
        font-size: 1.8rem;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 15px;
    }
}
