/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    background-color: #F8F9FA;
    overflow-x: hidden;
}

/* Right Header Dock Styles */
.header-dock {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 240px;
    background: linear-gradient(180deg, #2C3E50, #34495E);
    z-index: 1000;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.header-dock:hover {
    background: linear-gradient(180deg, #34495E, #2C3E50);
    box-shadow: -6px 0 25px rgba(0, 0, 0, 0.2);
    transform: translateX(-5px);
}

.header-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
    justify-content: center;
}

.logo i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.logo-text h1,
.logo-text h2,
.logo-text h3 {
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    width: 100%;
}

.nav-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    text-align: left;
    min-height: 50px;
    justify-content: flex-start;
    width: 100%;
}

.nav-link i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.nav-link span {
    font-size: 0.7rem;
    letter-spacing: 1px;
    line-height: 1.2;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-3px);
}

.nav-link:hover i,
.nav-link.active i {
    color: #F5A623;
}

/* Main Content */
.main-content {
    margin-right: 240px;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #2C3E50 0%, #F5A623 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('background.png') center/cover;
    opacity: 0.8;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    color: #2C3E50;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: inline-block;
    max-width: 600px;
    color: #2C3E50;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #F5A623;
}

.stat span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Cards Section */
.cards-section {
    padding: 4rem 2rem;
    background: #F8F9FA;
    min-height: 100vh;
    position: relative;
}

.cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 80px;
    gap: 2rem;
    position: relative;
}

/* Main Content Area */
.main-content-area {
    position: relative;
}

/* Timeline Connection */
.main-content-area::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -1rem;
    width: 2px;
    background: linear-gradient(to bottom, #2C3E50, #F5A623);
    z-index: 1;
}

/* Cards Grid */
.cards-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Right Dock Panel */
.right-dock-panel {
    position: relative;
    background: linear-gradient(180deg, #2C3E50, #34495E);
    border-radius: 12px 0 0 12px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
    min-height: 600px;
}

.right-dock-panel:hover {
    background: linear-gradient(180deg, #34495E, #2C3E50);
    box-shadow: -6px 0 25px rgba(0, 0, 0, 0.2);
    transform: translateX(-5px);
}

/* Dock Icon */
.dock-icon {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Dock Divider */
.dock-divider {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 1rem 0;
}

/* Dock Title */
.dock-title {
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 2px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 1rem 0;
    height: 200px;
    display: flex;
    align-items: center;
}

/* Dock Subtitle */
.dock-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.6rem;
    text-align: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 1px;
    line-height: 1.2;
    margin: 1rem 0;
    height: 120px;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 0.5rem 1rem;
}

/* Dock Stats */
.dock-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

.dock-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    color: #F5A623;
    font-size: 0.9rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.5rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 1px;
}

/* Card Styles */
.card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid #E9ECEF;
    position: relative;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.card-title {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-title h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2C3E50;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2C3E50;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #2C3E50;
}

.card-content {
    padding: 1.5rem;
}

/* About Card */
.about-card .card-icon {
    background: linear-gradient(135deg, #2C3E50, #34495E);
}

.about-card .card-content p {
    margin-bottom: 1.5rem;
    color: #6C757D;
    line-height: 1.7;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #F8F9FA;
    border-radius: 8px;
}

.detail-item i {
    color: #2C3E50;
    width: 20px;
}

/* Programs Card */
.programs-card .card-icon {
    background: linear-gradient(135deg, #F5A623, #FFB84D);
}

.program-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E9ECEF;
}

.program-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.program-item h4 {
    color: #2C3E50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.program-item p {
    color: #6C757D;
    font-size: 0.9rem;
}

/* Events Card */
.events-card .card-icon {
    background: linear-gradient(135deg, #28A745, #34CE57);
}

.event-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E9ECEF;
}

.event-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28A745, #34CE57);
    border-radius: 8px;
    color: white;
    text-align: center;
}

.event-date .day {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
}

.event-details {
    flex: 1;
}

.event-details h4 {
    color: #2C3E50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-details p {
    color: #6C757D;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.event-time {
    color: #28A745;
    font-size: 0.85rem;
    font-weight: 500;
}

.event-time i {
    margin-right: 0.25rem;
}

/* Subscribe Card */
.subscribe-card .card-icon {
    background: linear-gradient(135deg, #6F42C1, #8A63D2);
}

.subscribe-card .card-content p {
    margin-bottom: 1.5rem;
    color: #6C757D;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #E9ECEF;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus {
    outline: none;
    border-color: #2C3E50;
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.subscribe-btn {
    background: linear-gradient(135deg, #2C3E50, #34495E);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

/* Floating Contact Window */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 300px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.floating-contact:hover {
    transform: translateY(0);
    opacity: 1;
}

.contact-header {
    background: linear-gradient(135deg, #2C3E50, #34495E);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-header h4 {
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.contact-content {
    padding: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E9ECEF;
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-item i {
    color: #2C3E50;
    width: 20px;
    margin-top: 0.25rem;
}

.contact-item strong {
    color: #2C3E50;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #6C757D;
    font-size: 0.85rem;
    margin: 0;
}

/* Footer */
.footer {
    background: #2C3E50;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #F5A623;
    font-weight: 600;
}

.footer-section p {
    color: #BDC3C7;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #BDC3C7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #F5A623;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(245, 166, 35, 0.2);
    border-radius: 8px;
    color: #F5A623;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #F5A623;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495E;
    text-align: center;
    color: #BDC3C7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-dock {
        display: none;
    }
    
    .main-content {
        margin-right: 0;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .main-content-area::before {
        display: none;
    }
    
    .right-dock-panel {
        display: none;
    }
    
    .cards-grid {
        margin-right: 0;
    }
    
    .floating-contact {
        width: calc(100% - 2rem);
        right: 1rem;
        bottom: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .event-item {
        flex-direction: column;
        text-align: center;
    }
    
    .event-date {
        align-self: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for cards on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 0.6s ease forwards;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; } 