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

:root {
    --primary-color: #112641;
    --accent-gold: #ba832c;
    --nature-green: #74a865;
    --pure-white: #ffffff;
}

body {
    font-family: 'Prompt', sans-serif;
    color: #333;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

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

.animate-fade-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

/* Navbar */
.navbar {
    background-color: var(--primary-color) !important;
    border-bottom: 3px solid var(--accent-gold);
    padding: 1rem 2rem;
    z-index: 1000;
}
.nav-link {
    color: var(--pure-white) !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0 10px;
}
.nav-link:hover {
    color: var(--accent-gold) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    color: var(--pure-white);
    padding: 80px 0;
    text-align: center;
    background-color: var(--primary-color);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(17, 38, 65, 0.85), rgba(17, 38, 65, 0.85)), 
                url("{{ asset('assets/images/world.jpeg') }}");
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: slowZoom 20s linear infinite alternate;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-theme {
    color: var(--accent-gold);
    font-style: italic;
    font-size: 1.25rem;
    max-width: 800px;
    margin: 20px auto;
}

/* Sections */
.section-title {
    color: var(--primary-color);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-gold);
}

.bg-light-gray { background-color: #f8f9fa; }

/* Session Cards */
.session-card {
    border: none;
    border-bottom: 5px solid var(--nature-green);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.session-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.session-icon {
    color: var(--nature-green);
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Login Card */
.login-card {
    border: none;
    border-top: 5px solid var(--accent-gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 10px;
}
.login-header {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 5px 5px 0 0;
}

/* Publication Channels */
.channel-card {
    background: var(--pure-white);
    border-left: 4px solid var(--accent-gold);
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.channel-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.price-tag {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1rem;
}

/* Timeline */
.timeline-item {
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    position: relative;
    padding-bottom: 20px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: 17px;
    height: 17px;
    background: var(--accent-gold);
    border-radius: 50%;
}
.timeline-date {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

/* Venue & Contact */
.contact-info-list {
    list-style: none;
    padding: 0;
}
.contact-info-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}
.contact-info-list i {
    color: var(--accent-gold);
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 5px;
}
.map-container {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
}

/* Buttons */
.btn-custom {
    background-color: var(--accent-gold);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    transition: 0.3s;
}
.btn-custom:hover {
    background-color: #a37225;
    color: white;
    box-shadow: 0 5px 15px rgba(186, 131, 44, 0.4);
}
.btn-login {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    transition: 0.3s;
}
.btn-login:hover {
    background-color: #1a3a63;
    color: white;
}
.btn-download {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 4px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
}
.btn-download:hover {
    background-color: var(--nature-green);
    color: white;
    text-decoration: none;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--pure-white);
    padding: 50px 0 20px;
}

.format-badge {
    display: inline-block;
    background: var(--nature-green);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    animation: pulse 3s infinite ease-in-out;
}

.btn-hero-register {
    padding: 15px 45px;
    font-size: 1.2rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}