/* Import Google Fonts - Nature-inspired elegant fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

/* CSS Variables for easy customization - Nature/Interior palette */
:root {
    --primary-green: #2d5a3d;
    --sage-green: #8b9d83;
    --terracotta: #c77d58;
    --cream: #f5f1e8;
    --sand: #e8dcc8;
    --earth-brown: #6b5447;
    --soft-white: #fefefe;
    --text-dark: #2c3e3f;
    --text-light: #6b7c7d;
    --accent-gold: #c9a668;
    
    /* Backgrounds */
    --bg-cream: #faf8f3;
    --bg-light-green: #f0f4f1;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light-green) 100%);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated background shapes */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.leaf {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(ellipse at center, var(--sage-green) 0%, transparent 70%);
    border-radius: 50% 0 50% 0;
    opacity: 0.15;
    animation: leafFloat 20s infinite ease-in-out;
}

.leaf-1 {
    top: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
    transform: rotate(45deg);
}

.leaf-2 {
    top: 60%;
    left: 85%;
    width: 100px;
    height: 100px;
    animation-delay: 3s;
    transform: rotate(-30deg);
}

.leaf-3 {
    top: 80%;
    left: 10%;
    width: 70px;
    height: 70px;
    animation-delay: 6s;
    transform: rotate(120deg);
}

.leaf-4 {
    top: 25%;
    left: 80%;
    width: 90px;
    height: 90px;
    animation-delay: 9s;
    transform: rotate(-60deg);
}

.leaf-5 {
    top: 45%;
    left: 15%;
    width: 75px;
    height: 75px;
    animation-delay: 12s;
    transform: rotate(90deg);
}

.leaf-6 {
    top: 70%;
    left: 70%;
    width: 85px;
    height: 85px;
    animation-delay: 15s;
    transform: rotate(-90deg);
}

@keyframes leafFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.15;
    }
    25% {
        transform: translate(20px, -30px) rotate(45deg) scale(1.1);
        opacity: 0.25;
    }
    50% {
        transform: translate(-15px, -20px) rotate(-30deg) scale(0.95);
        opacity: 0.2;
    }
    75% {
        transform: translate(25px, 25px) rotate(60deg) scale(1.05);
        opacity: 0.18;
    }
}

/* Organic blob shapes */
.organic-blob {
    position: fixed;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.08;
    filter: blur(60px);
    animation: blobMove 25s infinite ease-in-out;
    pointer-events: none;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-green);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--terracotta);
    bottom: -150px;
    left: -150px;
    animation-delay: 8s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: var(--accent-gold);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 16s;
}

@keyframes blobMove {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(0, 0) scale(1);
    }
    33% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        border-radius: 50% 50% 30% 70% / 50% 70% 30% 60%;
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    z-index: 1;
}

/* Decorative branches */
.branch-decoration {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 400px;
    color: var(--sage-green);
    opacity: 0;
    animation: branchGrow 2s ease-out 0.5s forwards;
}

.branch-left {
    left: 5%;
}

.branch-right {
    right: 5%;
}

@keyframes branchGrow {
    from {
        opacity: 0;
        transform: translateY(-50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

/* Main content */
.content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(45, 90, 61, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: contentFadeIn 1.2s ease-out;
}

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

/* Logo section with botanical design */
.logo-section {
    margin-bottom: 2.5rem;
    animation: logoBloom 1.5s ease-out 0.3s backwards;
}

.logo-botanical {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.botanical-icon {
    width: 100%;
    height: 100%;
    color: var(--primary-green);
    filter: drop-shadow(0 5px 15px rgba(45, 90, 61, 0.2));
    animation: leafSway 4s ease-in-out infinite;
}

@keyframes logoBloom {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    60% {
        transform: scale(1.1) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes leafSway {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(3deg);
    }
    75% {
        transform: rotate(-3deg);
    }
}

/* Title with elegant typography */
.title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--primary-green);
    letter-spacing: 2px;
}

.title-word {
    display: inline-block;
    margin: 0 10px;
    opacity: 0;
    animation: wordFadeIn 0.8s ease-out forwards;
}

.title-word:nth-child(1) {
    animation-delay: 0.6s;
    color: var(--primary-green);
}

.title-word:nth-child(2) {
    animation-delay: 0.9s;
    color: var(--earth-brown);
    font-style: italic;
}

.title-word:nth-child(3) {
    animation-delay: 1.2s;
    color: var(--terracotta);
}

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

/* Decorative divider */
.divider {
    width: 100px;
    height: 20px;
    margin: 1.5rem auto;
    color: var(--sage-green);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.5s forwards;
}

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

/* Subtitle */
.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.8s forwards;
}

/* Description */
.description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 2.1s forwards;
}

/* Nature decoration */
.nature-decoration {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 2.5rem 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 2.4s forwards;
}

.seed-dot {
    width: 8px;
    height: 8px;
    background: var(--sage-green);
    border-radius: 50%;
    animation: seedPulse 2s ease-in-out infinite;
}

.seed-dot:nth-child(1) {
    animation-delay: 0s;
}

.seed-dot:nth-child(2) {
    animation-delay: 0.3s;
    background: var(--accent-gold);
}

.seed-dot:nth-child(3) {
    animation-delay: 0.6s;
    background: var(--terracotta);
}

@keyframes seedPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* Social links with nature theme */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin: 2.5rem 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 2.7s forwards;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--sage-green);
    border-radius: 50%;
    color: var(--primary-green);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-green);
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    transform: translateY(-8px) rotate(5deg);
    border-color: var(--primary-green);
    box-shadow: 0 12px 30px rgba(45, 90, 61, 0.3);
}

.social-link:hover svg {
    color: var(--soft-white);
    position: relative;
    z-index: 1;
}

.social-link svg {
    width: 22px;
    height: 22px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    margin-top: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 3s forwards;
}

.footer p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.footer .copyright {
    color: var(--sage-green);
    font-size: 0.8rem;
    font-style: normal;
    letter-spacing: 1px;
}

/* Responsive design */
@media (max-width: 1024px) {
    .branch-decoration {
        opacity: 0.5;
        width: 150px;
    }
    
    .branch-left {
        left: 2%;
    }
    
    .branch-right {
        right: 2%;
    }
}

@media (max-width: 768px) {
    .content {
        padding: 50px 30px;
    }
    
    .title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .title-word {
        margin: 0 6px;
    }
    
    .subtitle {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .branch-decoration {
        display: none;
    }
    
    .logo-botanical {
        width: 100px;
        height: 100px;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .title-word {
        display: block;
        margin: 5px 0;
    }
    
    .subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    .description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .logo-botanical {
        width: 80px;
        height: 80px;
    }
    
    .divider {
        width: 80px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
    }
    
    .footer p {
        font-size: 0.85rem;
    }
    
    .footer .copyright {
        font-size: 0.75rem;
    }
}
