/* Pelicanos Park Custom Styling */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-green: #1E5631;
    --light-green: #4C9A2A;
    --accent-orange: #FF9F1C;
    --pelican-gold: #FFC107;
    --water-blue: #0077B6;
    --sky-blue: #90E0EF;
    --soft-cream: #FAF9F6;
    --soft-yellow: #FFFDD0;
    --dark-green: #0B2914;
    --font-heading: 'Fredoka', cursive;
    --font-body: 'Outfit', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.45);
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-blur: blur(12px);
    --card-shadow: 0 15px 35px rgba(30, 86, 49, 0.12);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: var(--font-body);
    background-color: var(--soft-cream);
    color: var(--dark-green);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Custom Selection */
::selection {
    background-color: var(--light-green);
    color: white;
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
    border-radius: 24px;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-reverse {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(12px) rotate(-1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse-subtle {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

.floating-element-reverse {
    animation: float-reverse 7s ease-in-out infinite;
}

.pulse-hover:hover {
    animation: pulse-subtle 1.5s infinite;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    padding: 160px 0 100px 0;
    z-index: 1;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-shape svg {
    position: relative;
    display: block;
    width: calc(150% + 1.3px);
    height: 120px;
    transform: rotateY(180deg);
}

.hero-shape .shape-fill {
    fill: var(--soft-cream);
}

.mascot-hero-img {
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(30, 86, 49, 0.25)) contrast(1.05) saturate(1.1);
    transition: var(--transition-smooth);
    background-color: white; /* Give a solid white background circle backup */
    border: 10px solid white;
}

.mascot-hero-img:hover {
    transform: scale(1.03) rotate(1deg);
}

/* Custom Buttons */
.btn-playful-primary {
    background-color: var(--light-green);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 20px rgba(76, 154, 42, 0.35);
    transition: var(--transition-smooth);
}

.btn-playful-primary:hover {
    background-color: var(--primary-green);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(30, 86, 49, 0.45);
}

.btn-playful-secondary {
    background-color: var(--accent-orange);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 20px rgba(255, 159, 28, 0.35);
    transition: var(--transition-smooth);
}

.btn-playful-secondary:hover {
    background-color: #E68A00;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(230, 138, 0, 0.45);
}

/* Cards & Sections */
.section-title {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60%;
    height: 6px;
    background: var(--pelican-gold);
    border-radius: 10px;
    margin: 10px auto 0 auto;
}

.pillar-card {
    border-radius: 24px;
    border: none;
    transition: var(--transition-smooth);
    background: white;
    overflow: hidden;
    height: 100%;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 86, 49, 0.15);
}

.pillar-icon {
    font-size: 3rem;
    color: var(--light-green);
    margin-bottom: 20px;
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 8px solid white;
}

.video-element {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Map frame wrapper */
.map-wrapper {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 8px solid white;
}

/* Footer Custom Styling */
.footer-wave {
    position: relative;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-wave svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.footer-wave .shape-fill {
    fill: var(--primary-green);
}

.site-footer {
    background-color: var(--primary-green);
    color: #E8F5E9;
    padding: 80px 0 30px 0;
}

.footer-link {
    color: #C8E6C9;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--pelican-gold);
    padding-left: 5px;
}

.social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    margin-right: 10px;
}

.social-circle:hover {
    background-color: var(--pelican-gold);
    color: var(--primary-green);
    transform: translateY(-4px);
}
