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

:root {
    --primary-blue: #0047AB;
    --secondary-blue: #4682B4;
    --primary-orange: #FF8C00;
    --light-orange: #FFB347;
    --soft-yellow: #FFD54F;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-gray: #343A40;
    --success-green: #28a745;
    --border-radius: 20px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Nunito', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

h1, h2, h3, h4 {
    font-weight: 800;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    z-index: 0;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.square {
    width: 50px;
    height: 50px;
    transform: rotate(45deg);
}

.triangle {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid var(--primary-orange);
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--box-shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 15px;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.logo-text span {
    color: var(--primary-orange);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 700;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

/* Hero Section */
.hero {
    background-color: var(--primary-blue);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 50px;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--white);
    border-radius: 100% 100% 0 0;
}

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

.hero-text {
    flex: 1;
    min-width: 300px;
    color: var(--white);
    z-index: 1;
    padding-right: 30px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title span {
    color: var(--soft-yellow);
    font-family: 'Coiny', cursive;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    box-shadow: var(--box-shadow);
    transform: rotate(3deg);
    border: 10px solid var(--white);
}

.floating-shapes .circle:nth-child(1) {
    background-color: var(--primary-orange);
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shapes .square:nth-child(2) {
    background-color: var(--soft-yellow);
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.floating-shapes .circle:nth-child(3) {
    background-color: var(--secondary-blue);
    bottom: 25%;
    left: 15%;
    animation-delay: 2s;
}

.floating-shapes .triangle:nth-child(4) {
    bottom: 15%;
    right: 10%;
    animation-delay: 3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

/* Program Info Section */
.program-info {
    background-color: var(--white);
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-family: 'Coiny', cursive;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background-color: var(--primary-orange);
    border-radius: 10px;
}

.info-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.info-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-blue);
    color: var(--white);
    font-size: 3rem;
}

.info-card:nth-child(2) .card-icon {
    background-color: var(--primary-orange);
}

.info-card:nth-child(3) .card-icon {
    background-color: var(--secondary-blue);
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

/* Program Schedule */
.schedule {
    background-color: var(--light-gray);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.schedule-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.schedule-content {
    flex: 1;
    min-width: 300px;
}

.schedule-content h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-family: 'Coiny', cursive;
}

.schedule-card {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0 0 0 100%;
}

.schedule-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.detail-text h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.schedule-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.schedule-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transform: rotate(-3deg);
    border: 10px solid var(--white);
}

/* Benefits Section */
.benefits {
    background-color: var(--white);
    padding: 80px 0;
    position: relative;
}

.benefits-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
    width: 100%;
}

.benefit-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    height: 10px;
    background-color: var(--primary-orange);
    transition: all 0.3s ease;
    z-index: -1;
}

.benefit-card:hover::before {
    height: 100%;
    opacity: 0.1;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background-color: var(--primary-orange);
    color: var(--white);
}

.benefit-card h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Sessions Section */
.sessions {
    background-color: var(--light-gray);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.sessions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 71, 171, 0.05) 0%, rgba(255, 140, 0, 0.05) 100%);
}

/* Giant Session Banner */
.giant-session-banner {
    background-color: var(--primary-blue);
    border-radius: var(--border-radius);
    margin: 50px 0;
    padding: 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transform: rotate(-1deg);
}

.giant-session-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 0 100%;
}

.banner-content {
    padding: 40px;
    color: white;
    transform: rotate(1deg);
}

.banner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.banner-title h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--primary-orange);
    font-family: 'Coiny', cursive;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}

.banner-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.date-circle {
    width: 120px;
    height: 120px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.date-month {
    font-size: 1.2rem;
    font-weight: 700;
}

.date-day {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.date-year {
    font-size: 1.2rem;
    font-weight: 700;
}

.banner-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
}

.detail-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.detail-text h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.banner-tagline {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    font-size: 1.5rem;
    font-weight: 800;
}

.tagline-separator {
    margin: 0 15px;
    color: var(--primary-orange);
}

.banner-cta {
    display: block;
    background-color: var(--primary-orange);
    color: white;
    text-align: center;
    padding: 15px 30px;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50px;
    margin: 0 auto;
    max-width: 300px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.banner-cta:hover {
    background-color: var(--light-orange);
    transform: translateY(-5px);
}

/* Session Cards */
.session-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.session-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.session-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-orange);
}

.session-card:hover {
    transform: translateY(-10px);
}

.session-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 71, 171, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: 'Coiny', cursive;
}

.session-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background-color: var(--primary-orange);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--white);
    border-radius: 100% 100% 0 0;
}

.cta-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Coiny', cursive;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.cta .btn-primary {
    background-color: var(--white);
    color: var(--primary-orange);
}

.cta .btn-secondary {
    border-color: var(--white);
}

/* Registration Form */
.registration {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-orange));
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.form-title {
    text-align: center;
    margin-bottom: 40px;
}

.form-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-family: 'Coiny', cursive;
}

.form-title p {
    color: #777;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--primary-blue);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
}

.form-control:focus {
    border-color: var(--primary-orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.2);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
    min-width: 250px;
}

.submit-btn {
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    margin-top: 20px;
    font-family: 'Nunito', sans-serif;
}

.submit-btn:hover {
    background-color: var(--primary-blue);
}

/* Newsletter */
.newsletter {
    background-color: var(--light-gray);
    padding: 60px 0;
}

.newsletter-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.newsletter-content {
    flex: 1;
    min-width: 300px;
}

.newsletter-content h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.newsletter-form {
    flex: 1;
    min-width: 300px;
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
}

.newsletter-form input:focus {
    border-color: var(--primary-orange);
    outline: none;
}

.newsletter-form button {
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 0 30px;
    border-radius: 0 50px 50px 0;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
}

.newsletter-form button:hover {
    background-color: var(--primary-blue);
}

/* Footer */
.footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 80px 0 20px;
    position: relative;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-orange);
}

.footer-col p, .footer-col a {
    margin-bottom: 15px;
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-orange);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-blue);
    transform: translateY(-5px);
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Form Success Message */
.success-message {
    background-color: var(--success-green);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    display: none;
    animation: fadeIn 0.5s ease;
}

/* Error Message */
.error-message {
    background-color: #dc3545;
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    display: none; /* Make sure this is set to 'none' */
    animation: fadeIn 0.5s ease;
}