/* Base Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    color: #333;
    padding-top: 135px; /* Default for desktop */
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    border-bottom: 2px solid #FF5B00;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    color: #FF5B00;
    text-decoration: none;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FF5B00;
}

/* Language Flags */
.lang-flags {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 8px 0;
    background: #fff5eb;
    border-top: 1px solid #fee0c8;
    font-size: 26px;
}

.lang-flags img {
    vertical-align: middle;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Social Share Bar */
#share-bar {
    position: fixed;
    top: 135px;
    right: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: -2px 2px 10px rgba(0,0,0,0.15);
}

/* Content Area */
.page-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
}

.hero {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 42px;
    color: #333;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 220px; /* More space for stacked header components */
    }
    
    .navbar {
        flex-direction: column;
        padding: 10px;
    }
    
    .logo {
        margin-bottom: 10px;
    }
    
    .logo a {
        font-size: 22px;
    }
    
    .nav-links {
        justify-content: center;
        gap: 10px;
        width: 100%;
    }
    
    .nav-links li {
        margin: 0;
    }
    
    .nav-links a {
        font-size: 13px;
        padding: 5px;
    }
    
    .lang-flags {
        gap: 12px;
        font-size: 20px;
        overflow-x: auto; /* Allow horizontal scroll if needed for many flags */
        white-space: nowrap;
        padding: 5px 10px;
    }
    
    .lang-flags img {
        width: 25px;
    }
    
    #share-bar {
        position: static; /* Move it from fixed to static or hide it on very small screens if desired */
        flex-direction: row;
        justify-content: center;
        margin: 20px 0;
        box-shadow: none;
        top: auto;
    }
    
    #share-bar a {
        border-radius: 4px !important;
        margin: 0 5px;
    }

    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
}

/* Activity Sections, Grid, etc. */
/* Activity Sections, Grid, etc. */
.activity-section {
    padding: 40px 20px;
}

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

/* Components: Buttons */
.btn {
    display: inline-block;
    padding: 10px 22px;
    background-color: #FF5B00;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(255, 91, 0, 0.2);
}

.btn:hover {
    background-color: #e65200;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 91, 0, 0.3);
}

/* --- Refined Anti-Google-Translate UI --- */
/* Hide the top banner frame and related tooltips */
.goog-te-banner-frame.skiptranslate, 
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-te-menu-frame,
iframe.goog-te-banner-frame,
.goog-tooltip,
.goog-tooltip:hover {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    pointer-events: none !important;
}

/* Prevent Google from shifting the body down, but maintain header space */
body {
    top: 0 !important;
}
html {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Hide the bottom selection widget and branding */
#google_translate_element, 
.goog-logo-link, 
.goog-te-gadget span, 
.goog-te-gadget div,
#google_translate_element select {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0 !important;
}

/* Fix for the white gap at the top */
.goog-te-banner {
    display: none !important;
}

/* Footer Styling Cleanup */
footer {
    text-align: center;
    padding: 30px 20px;
    background: #f1f1f1;
    border-top: 1px solid #ddd;
    margin-top: 60px;
    color: #666;
}
