/*
Theme Name: Think Tank
Theme URI: https://thinktank.co.za
Author: Cindy
Description: Thursday to Monday Agency landing page
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: thinktank
*/

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #000000;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Large animated circles in background */
.bg-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    animation: slowFloat 25s infinite ease-in-out;
}

.fc-1 {
    width: 500px;
    height: 500px;
    background: #a4d65e;
    opacity: 0.15;
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.fc-2 {
    width: 400px;
    height: 400px;
    background: #5eb3b3;
    opacity: 0.12;
    bottom: -100px;
    left: -80px;
    animation-delay: 5s;
}

.fc-3 {
    width: 350px;
    height: 350px;
    background: #d8487a;
    opacity: 0.1;
    top: 40%;
    left: 10%;
    animation-delay: 10s;
}

.fc-4 {
    width: 300px;
    height: 300px;
    background: #9b99a3;
    opacity: 0.12;
    bottom: 15%;
    right: 8%;
    animation-delay: 15s;
}

@keyframes slowFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(40px, -40px) rotate(5deg); }
    50% { transform: translate(-30px, 30px) rotate(-5deg); }
    75% { transform: translate(30px, 40px) rotate(3deg); }
}

.container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 90%;
    text-align: center;
}

.contents {
    display: flex;
    align-items: center;
}

.contents > div {
    flex: 1;
}

.logo {
    max-width: 500px;
}

.right {
    padding-left: 40px;
    text-align: left;
}

/* Logo section with circles */
.logo-section {
    margin-bottom: 60px;
    position: relative;
}

.logo-circles {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: -30px;
    margin-bottom: 20px;
}

.logo-circle {
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.lc-1 { width: 180px; height: 180px; background: #b8d5e3; z-index: 1; }
.lc-2 { width: 150px; height: 150px; background: #9b99a3; z-index: 2; margin-left: -60px; }
.lc-3 { width: 120px; height: 120px; background: #6b5063; z-index: 3; margin-left: -45px; }
.lc-4 { width: 130px; height: 130px; background: #5eb3b3; z-index: 4; margin-left: -40px; }
.lc-5 { width: 140px; height: 140px; background: #d8487a; z-index: 5; margin-left: -50px; }
.lc-6 { width: 200px; height: 200px; background: #a4d65e; z-index: 6; margin-left: -65px; }
.lc-7 { width: 100px; height: 100px; background: #1a1a1a; z-index: 7; margin-left: -55px; margin-top: 20px; }

/* Content text */
.content {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    color: #1a1a1a;
}

.content strong {
    color: #000000;
    font-weight: 700;
}

.right h1 {
    margin-bottom: 20px;
}

.right h2 {
    margin-bottom: 20px;
}

.right p {
    margin-bottom: 15px;
}

.name {
    color: #d8487a;
    font-weight: 700;
}

.highlight-green {
    color: #6fa83d;
    font-weight: 600;
}

.highlight-teal {
    color: #3d9999;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-circles {
        transform: scale(0.7);
        margin-bottom: 10px;
    }
    
    .days-badge {
        margin: 20px 0 30px 0;
    }
    
    .content {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .contents {
        flex-direction: column;
    }
    
    .right {
        padding-left: 0;
        padding-top: 20px;
    }
}

@media (max-height: 700px) {
    .logo-section {
        margin-bottom: 30px;
    }
    
    .days-badge {
        margin: 15px 0 25px 0;
        padding: 8px 30px;
    }
    
    .content {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* ACF Button */
.tt-button {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 32px;
    background-color: #a4d65e;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.tt-button:hover {
    background-color: #8fbf47;
    transform: translateY(-1px);
}

.tt-button:active {
    transform: translateY(0);
}
