/* Hippie / Fresh / Young Vibe */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Amatic+SC:wght@400;700&display=swap');

:root {
    --pale-pink: #fff0f5;   /* matching logo background */
    --soft-peach: #ffe4e1;
    --hippie-green: #6b8e23;
    --flower-power: #ffb347;
    --peace-blue: #87ceeb;
    --dark-ink: #2f4f4f;
    --warm-sand: #f5deb3;
}

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

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--pale-pink);
    color: #3b2e24;
    line-height: 1.6;
}

/* Peace sign cursor / decoration */
body::before {
    content: "☮️";
    font-size: 0.8rem;
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0.3;
    z-index: 999;
    pointer-events: none;
}

h1, h2, h3, h4, .navbar-brand {
    font-family: 'Amatic SC', cursive;
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar {
    background: rgba(255, 240, 245, 0.95) !important;
    backdrop-filter: blur(8px);
    border-bottom: 2px solid var(--hippie-green);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-size: 2rem;
    color: var(--dark-ink) !important;
    text-shadow: 2px 2px 0 var(--soft-peach);
}

.navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: #5d3a1a !important;
    margin: 0 0.5rem;
    transition: all 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--hippie-green) !important;
    transform: scale(1.05);
    border-bottom: 2px solid var(--flower-power);
}

/* Hero section with groovy pattern */
.hero-section {
    background: linear-gradient(135deg, rgba(255,240,245,0.9), rgba(255,228,225,0.8)), url('https://www.transparenttextures.com/patterns/60-lines.png');
    background-blend-mode: overlay;
    padding: 100px 0;
    text-align: center;
    border-radius: 0 0 60px 60px;
    margin-bottom: 40px;
    border-bottom: 4px solid var(--flower-power);
}

.hero-section h1 {
    font-size: 4rem;
    color: var(--dark-ink);
}

.hero-section .lead {
    font-size: 1.5rem;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--hippie-green);
    border: none;
    border-radius: 40px;
    padding: 12px 30px;
    font-weight: bold;
    transition: 0.2s;
}

.btn-primary:hover {
    background-color: #8fbc3c;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.btn-outline-primary {
    border: 2px solid var(--hippie-green);
    color: var(--hippie-green);
    border-radius: 40px;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: var(--hippie-green);
    color: white;
}

.card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(2px);
    border-radius: 48px 24px 48px 24px;
    border: 1px solid #ffe0c0;
    transition: all 0.3s;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px) rotate(0.5deg);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.2);
    background: white;
}

.event-date {
    background: var(--flower-power);
    color: #3b2e24;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 5px 15px;
}

.promo-badge {
    background: #ff6f61;
    color: white;
    border-radius: 30px;
}

footer {
    background: #f9e2cf !important;
    color: #4a3729 !important;
    border-top: 5px solid var(--hippie-green);
}

footer a {
    color: #6b4c3b !important;
}

footer a:hover {
    color: var(--hippie-green) !important;
    text-decoration: underline;
}

.social-links a {
    transition: transform 0.2s;
    display: inline-block;
}

.social-links a:hover {
    transform: scale(1.2) rotate(5deg);
    color: var(--flower-power) !important;
}

/* custom hippie decorations */
.hippie-stamp {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%236b8e23"><path d="M12 2L15 8H22L16 12L19 18L12 15L5 18L8 12L2 8H9L12 2Z"/></svg>') no-repeat center;
    background-size: contain;
    width: 30px;
    height: 30px;
    display: inline-block;
    opacity: 0.5;
}

.btn-outline-success {
    border-color: var(--hippie-green);
    color: var(--hippie-green);
    border-radius: 40px;
}

.btn-outline-success:hover {
    background: var(--hippie-green);
    color: white;
}

/* form fields */
.form-control, .form-control:focus {
    border-radius: 30px;
    border: 1px solid #ffcfb6;
    background: #fffaf5;
    font-family: 'Quicksand', sans-serif;
}

/* responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .navbar-brand {
        font-size: 1.5rem;
    }
}