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

html {
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gold Shimmer Effect */
@keyframes goldShimmer {
    0% {
        text-shadow: 0 0 3px rgba(212, 175, 55, 0.2),
                     0 0 6px rgba(212, 175, 55, 0.1);
    }
    50% {
        text-shadow: 0 0 5px rgba(212, 175, 55, 0.3),
                     0 0 10px rgba(212, 175, 55, 0.2),
                     0 0 12px rgba(212, 175, 55, 0.1);
    }
    100% {
        text-shadow: 0 0 3px rgba(212, 175, 55, 0.2),
                     0 0 6px rgba(212, 175, 55, 0.1);
    }
}

.gold-shimmer {
    animation: goldShimmer 4s ease-in-out infinite;
}

/* Top Bar with Social Media */
.top-bar {
    background: #2b1810;
    padding: 10px 0;
    border-bottom: 3px solid #d4af37;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.social-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 16px;
}

.social-btn.facebook {
    background: linear-gradient(135deg, #3b5998, #2d4373);
}

.social-btn.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Header */
header {
    background: #2b1810;
    color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 96px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.logo-text h1 {
    color: #d4af37;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 2px;
    animation: goldShimmer 3s ease-in-out infinite;
}

.subtitle {
    color: #d4af37;
    font-size: 0.5rem;
    font-weight: normal;
    letter-spacing: 1px;
    margin-bottom: 3px;
    text-transform: lowercase;
}

.tagline {
    color: #d4af37;
    font-size: 0.9rem;
    font-style: italic;
    letter-spacing: 1px;
    animation: goldShimmer 3s ease-in-out infinite;
}

/* Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #d4af37;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    animation: goldShimmer 3s ease-in-out infinite;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 80%;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('images/hero-home.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-overlay {
    width: 100%;
    padding: 60px 20px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: goldShimmer 3s ease-in-out infinite;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #d4af37, #f0e68c);
    color: #2b1810;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* Welcome Section */
.welcome-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.welcome-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2b1810;
    margin-bottom: 20px;
}

.intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #d4af37;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.feature-card i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 20px;
    animation: goldShimmer 4s ease-in-out infinite;
}

.feature-card h3 {
    color: #2b1810;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* SEO Content Section */
.seo-content {
    padding: 80px 20px;
    background: #f9f9f9;
}

.seo-content .container {
    max-width: 1000px;
    margin: 0 auto;
}

.seo-content h1 {
    color: #8b0000;
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.seo-content h2 {
    color: #8b0000;
    font-size: 2rem;
    margin: 40px 0 20px;
}

.seo-content p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.seo-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.seo-list li {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.seo-list li::before {
    content: "✓";
    color: #d4af37;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.3rem;
}

/* Mission Overview */
.mission-overview {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2b1810 0%, #3d2418 100%);
    color: white;
}

.mission-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #d4af37;
    animation: goldShimmer 3s ease-in-out infinite;
}

.mission-overview .section-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 50px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.mission-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    color: #333;
    transition: all 0.3s ease;
    border-left: 5px solid #d4af37;
    position: relative;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mission-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: bold;
    color: rgba(139, 0, 0, 0.1);
    line-height: 1;
}

.mission-icon {
    font-size: 2.5rem;
    color: #8b0000;
    margin-bottom: 20px;
    display: block;
}

.mission-card h3 {
    color: #8b0000;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.mission-card p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Programs Overview */
.programs-overview {
    padding: 80px 20px;
    background: linear-gradient(135deg, #8b0000 0%, #dc143c 100%);
    color: white;
}

.programs-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #d4af37;
    animation: goldShimmer 3s ease-in-out infinite;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.program-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    color: #333;
    transition: all 0.3s ease;
    border-left: 5px solid #d4af37;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.program-card h3 {
    color: #8b0000;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.program-card p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.learn-more {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.learn-more:hover {
    animation: goldShimmer 4s ease-in-out infinite;
}

.learn-more:hover {
    color: #8b0000;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #3d2418 0%, #2b1810 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #d4af37;
    animation: goldShimmer 3s ease-in-out infinite;
}

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

/* Footer */
footer {
    background: #2b1810;
    color: #ffffff;
    padding: 50px 20px 20px;
    border-top: 3px solid #d4af37;
}

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

.footer-section h3 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 1.3rem;
    animation: goldShimmer 3s ease-in-out infinite;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4af37;
    animation: goldShimmer 4s ease-in-out infinite;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
}

/* Tablet/Landscape - Medium screens */
@media (max-width: 1024px) and (min-width: 769px) {
    .seo-content h1 {
        font-size: 2.2rem;
    }
    
    .seo-content h2 {
        font-size: 1.75rem;
    }
    
    .seo-content p {
        font-size: 1.05rem;
    }
    
    .seo-list li {
        font-size: 1rem;
    }
    
    .mission-overview h2 {
        font-size: 2.2rem;
    }
    
    .mission-overview .section-intro {
        font-size: 1.05rem;
    }
    
    .mission-card h3 {
        font-size: 1.3rem;
    }
    
    .mission-card p {
        font-size: 0.95rem;
    }
    
    .mission-number {
        font-size: 2.5rem;
    }
    
    .mission-icon {
        font-size: 2.2rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
        font-size: 14px;
    }
    
    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 70vw;
        height: 100vh;
        background: #2b1810;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        margin-top: 0;
    }
    
    nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    nav ul li a {
        display: block;
        padding: 15px 12px;
        border-radius: 0;
        font-size: 0.95rem;
    }
    
    nav ul li a::after {
        display: none;
    }
    
    .hero h2 {
        font-size: 1.75rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .logo-text h1 {
        font-size: 1.3rem;
    }
    
    .tagline {
        font-size: 0.75rem;
    }
    
    .logo-section {
        flex: 1;
    }
    
    .container {
        overflow-x: hidden;
    }
    
    .seo-content h1 {
        font-size: 1.8rem;
    }
    
    .seo-content h2 {
        font-size: 1.5rem;
    }
    
    .seo-content p {
        font-size: 0.95rem;
    }
    
    .seo-list li {
        font-size: 0.9rem;
    }
    
    .welcome-section h2,
    .mission-overview h2,
    .programs-overview h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .mission-overview .section-intro {
        font-size: 0.95rem;
    }
    
    .mission-card h3 {
        font-size: 1.2rem;
    }
    
    .mission-card p {
        font-size: 0.9rem;
    }
    
    .mission-number {
        font-size: 2rem;
    }
    
    .mission-icon {
        font-size: 2rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .feature-card h3,
    .program-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p,
    .program-card p {
        font-size: 0.9rem;
    }
    
    .feature-card i {
        font-size: 2.5rem;
    }
    
    .cta-button {
        font-size: 0.95rem;
        padding: 12px 30px;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section p,
    .footer-section ul li a {
        font-size: 0.9rem;
    }
}
