/*
Theme Name: Keri-Ann Stanton
Theme URI: https://keriannstanton.com
Author: Cindy
Description: Personal portfolio landing page theme with ACF integration for PR Strategist & Creative
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: keriannstanton
*/

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

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

.container {
    min-height: 100vh;
    width: 100vw;
    display: grid;
    grid-template-columns: .4fr .6fr;
    position: relative;
}

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

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

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

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

.circle-2 {
    width: 500px;
    height: 500px;
    background: #fff;
    bottom: 126px;
    right: -50px;
    animation-delay: 5s;
}

.circle-3 {
    width: 350px;
    height: 350px;
    background: rgba(181, 211, 51, 1);
    top: 30%;
    right: -80px;
    animation-delay: 2s;
}

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

.name-logo {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out;
    line-height: 1.1;
    color: #FFF;
}

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

.intro {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    text-align: left;
    line-height: 1.6;
    max-width: 600px;
    animation: fadeIn 1s ease-out 0.6s both;
    margin-bottom: 3rem;
}

/* Agency Grid */
.agencies-section {
    animation: fadeIn 1s ease-out 0.9s both;
}

.agencies-title {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: #FFF;
}

.agencies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.agencies-grid img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.agency-card {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 2rem 1rem;
    text-decoration: none;
    color: #000;
    display: flex;
    justify-content: center;
    text-align: left;
    font-weight: 400;
    font-size: clamp(0.9rem, 1.5vw, 0.9rem);
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 120px;
    flex-direction: column;
}

.agency-card:hover {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

/* Bio Box */
.bio-box {
    background: rgba(0, 0, 0, 0.25);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    max-width: 650px;
    width: 100%;
    animation: fadeIn 1s ease-out 0.9s both;
    position: relative;
}

.bio-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2.5rem;
    width: 60px;
    height: 4px;
    background: #fff;
    border-radius: 2px;
}

.bio-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;
}

.bio-box p {
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    opacity: 0.95;
    font-weight: 300;
    color: #FFF;
}

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

/* Achievements Box */
.achievements-box {
    background: rgba(0, 0, 0, 0.25);
    padding: 2rem 2.5rem;
    border-radius: 16px;
    max-width: 650px;
    width: 100%;
    animation: fadeIn 1s ease-out 1.2s both;
    margin-bottom: 2rem;
}

.achievements-title {
    font-size: clamp(1.1rem, 1.9vw, 1.4rem);
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.achievements-box ul {
    list-style: none;
    padding: 0;
}

.achievements-box li {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    line-height: 1.7;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.95;
}

.achievements-box li:before {
    content: '→';
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Contact Button */
a.button {
    padding: 1rem 2rem;
    border-radius: 6px;
    width: fit-content;
    text-decoration: none;
    color: #FFF;
    cursor: pointer;
    z-index: 999;
    animation: fadeIn 1s ease-out 1.5s both;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.25);
    position: relative;
    border: 2px solid #FFF;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    transition: all 0.3s ease;
}

a.button:hover {
    background: rgba(102, 126, 234, 0.8);
    color: #FFF;
    transform: translateY(-2px);
}

ul.socials {
    list-style: none;
    display: flex;
    justify-content: center;
	line-height: 36px;
	position:relative; z-index:99999;
}

ul.socials li {
    margin: 0 5px;
}

ul.socials a {
    color: #FFF;
}

ul.socials a svg {
    width: 40px;
}

ul.socials a:hover {
    opacity: 0.7;
}

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

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

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

    .bio-box, .achievements-box {
        max-width: 100%;
    }

    .agencies-grid {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
	body { overflow-x: hidden; }
    .agencies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .agency-card {
        min-height: 100px;
        padding: 1.5rem 0.8rem;
    }

    .bio-box, .achievements-box {
        padding: 1.8rem;
    }

    .bio-box::before {
        left: 1.8rem;
    }
	.left-side { overflow:hidden; }
	.right-side { padding-bottom: 5rem; overflow:hidden; }
}

@media (max-width: 480px) {
    .agencies-grid {
        grid-template-columns: 1fr;
    }
}
