@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #1a202c;
    background-color: #f8fafc;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #1a202c;
    color: #fff;
}

.btn-primary:hover {
    background: #2d3748;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid #d4af37;
    color: #f8fafc;
    background: transparent;
}

.btn-outline:hover {
    background: #1a202c;
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #d4af37;
    color: #1a202c;
}

.btn-secondary:hover {
    background: #e2c057;
    transform: translateY(-2px);
}

.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text h1 {
    font-size: 1.5rem;
    color: #1a202c;
    font-weight: 700;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav ul li a {
    text-decoration: none;
    color: #1a202c;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav ul li a:hover,
.nav ul li a.active {
    color: #d4af37;
}

.nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav ul li a:hover::after,
.nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: #1a202c;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #1a202c 0%, #4a5568 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #d4af37;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down {
    color: #fff;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-8px); }
}

.highlights {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.highlights h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 48px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.highlight-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    border-color: #d4af37;
    transform: translateY(-4px);
}

.highlight-icon {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 16px;
}

.highlight-card h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 8px;
    font-weight: 600;
}

.highlight-card p {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 16px;
}

.about-us {
    padding: 80px 20px;
    background: #f8fafc;
}

.about-us h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 48px;
    text-align: center;
}

.about-us-content {
    display: flex;
    gap: 32px;
    align-items: center;
}

.about-us-image {
    flex: 1;
}

.about-img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-us-text {
    flex: 1;
}

.about-us-text p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 24px;
}

.blog-preview {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.blog-preview h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 48px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-social-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    background: transparent;
    border: 1px solid #d4af37;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a202c;
    transition: all 0.3s ease;
}

.section-social-icon:hover {
    background: #d4af37;
    color: #fff;
    transform: translateY(-2px);
}

.events .section-header {
    background: linear-gradient(135deg, #f8fafc 0%, rgba(226, 192, 87, 0.1) 100%);
    border: 1px solid #d4af37;
    border-radius: 6px;
    padding: 16px;
    transition: border-color 0.3s ease;
}

.events .section-header:hover {
    border-color: #e2c057;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: #d4af37;
    transform: translateY(-4px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.blog-card h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin: 16px 16px 8px;
    font-weight: 600;
}

.blog-card p {
    margin: 0 16px 16px;
    color: #4a5568;
    font-size: 0.9rem;
}

.blog-card .btn-primary {
    margin: 0 16px 16px;
}

.events {
    padding: 80px 20px;
    background: #f8fafc;
    text-align: center;
}

.events h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 48px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.event-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.event-card:hover {
    border-color: #d4af37;
    transform: translateY(-4px);
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.event-card h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin: 16px 16px 8px;
    font-weight: 600;
}

.event-card p {
    margin: 0 16px 16px;
    color: #4a5568;
    font-size: 0.9rem;
}

.event-card .btn-primary {
    margin: 0 16px 16px;
}

.event-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 16px 16px;
}

.announcements {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.announcements h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 48px;
}

.announcements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.announcement-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.announcement-card:hover {
    border-color: #d4af37;
    transform: translateY(-4px);
}

.announcement-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.announcement-card h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin: 16px 0 8px;
    font-weight: 600;
}

.announcement-card p {
    margin: 0 0 16px;
    color: #4a5568;
    font-size: 0.9rem;
}

.announcement-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.announcement-actions .btn-primary {
    margin: 0;
}

.footer {
    position: relative;
    background: transparent;
    color: #fff;
    padding: 80px 20px 40px;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-logo {
    text-align: center;
}

.footer-logo-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin-bottom: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.footer-logo h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #d4af37;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.footer-links ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.footer-links ul li a:hover::after {
    width: 100%;
}

.footer-links ul li a:hover {
    color: #d4af37;
}

.footer-contact p {
    margin-bottom: 16px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: #d4af37;
    font-size: 1.1rem;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    background: transparent;
    border: 1px solid #d4af37;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer .social-icon {
    color: #fff;
}

.footer .social-icon:hover {
    background: #d4af37;
    color: #1a202c;
    transform: translateY(-2px);
}

.event-card .social-icon,
.announcement-card .social-icon {
    color: #1a202c;
}

.event-card .social-icon:hover,
.announcement-card .social-icon:hover {
    background: #d4af37;
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.signature-bar {
    background: linear-gradient(90deg, #1a202c 0%, #2d3748 50%, #1a202c 100%);
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.95;
    animation: slideInRight 0.8s ease-out forwards;
    transition: all 0.3s ease;
}

.signature-bar:hover {
    opacity: 1;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.signature-bar i {
    margin-right: 10px;
    color: #d4af37;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.signature-bar:hover i {
    transform: rotate(360deg);
}

.signature-bar a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.signature-bar a:hover {
    color: #f6e05e;
}

@keyframes slideInRight {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 0.95;
    }
}

@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .about-us-content { flex-direction: column; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .blog-grid, .events-grid, .announcements-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .events .section-header { padding: 12px; }
}

@media (max-width: 768px) {
    .nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        padding: 16px 0;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
    }

    .nav ul.active { 
        display: flex; 
    }

    .mobile-menu-btn { 
        display: block; 
    }

    .hero { min-height: 70vh; padding: 60px 20px; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-buttons { flex-direction: column; gap: 12px; }
    .footer-content { grid-template-columns: 1fr; }
    .blog-grid, .events-grid, .announcements-grid { grid-template-columns: 1fr; }
    .highlights-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
    .events .section-header { padding: 10px; }
    .footer { padding: 60px 20px 30px; }
    .footer-logo-img { width: 60px; height: 60px; }
    .footer-logo h2 { font-size: 1.5rem; }
    .signature-bar { font-size: 0.8rem; padding: 10px 0; }
    .signature-bar i { font-size: 0.9rem; margin-right: 8px; }
    .section-social-icon { width: 28px; height: 28px; font-size: 0.9rem; }
    .social-icon { width: 32px; height: 32px; font-size: 1rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .footer-logo-img { width: 48px; height: 48px; }
    .footer-logo h2 { font-size: 1.25rem; }
    .social-icon { width: 30px; height: 30px; font-size: 0.95rem; }
    .blog-preview h2, .events h2, .announcements h2 { font-size: 2rem; }
    .highlight-card { padding: 16px; }
    .events .section-header { padding: 8px; }
    .signature-bar { font-size: 0.75rem; padding: 8px 0; }
    .signature-bar i { font-size: 0.85rem; margin-right: 6px; }
    .section-social-icon { width: 26px; height: 26px; font-size: 0.85rem; }
}