/* 2013-Style Design for Wemba Wemba Website */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
    background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles - 2013 Design */
.main-header {
    background: linear-gradient(to bottom, #2c3e50 0%, #34495e 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    position: relative;
    border-bottom: 3px solid #e74c3c;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

.logo .tagline {
    color: #ecf0f1;
    font-size: 14px;
    font-style: italic;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav li {
    margin-left: 5px;
}

.main-nav li:first-child {
    margin-left: 0;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: block;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.main-nav a:hover,
.main-nav a.active {
    background: linear-gradient(to bottom, #e74c3c 0%, #c0392b 100%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Hero Section - 2013 Style */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    color: #fff;
    box-shadow: inset 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.hero .container {
    display: table;
    width: 100%;
}

.hero-content,
.hero-image {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    padding: 20px;
}

.hero-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-text {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.95;
}

.hero-buttons {
    display: block;
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 10px;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(to bottom, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(to bottom, #c0392b 0%, #a93226 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.btn-secondary {
    background: linear-gradient(to bottom, #3498db 0%, #2980b9 100%);
    color: #fff;
    box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(to bottom, #2980b9 0%, #21618c 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Features Section */
.features {
    padding: 60px 0;
    background: #fff;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 0 -15px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    text-align: center;
    box-sizing: border-box;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 24px;
}

.feature-card h3 a {
    color: #2c3e50;
    text-decoration: none;
}

.feature-card h3 a:hover {
    color: #e74c3c;
}

.feature-card p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.read-more {
    color: #e74c3c;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    color: #c0392b;
}

/* Call to Action */
.call-to-action {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.call-to-action h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.call-to-action p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Quick Facts Section */
.quick-facts {
    padding: 60px 0;
    background: linear-gradient(to bottom, #ecf0f1 0%, #bdc3c7 100%);
}

.quick-facts h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.fact-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #e74c3c;
    box-sizing: border-box;
}

.fact-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
}

.fact-item p {
    color: #555;
    line-height: 1.8;
}

/* Cultural Highlight */
.cultural-highlight {
    padding: 60px 0;
    background: linear-gradient(to right, #ffffff 0%, #f9f9f9 100%);
    border-bottom: 2px solid #e0e0e0;
}

.highlight-content {
    display: table;
    width: 100%;
}

.highlight-text {
    display: table-cell;
    vertical-align: middle;
    padding-right: 40px;
    width: 60%;
}

.highlight-text h2 {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 20px;
}

.highlight-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.citation {
    font-style: italic;
    color: #777;
    font-size: 14px;
}

.highlight-image {
    display: table-cell;
    vertical-align: middle;
    width: 40%;
}

.highlight-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Content Page Styles */
.content-page {
    padding: 60px 0;
    background: #fff;
}

.content-page h1 {
    color: #2c3e50;
    font-size: 42px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.content-page h2 {
    color: #2c3e50;
    font-size: 32px;
    margin: 40px 0 20px 0;
    border-bottom: 3px solid #e74c3c;
    padding-bottom: 10px;
}

.content-page h3 {
    color: #34495e;
    font-size: 24px;
    margin: 30px 0 15px 0;
}

.content-page p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.content-page ul,
.content-page ol {
    margin: 20px 0 20px 40px;
    line-height: 1.8;
    color: #555;
}

.content-page li {
    margin-bottom: 10px;
}

.content-page a {
    color: #e74c3c;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.content-page a:hover {
    color: #c0392b;
    border-bottom-color: #c0392b;
}

.content-image {
    margin: 30px 0;
    text-align: center;
}

.content-image img {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.content-image figcaption {
    margin-top: 10px;
    font-style: italic;
    color: #777;
}

.content-image-right {
    float: right;
    max-width: 400px;
    margin: 0 0 20px 20px;
}

.content-image-right img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.content-image-right figcaption {
    margin-top: 10px;
    font-style: italic;
    color: #777;
    font-size: 14px;
}

.inline-img {
    max-width: 100px;
    vertical-align: middle;
    margin: 0 10px;
    border-radius: 5px;
}

/* Info Boxes */
.info-box {
    background: #ecf0f1;
    border-left: 4px solid #3498db;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.info-box.warning {
    background: #fff3cd;
    border-left-color: #ff9800;
}

.info-box.success {
    background: #d4edda;
    border-left-color: #28a745;
}

.info-box h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.info-box p {
    margin-bottom: 10px;
}

.info-box ul {
    margin-left: 20px;
    line-height: 1.8;
}

/* Email Display Section */
.email-display {
    text-align: center;
    margin: 40px 0;
    padding: 40px 20px;
    background: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
    border-radius: 10px;
    border: 2px solid #e0e0e0;
}

.email-box {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    color: #000000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    /* 16:3 aspect ratio - height should be 3/16 of width */
    /* For 300px width: 300 * (3/16) = 56.25px height */
    /* Padding-bottom percentage is relative to width */
    position: relative;
    padding: 0;
    height: 56px;
    /* Fixed height for 300px width to get 16:3 ratio */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-box::before {
    content: 'contact@wembawemba.com';
}

.email-note {
    font-style: italic;
    color: #777;
    margin-top: 20px;
    font-size: 14px;
}

/* Contact Form Styles (if needed elsewhere) */
.contact-form {
    max-width: 600px;
    margin: 30px 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

/* Footer - 2013 Style */
.main-footer {
    background: linear-gradient(to bottom, #2c3e50 0%, #1a252f 100%);
    color: #ecf0f1;
    padding: 40px 0 20px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.footer-content {
    display: block;
    overflow: hidden;
    margin: 0 -15px;
    margin-bottom: 30px;
}

.footer-section {
    float: left;
    width: 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e74c3c;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #bdc3c7;
    margin-bottom: 10px;
}

.acknowledgement {
    font-style: italic;
    color: #95a5a6;
}

/* Responsive Design - Tablet */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .hero-text {
        font-size: 16px;
    }

    .features h2,
    .quick-facts h2,
    .content-page h1 {
        font-size: 32px;
    }

    .feature-card {
        width: 50%;
    }

    .content-image-right {
        max-width: 300px;
    }

    .footer-section {
        width: 50%;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {

    /* Header Navigation */
    .main-header .container {
        display: block;
        flex-direction: column;
    }

    .logo {
        text-align: center;
        margin-bottom: 15px;
    }

    .logo h1 {
        font-size: 28px;
    }

    .menu-toggle {
        display: block;
        margin: 0 auto;
        width: 200px;
        text-align: center;
    }

    .main-nav {
        margin-top: 15px;
    }

    .main-nav ul {
        display: none;
        flex-direction: column;
    }

    .main-nav.active ul {
        display: block;
    }

    .main-nav li {
        margin: 5px 0;
        margin-left: 0;
    }

    .main-nav a {
        display: block;
        text-align: center;
    }

    /* Hero Section */
    .hero {
        padding: 40px 0;
    }

    .hero .container {
        display: block;
    }

    .hero-content,
    .hero-image {
        display: block;
        width: 100%;
        padding: 0;
    }

    .hero-content {
        margin-bottom: 30px;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-buttons {
        text-align: center;
    }

    .hero-buttons .btn {
        display: block;
        margin: 0 auto 15px auto;
        max-width: 300px;
    }

    /* Features */
    .features,
    .quick-facts,
    .content-page {
        padding: 40px 0;
    }

    .features h2,
    .quick-facts h2 {
        font-size: 28px;
    }

    .feature-grid,
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Cultural Highlight */
    .highlight-content {
        display: block;
    }

    .highlight-text,
    .highlight-image {
        display: block;
        width: 100%;
        padding: 0;
    }

    .highlight-text {
        margin-bottom: 30px;
        padding-right: 0;
    }

    .highlight-text h2 {
        font-size: 28px;
    }

    /* Content Page */
    .content-page h1 {
        font-size: 32px;
    }

    .content-page h2 {
        font-size: 26px;
    }

    .content-page h3 {
        font-size: 20px;
    }

    .content-image-right {
        float: none;
        max-width: 100%;
        margin: 20px 0;
    }

    /* Footer */
    .footer-section {
        float: none;
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 24px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .features h2,
    .quick-facts h2 {
        font-size: 24px;
    }

    .content-page h1 {
        font-size: 28px;
    }

    .content-page h2 {
        font-size: 22px;
    }

    .feature-card,
    .fact-item {
        padding: 20px;
    }

    .email-display {
        padding: 20px 10px;
    }
}

/* Print Styles */
@media print {

    .main-header,
    .main-footer,
    .hero-buttons,
    .btn,
    .menu-toggle {
        display: none;
    }

    body {
        background: #fff;
    }
}