/* 
   Modern Harmony Design System 2.0
   Art Director: Antigravity
*/

:root {
    /* Brand Gradients */
    --primary-gradient: linear-gradient(135deg, #FF2D78 0%, #FF70A2 100%);
    --secondary-gradient: linear-gradient(135deg, #00AEEF 0%, #68D4FF 100%);
    --accent-gradient: linear-gradient(135deg, #FFD32A 0%, #FFF200 100%);
    --dark-gradient: linear-gradient(135deg, #1E272E 0%, #2F3640 100%);
    
    /* Brand Colors */
    --pink: #FF2D78;
    --blue: #00AEEF;
    --yellow: #FFD32A;
    --green: #27ae60;
    
    /* Neutrals */
    --text-main: #1E272E;
    --text-soft: #485460;
    --bg-main: #FFFFFF;
    --bg-soft: #FFF9F9;
    --white: #FFFFFF;
    
    /* Layout */
    --radius-huge: 40px;
    --radius-card: 32px;
    --radius-pill: 100px;
    --container: 1200px;
    
    /* Effects */
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.6);
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.04);
    --shadow-strong: 0 20px 60px rgba(255, 45, 120, 0.12);
    --transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background: var(--bg-main);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Background Blobs */
.background-blobs {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    filter: blur(100px);
    opacity: 0.25;
    pointer-events: none;
}

.blob { position: absolute; border-radius: 50%; animation: float 25s infinite alternate; }
.blob.pink { width: 60vw; height: 60vw; background: var(--pink); top: -20%; right: -10%; }
.blob.blue { width: 50vw; height: 50vw; background: var(--blue); bottom: -10%; left: -10%; animation-delay: -5s; }
.blob.yellow { width: 30vw; height: 30vw; background: var(--yellow); top: 30%; left: 20%; animation-duration: 35s; }

@keyframes float {
    from { transform: translate(0, 0) rotate(0deg) scale(1); }
    to { transform: translate(100px, 50px) rotate(90deg) scale(1.1); }
}

/* Typography */
h1 { font-size: clamp(2.8rem, 8vw, 4.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: 1.8rem; font-weight: 700; }
.gradient-text { background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.label-tag { display: inline-block; padding: 6px 18px; border-radius: 100px; font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--pink); background: rgba(255, 45, 120, 0.08); margin-bottom: 16px; }
.label-tag.light { color: white; background: rgba(255,255,255,0.1); }

/* Buttons */
.btn-primary { 
    display: inline-block; padding: 18px 40px; background: var(--primary-gradient); color: white; 
    border-radius: var(--radius-pill); font-weight: 700; box-shadow: 0 10px 30px rgba(255, 45, 120, 0.3);
    transition: var(--transition); border: none; cursor: pointer; text-align: center;
}
.btn-primary:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 15px 40px rgba(255, 45, 120, 0.4); }

.btn-secondary { 
    display: inline-flex; align-items: center; gap: 10px; padding: 18px 40px; 
    border: 2px solid var(--pink); color: var(--pink); border-radius: var(--radius-pill); 
    font-weight: 700; transition: var(--transition);
}
.btn-secondary:hover { background: var(--pink); color: white; transform: translateY(-3px); }

/* Navbar */
#navbar {
    height: 110px; position: fixed; top: 0; width: 100%; z-index: 1000;
    display: flex; align-items: center; transition: var(--transition);
}

#navbar.scrolled {
    height: 85px; background: var(--glass); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border); box-shadow: var(--shadow-soft);
}

.nav-content { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo img { height: 75px; transition: var(--transition); object-fit: contain; }
#navbar.scrolled .logo img { height: 60px; }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a:not(.btn-nav-cta) { font-weight: 600; color: var(--text-main); font-size: 1rem; position: relative; }
.nav-links a:not(.btn-nav-cta)::after {
    content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 3px; 
    background: var(--pink); border-radius: 10px; transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }

.nav-phone { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--pink) !important; background: rgba(255, 45, 120, 0.05); padding: 10px 20px; border-radius: var(--radius-pill); }
.nav-phone:hover { background: rgba(255, 45, 120, 0.1); transform: translateY(-2px); }

.btn-nav-cta { background: var(--primary-gradient); color: white; padding: 12px 24px; border-radius: var(--radius-pill); font-weight: 700; box-shadow: 0 8px 20px rgba(255, 45, 120, 0.2); }
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(255, 45, 120, 0.3); }

.menu-toggle { display: none; background: none; border: none; font-size: 1.8rem; color: var(--text-main); cursor: pointer; }

/* Hero Section */
.hero-section { min-height: 100vh; padding: 160px 0 100px; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }

.vacancies-pill { 
    display: inline-flex; align-items: center; gap: 12px; padding: 10px 24px; 
    background: rgba(255, 45, 120, 0.1); color: var(--pink); border-radius: var(--radius-pill); 
    font-weight: 800; font-size: 0.9rem; margin-bottom: 32px; 
}
.pulse-dot { width: 10px; height: 10px; background: var(--pink); border-radius: 50%; position: relative; }
.pulse-dot::before { content: ''; position: absolute; inset: -4px; border: 2px solid var(--pink); border-radius: 50%; animation: pulse 2s infinite; }

@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(2.5); opacity: 0; } }

.hero-desc { font-size: 1.4rem; color: var(--text-soft); margin-bottom: 48px; max-width: 650px; line-height: 1.5; }
.hero-actions { display: flex; gap: 24px; margin-bottom: 64px; flex-wrap: wrap; }
.hero-registration { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--text-soft); }
.hero-registration i { color: var(--blue); font-size: 1.4rem; }

.hero-image-wrap { position: relative; width: 100%; }
.hero-slider { position: relative; border-radius: var(--radius-huge); overflow: hidden; box-shadow: var(--shadow-strong); aspect-ratio: 4/3; }
.hero-img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-huge); position: absolute; top: 0; left: 0; opacity: 0; transition: opacity 1.5s ease-in-out; z-index: 1; }
.hero-img.active { opacity: 1; z-index: 1; }
.hero-badge {
    position: absolute; z-index: 2; background: var(--glass); backdrop-filter: blur(10px);
    padding: 12px 20px; border-radius: var(--radius-card); border: 1px solid var(--glass-border);
    display: flex; align-items: center; gap: 10px; box-shadow: 0 10px 25px rgba(0,0,0,0.08); font-weight: 800;
    font-size: 0.95rem;
}
.ccs-badge { top: -15px; right: -15px; }
.exp-badge { bottom: -15px; left: -15px; }
.outdoor-badge { bottom: -15px; right: -15px; }
.hero-badge i { font-size: 1.3rem; }
.ccs-badge i { color: var(--blue); }
.exp-badge i { color: var(--yellow); }
.outdoor-badge i { color: #f39c12; }

/* Trust Bar */
.trust-bar { padding: 40px 0; background: rgba(255,255,255,0.5); backdrop-filter: blur(10px); border-top: 1px solid rgba(0,0,0,0.03); border-bottom: 1px solid rgba(0,0,0,0.03); }
.trust-grid { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 0.95rem; color: var(--text-soft); }
.trust-item i { font-size: 1.3rem; color: var(--pink); opacity: 0.8; }

/* Offerings */
.offerings-section { padding: 140px 0; }
.section-header { text-align: center; margin-bottom: 80px; max-width: 800px; margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: 20px; }
.section-header p { font-size: 1.2rem; color: var(--text-soft); }

.offerings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.offering-card { padding: 50px 40px; border-radius: var(--radius-card); background: white; border: 1px solid rgba(0,0,0,0.03); box-shadow: var(--shadow-soft); transition: var(--transition); text-align: center; }
.offering-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-strong); }
.card-icon { width: 80px; height: 80px; margin: 0 auto 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; }

.pink-card .card-icon { background: rgba(255, 45, 120, 0.1); color: var(--pink); }
.blue-card .card-icon { background: rgba(0, 174, 239, 0.1); color: var(--blue); }
.yellow-card .card-icon { background: rgba(255, 211, 42, 0.1); color: var(--yellow); }
.green-card .card-icon { background: rgba(39, 174, 96, 0.1); color: var(--green); }

/* About Section */
.about-section { padding: 140px 0; background: var(--bg-soft); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-img-frame { border-radius: var(--radius-huge); overflow: hidden; box-shadow: var(--shadow-strong); }
.about-text-col h2 { margin-bottom: 32px; }
.about-text-col p { font-size: 1.15rem; color: var(--text-soft); margin-bottom: 24px; }
.check-list { margin: 40px 0; }
.check-list li { display: flex; align-items: center; gap: 16px; font-weight: 700; font-size: 1.1rem; margin-bottom: 18px; color: var(--text-main); }
.check-list i { color: var(--blue); font-size: 1.4rem; }
.about-cta { margin-top: 20px; }

/* Schedule Section */
.schedule-section { padding: 140px 0; }
.schedule-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.schedule-card { padding: 40px; border-radius: var(--radius-huge); background: var(--glass); border: 1px solid var(--glass-border); box-shadow: var(--shadow-soft); display: flex; flex-direction: column; }
.schedule-card-icon { font-size: 3.5rem; margin-bottom: 30px; background: var(--secondary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.schedule-card h3 { margin-bottom: 30px; }

.map-container { border-radius: 20px; overflow: hidden; margin-bottom: 24px; box-shadow: var(--shadow-soft); line-height: 0; }
.map-container iframe { filter: grayscale(0.2) contrast(1.1); }

.location-info-small { text-align: left; }
.location-info-small h3 { margin-bottom: 10px; font-size: 1.6rem; }
.location-info-small p { color: var(--text-soft); font-weight: 600; margin-bottom: 15px; }

.hours-table { margin-bottom: 40px; }
.hours-row { display: flex; justify-content: space-between; padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-weight: 700; font-size: 1.1rem; }
.hours-val { color: var(--text-soft); }
.closed-label { color: var(--pink); }
.schedule-note { font-weight: 700; color: var(--pink); font-size: 1rem; }

.location-suburb { font-size: 2rem; font-weight: 800; color: var(--blue); margin-bottom: 16px; }
.location-detail { font-size: 1.2rem; color: var(--text-soft); margin-bottom: 40px; }
.map-link { display: inline-flex; align-items: center; gap: 10px; color: var(--pink); font-weight: 800; font-size: 1.1rem; border-bottom: 2px solid transparent; }
.map-link:hover { border-color: var(--pink); }

/* Contact Section */
.contact-section { padding: 140px 0; }
.contact-card { background: var(--dark-gradient); border-radius: var(--radius-huge); padding: 100px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; color: white; box-shadow: 0 40px 80px rgba(0,0,0,0.15); }
.contact-info h2 { margin-bottom: 24px; font-size: 3.5rem; }
.contact-info p { font-size: 1.2rem; opacity: 0.8; margin-bottom: 48px; line-height: 1.5; }
.phone-cta { font-size: 2.2rem; font-weight: 900; color: var(--pink); display: block; margin-bottom: 48px; }
.contact-extra-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; font-weight: 700; font-size: 1.1rem; opacity: 0.9; }
.contact-extra-item i { color: var(--pink); font-size: 1.4rem; }

.contact-form { display: grid; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-field { display: grid; gap: 10px; }
.form-field label { font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em; opacity: 0.9; }
.form-field input, .form-field textarea {
    padding: 18px 24px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06); color: white; font-family: inherit; font-size: 1rem; transition: var(--transition);
}
.form-field input:focus, .form-field textarea:focus { outline: none; background: rgba(255,255,255,0.12); border-color: var(--pink); box-shadow: 0 0 0 4px rgba(255, 45, 120, 0.15); }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.3); }

.btn-submit {
    padding: 20px; background: var(--primary-gradient); color: white; border: none; border-radius: 16px;
    font-weight: 800; font-size: 1.15rem; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 12px; transition: var(--transition);
}
.btn-submit:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(255, 45, 120, 0.4); }
.form-note { text-align: center; font-size: 0.9rem; opacity: 0.6; font-weight: 600; }

/* Footer */
.site-footer { padding: 100px 0 60px; background: #FFFBFB; border-top: 1px solid rgba(0,0,0,0.03); }
.footer-top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 60px; margin-bottom: 80px; }
.footer-logo { height: 110px; margin: 0 auto; }
.footer-links { display: flex; flex-direction: column; gap: 15px; }
.footer-links a { font-weight: 700; color: var(--text-soft); font-size: 1.1rem; }
.footer-links a:hover { color: var(--pink); }
.footer-contact { text-align: right; }
.footer-contact a { font-size: 1.4rem; font-weight: 900; color: var(--pink); margin-bottom: 10px; display: block; }
.footer-contact p { font-weight: 700; color: var(--text-soft); }

.footer-bottom { border-top: 1px solid rgba(0,0,0,0.05); padding-top: 40px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-weight: 600; color: var(--text-soft); font-size: 0.95rem; }
.footer-socials { display: flex; gap: 20px; }
.footer-socials a { width: 45px; height: 45px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--pink); box-shadow: var(--shadow-soft); }
.footer-socials a:hover { transform: translateY(-3px); background: var(--pink); color: white; }

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--transition), transform 1s var(--transition); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: 0.2s; }

/* Mobile Menu */
.nav-links.active {
    display: flex; position: absolute; top: 100%; left: 0; width: 100%;
    background: white; flex-direction: column; padding: 40px 24px; gap: 24px;
    box-shadow: 0 40px 60px rgba(0,0,0,0.1); border-top: 1px solid rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 1100px) {
    .hero-grid, .about-layout, .contact-card { grid-template-columns: 1fr; gap: 60px; }
    .hero-text { text-align: center; }
    .hero-desc, .hero-actions, .hero-registration { justify-content: center; margin-left: auto; margin-right: auto; }
    .hero-visual { order: 1; max-width: 600px; margin: 0 auto; }
    .ccs-badge, .exp-badge, .outdoor-badge { right: 10px; left: auto; top: auto; bottom: auto; position: absolute; }
    .ccs-badge { top: 10px; }
    .exp-badge { bottom: 10px; left: 10px; right: auto; }
    .outdoor-badge { bottom: 10px; right: 10px; }
    .contact-card { padding: 60px 40px; }
    .contact-info { text-align: center; }
    .contact-extras { justify-content: center; flex-direction: column; }
    .footer-top { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-contact { text-align: center; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    #navbar { height: 80px; }
    .logo img { height: 60px; }
    
    .hero-section { padding: 120px 0 60px; }
    .hero-grid { gap: 40px; }
    .hero-visual { order: 1; margin-top: 40px; width: 100%; max-width: 100%; }
    .hero-slider { aspect-ratio: 1/1; } /* Square on mobile for better fit */
    
    .hero-badge { 
        padding: 8px 14px; 
        font-size: 0.8rem; 
        gap: 6px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .hero-badge i { font-size: 1rem; }
    .ccs-badge { top: -10px; right: 5px; }
    .exp-badge { bottom: -10px; left: 5px; }
    .outdoor-badge { bottom: -10px; right: 5px; }

    .schedule-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 24px; text-align: center; }
}
