/*
Theme Name: Cyber PR
Theme URI: https://cyberpr.co.za
Author: Cindy
Description: Digital Protection & Crisis Management landing page theme with ACF integration
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cyberpr
*/

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

body {
    font-family: "Lexend", sans-serif;
    background: #000;
    color: #ffffff;
    min-height: 100vh;
    max-width: 100vw;
    overflow: hidden;
}

.container {
    height: 100vh;
    width: 100vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow-x: hidden;
}

/* Left Side - White */
.left-side {
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    position: relative;
}

/* Right Side - Navy Blue */
.right-side {
    background: #1a2847;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    position: relative;
}

/* Animated circles */
.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: #1a2847;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: #4a90e2;
    bottom: 26px;
    left: -50px;
    animation-delay: 5s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, .9);
    top: 10%;
    right: -80px;
    animation-delay: 2s;
}

a.button { 
    padding: 1rem 1.5rem; 
    border-radius: 6px; 
    width: fit-content; 
    text-decoration: none; 
    color: #fff; 
    cursor: pointer; 
    z-index: 999;  
    animation: fadeIn 1s ease-out 0.9s both; 
    font-weight: bold; 
    background: linear-gradient(135deg, #2d4a7c 0%, #4a90e2 100%); 
    position: relative; 
    border: 2px solid #4a90e2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

a.button:hover { 
    background: linear-gradient(135deg, #4a90e2 0%, #6ba8f5 100%); 
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.5);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

.logo {
    max-width: 500px;
    width: 90%;
    margin-bottom: 2.5rem;
    animation: fadeIn 1s ease-out;
}

.tagline {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 700;
    text-align: left;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-out 0.3s both;
    color: #4a90e2;
}

.why {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    text-align: left;
    line-height: 1.6;
    max-width: 550px;
    animation: fadeIn 1s ease-out 0.6s both;
    opacity: 0.95;
}

/* Improved Right Side Styling */
.leadership-box {
    background: rgba(45, 74, 124, 0.25);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    max-width: 600px;
    width: 100%;
    animation: fadeIn 1s ease-out 0.9s both;
    position: relative;
    border: 1px solid rgba(74, 144, 226, 0.3);
    backdrop-filter: blur(10px);
}

.leadership-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2.5rem;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2 0%, #6ba8f5 100%);
    border-radius: 2px;
}

.leadership-box h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 1.2rem;
    text-align: left;
    margin-top: 0.5rem;
    color: #4a90e2;
}

.leadership-box p { 
    line-height: 1.7; 
    margin-bottom: 20px;
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    opacity: 0.95;
}

.leadership-box p:last-child { 
    margin-bottom: 0; 
}

.leaders {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: left;
    opacity: 0.95;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(74, 144, 226, 0.3);
    color: #6ba8f5;
}

.expertise-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.expertise-item {
    background: rgba(74, 144, 226, 0.15);
    padding: 1rem;
    border-radius: 8px;
    font-size: clamp(0.85rem, 1.4vw, 1rem);
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(74, 144, 226, 0.25);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glowing effect for emphasis */
.glow {
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
}

/* Security badge */
.security-badge {
    display: inline-block;
    background: rgba(74, 144, 226, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    font-weight: 700;
    margin-bottom: 1rem;
    border: 1px solid rgba(74, 144, 226, 0.4);
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .left-side, .right-side {
        padding: 2rem 1.5rem;
    }

    .logo {
        max-width: 400px;
        margin-bottom: 1.5rem;
    }

    .leadership-box {
        max-width: 100%;
    }

    .expertise-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .leadership-box {
        padding: 1.8rem;
    }

    .leadership-box::before {
        left: 1.8rem;
    }

    .expertise-list {
        gap: 0.8rem;
    }
}
