/* 
==============================================
THE SHIFT WITH NTOMBI
Stylesheet - Black & White Theme
==============================================
*/

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

:root {
    --black: #000000;
    --dark-gray: #333333;
    --gray: #666666;
    --light-gray: #CCCCCC;
    --lighter-gray: #E5E5E5;
    --lightest-gray: #F5F5F5;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

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

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-gray);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--black);
}

.btn-nav {
    background: var(--black);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 25px;
}

.btn-nav:hover {
    background: var(--dark-gray);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--black);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-tagline {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo img {
    max-width: 200px;
    height: auto;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

/* What We Do Section */
.section-whatwedo {
    padding: 100px 0;
    background: var(--white);
}

.wedo-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.wedo-content p {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.8;
}

/* Impact Section */
.section-impact {
    padding: 100px 0;
    background: var(--lightest-gray);
}

.impact-lead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.8;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.impact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.impact-card h3 {
    color: var(--black);
    margin-bottom: 15px;
}

.impact-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Founder Section */
.section-founder {
    padding: 100px 0;
    background: var(--white);
}

.founder-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.founder-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.founder-name .highlight {
    font-style: italic;
}

.founder-title {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    font-weight: 500;
}

.founder-bg {
    background: var(--lightest-gray);
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.founder-bg-label {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.founder-bg p {
    color: var(--dark-gray);
    font-size: 1.05rem;
    margin: 0;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-lead {
    font-size: 1.2rem;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.motto {
    background: var(--lightest-gray);
    padding: 20px 25px;
    border-left: 4px solid var(--black);
    border-radius: 10px;
    margin-top: 20px;
}

.motto p {
    font-style: italic;
    color: var(--black);
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--lightest-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--black);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
}

/* Events Section */
.events {
    padding: 100px 0;
    background: var(--white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.event-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.event-image {
    height: 180px;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
}

.event-content {
    padding: 30px;
}

.event-tag {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.event-content h3 {
    color: var(--black);
    margin-bottom: 15px;
}

.event-content p {
    color: var(--gray);
    margin-bottom: 15px;
}

.event-highlight {
    background: var(--lightest-gray);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--dark-gray);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--lightest-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    background: var(--dark-gray);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    text-align: center;
    padding: 30px 20px 18px;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--white);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 800px;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

.lightbox-caption {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 15px;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: var(--white);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 2001;
    line-height: 1;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: none;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 2001;
    border-radius: 50%;
    transition: background 0.3s;
    line-height: 1;
}

.lightbox-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item strong {
    display: block;
    color: var(--black);
    margin-bottom: 3px;
}

.contact-item p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

.contact-form-wrapper {
    background: var(--lightest-gray);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    color: var(--black);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--dark-gray);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--white);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--black);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--dark-gray);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--light-gray);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* POPIA Compliance */
.popia-compliance {
    border-top: 1px solid var(--dark-gray);
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
}

.popia-notice {
    color: var(--light-gray);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.popia-notice strong {
    color: var(--white);
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.legal-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    padding: 5px 10px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.legal-links a:hover {
    color: var(--white);
    border-color: var(--white);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.5rem; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .events-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .impact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-links { 
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow);
    }
    .nav-links.active { display: flex; }
    .nav-links li { width: 100%; text-align: center; }
    .btn-nav { display: inline-block; width: auto; }
    .hero h1 { font-size: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .section-title { font-size: 2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .gallery-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
}