:root {
    --primary: #153c29;      /* Dark Green from logo */
    --primary-light: #2c5a41;
    --secondary: #b45832;    /* Dark Orange/Brown */
    --bg-main: #f3ebd9;      /* Cream background */
    --bg-card: #fbf8f1;
    --text-main: #153c29;
    --text-muted: #4a6356;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /*overflow: hidden;*/
    position: relative;
    perspective: 1000px;
    background-image: radial-gradient(#e0d4be 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Background Animated Blobs - Changed to subtle shapes */
.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.blob {
    position: absolute;
    filter: blur(60px);
    border-radius: 50%;
    opacity: 0.6;
    animation: move 20s infinite alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: #e6dac1;
    animation-delay: 0s;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: #ebdcc2;
    animation-delay: -5s;
}

.blob-3 {
    display: none;
}

@keyframes move {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, 50px) scale(1.1); }
    100% { transform: translate(-50px, -100px) scale(0.9); }
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    z-index: 1;
}

/* Card Panel */
.glass-panel {
    background: var(--bg-card);
    border: 3px solid var(--primary);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 12px 12px 0px var(--primary);
    animation: fadeUp 1s ease-out forwards;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.text-section {
    flex: 1;
}

.image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 1000px;
}

/* Typography & Badges */
.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title {
    font-family: 'Fraunces', serif;
    font-size: 6rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.subtitle {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.highlight {
    color: var(--secondary);
}

.description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    height: 12px;
    background: #e6dac1;
    border: 2px solid var(--primary);
    border-radius: 6px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--secondary);
    border-right: 2px solid var(--primary);
    animation: loadProgress 2s ease-out forwards;
    animation-delay: 0.5s;
}

.coming-soon-text {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Image styling */
.image-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1/1;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-image {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(5px 5px 0px rgba(21, 60, 41, 0.15));
    transition: transform 0.1s ease;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(243, 235, 217, 0.8) 0%, rgba(243, 235, 217, 0) 70%);
    z-index: 1;
}

/* Footer */
footer {
    margin-top: auto;
    text-align: center;
    padding-top: 2rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    animation: fadeIn 1.5s ease-out forwards;
    animation-delay: 1s;
    opacity: 0;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

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

@keyframes loadProgress {
    from { width: 0%; }
    to { width: 65%; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 968px) {
    .content-wrapper {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }
    
    .title {
        font-size: 4.5rem;
    }
    
    .badge {
        margin: 0 auto 1.5rem;
    }
    
    .image-container {
        max-width: 350px;
    }
    
    .glass-panel {
        box-shadow: 8px 8px 0px var(--primary);
    }
}

@media (max-width: 640px) {
    .glass-panel {
        padding: 2rem;
    }
    
    .title {
        font-size: 3.5rem;
    }
    
    .description {
        font-size: 1rem;
    }
}
