:root {
    --bg-color: #e4e1db;
    --card-bg: #efece5;
    --text-dark: #1a1a1a;
    --text-gray: #555555;
    --cyan: #00e5ff;
    --magenta: #ff007f;
    --yellow: #ffea00;
    --font-main: 'Montserrat', sans-serif;
}

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

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    background-color: var(--bg-color);
    font-family: var(--font-main);
    color: var(--text-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    padding: 20px;
}

/* Background elements */
.background-decor {
    position: absolute;
    width: 800px;
    height: 800px;
    background: #fdfbf7;
    border-radius: 50%;
    top: -200px;
    left: -300px;
    z-index: 0;
    /* subtle shadow or blend for the geometry outside the card */
    box-shadow: inset 0 0 100px rgba(0,0,0,0.02);
}

/* Main Card */
.card {
    background-color: var(--card-bg);
    width: 900px;
    max-width: 95%;
    height: 550px;
    border-radius: 30px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05),
               -20px -20px 60px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Wavy Lines SVG Background */
.wavy-lines {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 150%;
    height: 200%;
    background-image: repeating-radial-gradient(
        circle at 20% 50%, 
        transparent 0, 
        transparent 14px, 
        rgba(0,0,0,0.04) 15px, 
        rgba(0,0,0,0.04) 16px
    );
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

/* Content Layout */
.content {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.left-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 50px;
}

/* Statue and Color Bar */
.statue-container {
    position: relative;
    width: 250px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -40px;
}

.statue {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* To make it blend slightly with the background if it's a solid block */
    mix-blend-mode: darken;
    filter: drop-shadow(0px 10px 15px rgba(0,0,0,0.1));
    z-index: 1;
    /* Adjusting specifically for goju_no_bg.png */
    border-radius: 20px;
}

.color-bar {
    position: absolute;
    top: 60%;
    left: -20px;
    width: calc(100% + 40px);
    height: 20px;
    background: linear-gradient(to right, #1a1a1a 25%, var(--cyan) 25%, var(--cyan) 50%, var(--magenta) 50%, var(--magenta) 75%, var(--yellow) 75%);
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Text Group */
.text-group {
    text-align: right;
    z-index: 3;
    margin-top: 10px;
}

.badge {
    background-color: var(--text-dark);
    color: #fff;
    display: inline-block;
    padding: 6px 16px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: lowercase;
    letter-spacing: 1px;
}

.headline {
    font-size: 1.8rem;
    font-weight: 800;
    margin-top: 5px;
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -1px;
}

.highlight-do {
    position: relative;
    display: inline-block;
    z-index: 1;
    padding: 0 5px;
}

.highlight-do::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 12px;
    background-color: var(--magenta);
    z-index: -1;
}

/* Right Section Elements */
.logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.logo-circle {
    width: 120px;
    height: 120px;
    background-color: #5d5d5d;
    border-radius: 50%;
    position: relative;
    margin: 0 auto 15px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-text {
    font-size: 0.8rem;
    color: var(--text-gray);
    letter-spacing: 2px;
}

/* Contact Info */
.contact-info {
    font-family: var(--font-main);
}

.contact-info p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-info a {
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 3px;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--magenta);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
    align-items: center;
}

.social-links .social-link {
    display: inline-block;
    margin-bottom: 0;
}

.social-links .social-link:not(:last-child)::after {
    content: '|';
    margin-left: 8px;
    color: var(--text-gray);
    font-weight: 400;
    pointer-events: none;
}

/* Subscribe Form */
.subscribe-form {
    display: flex;
    margin-top: 15px;
    width: 100%;
    max-width: 350px;
}

.subscribe-input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid var(--text-dark);
    border-right: none;
    background-color: transparent;
    color: var(--text-dark);
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    outline: none;
    transition: border-color 0.3s ease;
}

.subscribe-input::placeholder {
    color: #999;
    font-weight: 400;
}

.subscribe-input:focus {
    border-color: var(--magenta);
}

.subscribe-btn {
    padding: 10px 20px;
    background-color: var(--text-dark);
    color: #fff;
    border: 2px solid var(--text-dark);
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    text-transform: lowercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background-color: var(--magenta);
    border-color: var(--magenta);
}

/* Particles */
.particle {
    position: absolute;
    background-color: #ffffff;
    border-radius: 50%;
    filter: blur(4px);
    z-index: 4;
}

.p1 {
    width: 40px;
    height: 40px;
    top: 25%;
    left: 28%;
    opacity: 0.6;
}

.p2 {
    width: 30px;
    height: 30px;
    bottom: 25%;
    left: 55%;
    opacity: 0.5;
}

.p3 {
    width: 15px;
    height: 15px;
    top: 45%;
    right: 35%;
    opacity: 0.7;
    filter: blur(2px);
}

@media (max-width: 768px) {
    body {
        align-items: flex-start;
    }
    
    .content {
        flex-direction: column;
    }
    
    .left-section, .right-section {
        flex: none;
        width: 100%;
        padding: 20px;
    }
    
    .left-section .text-group {
        text-align: center;
    }
    
    .right-section {
        align-items: center;
        text-align: center;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    .subscribe-form {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .subscribe-input {
        border-right: 2px solid var(--text-dark);
        width: 100%;
    }

    .subscribe-btn {
        width: 100%;
    }
    
    .card {
        height: auto;
        padding: 40px 0;
        margin: 0 auto;
        width: 100%;
    }
}
