:root {
    /* Logo Extraction: 
       Outer Ring: Terracotta/Orange ~ #C96636
       Inner BG: Slate Blue ~ #5D7A92 -> Darker for web bg: #1C2B36
       Tree/Sun: Gold ~ #E8C168
    */
    --primary-color: #C96636;
    /* Terracotta Orange */
    --secondary-color: #5D7A92;
    /* Slate Blue */
    --accent-color: #E8C168;
    /* Soft Gold */
    --bg-dark: #1F2D38;
    /* Dark Slate */
    --bg-darker: #131E26;
    /* Deep Slate */
    --text-color: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-darker);
    overflow-x: hidden;
}

.main-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    /* Sophisticated Blue-Slate Gradient */
    background: radial-gradient(circle at 50% 50%, #2C4252 0%, #131E26 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(19, 30, 38, 0.9) 0%, rgba(28, 43, 54, 0.8) 100%);
    backdrop-filter: blur(2px);
}

.z-2 {
    z-index: 2;
}

/* Typography & Logo */
.logo-placeholder {
    font-size: 3rem;
    color: var(--accent-color);
}

h1 {
    font-family: var(--font-heading);
    letter-spacing: -1px;
    line-height: 1.1;
}

.tracking-wide {
    letter-spacing: 0.2em;
}

.gradient-text {
    background: linear-gradient(to right, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Form Styles */
.newsletter-box {
    max-width: 500px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
}

.newsletter-box input:focus {
    box-shadow: none;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary:hover {
    background-color: #246027;
    border-color: #246027;
    transform: scale(1.05);
}

/* Social Icons */
.social-links a {
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: var(--accent-color) !important;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}