/* Nourish Vibes CSS Logo */
.nourish-logo {
    position: relative;
    width: 400px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Tree Container */
.tree-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin-bottom: 30px;
}

/* Tree Trunk (Woman Figure) */
.tree-trunk {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 180px;
    background: linear-gradient(180deg, #8B6F47 0%, #6B5335 100%);
    border-radius: 20px 20px 5px 5px;
    z-index: 2;
}

/* Woman Figure - Body */
.woman-figure {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 120px;
    z-index: 3;
}

/* Woman Head */
.woman-head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #D4A574 0%, #B8956A 100%);
    border-radius: 50%;
}

/* Woman Body */
.woman-body {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 60px;
    background: linear-gradient(180deg, #C9995B 0%, #A67C52 100%);
    border-radius: 20px 20px 15px 15px;
}

/* Woman Arms */
.woman-arm-left,
.woman-arm-right {
    position: absolute;
    top: 35px;
    width: 25px;
    height: 50px;
    background: linear-gradient(135deg, #C9995B 0%, #A67C52 100%);
    border-radius: 15px;
}

.woman-arm-left {
    left: -15px;
    transform: rotate(-25deg);
    transform-origin: top right;
}

.woman-arm-right {
    right: -15px;
    transform: rotate(25deg);
    transform-origin: top left;
}

/* Woman Legs */
.woman-leg-left,
.woman-leg-right {
    position: absolute;
    bottom: -35px;
    width: 18px;
    height: 45px;
    background: linear-gradient(180deg, #C9995B 0%, #A67C52 100%);
    border-radius: 10px;
}

.woman-leg-left {
    left: 5px;
}

.woman-leg-right {
    right: 5px;
}

/* Tree Roots */
.tree-roots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 80px;
    z-index: 1;
}

.root {
    position: absolute;
    bottom: 0;
    width: 8px;
    background: linear-gradient(180deg, #6B5335 0%, #4A3622 100%);
    border-radius: 4px;
}

.root-1 {
    left: 20%;
    height: 60px;
    transform: rotate(-15deg);
}

.root-2 {
    left: 35%;
    height: 50px;
    transform: rotate(-8deg);
}

.root-3 {
    right: 35%;
    height: 50px;
    transform: rotate(8deg);
}

.root-4 {
    right: 20%;
    height: 60px;
    transform: rotate(15deg);
}

/* Tree Branches */
.tree-branches {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 150px;
    z-index: 2;
}

.branch {
    position: absolute;
    background: linear-gradient(90deg, #8B6F47 0%, #6B5335 100%);
    border-radius: 10px;
}

.branch-1 {
    top: 20px;
    left: 30px;
    width: 80px;
    height: 6px;
    transform: rotate(-35deg);
}

.branch-2 {
    top: 15px;
    left: 10px;
    width: 60px;
    height: 5px;
    transform: rotate(-50deg);
}

.branch-3 {
    top: 20px;
    right: 30px;
    width: 80px;
    height: 6px;
    transform: rotate(35deg);
}

.branch-4 {
    top: 15px;
    right: 10px;
    width: 60px;
    height: 5px;
    transform: rotate(50deg);
}

.branch-5 {
    top: 50px;
    left: 40px;
    width: 70px;
    height: 5px;
    transform: rotate(-25deg);
}

.branch-6 {
    top: 50px;
    right: 40px;
    width: 70px;
    height: 5px;
    transform: rotate(25deg);
}

/* Leaves */
.leaves-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 180px;
    z-index: 3;
}

.leaf {
    position: absolute;
    width: 20px;
    height: 25px;
    background: linear-gradient(135deg, #7CB342 0%, #558B2F 100%);
    border-radius: 50% 0 50% 0;
    animation: leafSway 3s ease-in-out infinite;
}

/* Leaf Positions - Creating a natural canopy */
.leaf:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.leaf:nth-child(2) { top: 5%; left: 30%; animation-delay: 0.2s; }
.leaf:nth-child(3) { top: 8%; left: 40%; animation-delay: 0.4s; }
.leaf:nth-child(4) { top: 12%; left: 50%; animation-delay: 0.6s; }
.leaf:nth-child(5) { top: 8%; left: 60%; animation-delay: 0.8s; }
.leaf:nth-child(6) { top: 5%; left: 70%; animation-delay: 1s; }
.leaf:nth-child(7) { top: 10%; left: 80%; animation-delay: 1.2s; }

.leaf:nth-child(8) { top: 25%; left: 15%; animation-delay: 0.3s; }
.leaf:nth-child(9) { top: 22%; left: 25%; animation-delay: 0.5s; }
.leaf:nth-child(10) { top: 28%; left: 35%; animation-delay: 0.7s; }
.leaf:nth-child(11) { top: 25%; left: 45%; animation-delay: 0.9s; }
.leaf:nth-child(12) { top: 22%; left: 55%; animation-delay: 1.1s; }
.leaf:nth-child(13) { top: 28%; left: 65%; animation-delay: 1.3s; }
.leaf:nth-child(14) { top: 25%; left: 75%; animation-delay: 1.5s; }
.leaf:nth-child(15) { top: 22%; left: 85%; animation-delay: 1.7s; }

.leaf:nth-child(16) { top: 40%; left: 18%; animation-delay: 0.4s; }
.leaf:nth-child(17) { top: 45%; left: 28%; animation-delay: 0.6s; }
.leaf:nth-child(18) { top: 42%; left: 38%; animation-delay: 0.8s; }
.leaf:nth-child(19) { top: 48%; left: 48%; animation-delay: 1s; }
.leaf:nth-child(20) { top: 42%; left: 58%; animation-delay: 1.2s; }
.leaf:nth-child(21) { top: 45%; left: 68%; animation-delay: 1.4s; }
.leaf:nth-child(22) { top: 40%; left: 78%; animation-delay: 1.6s; }

.leaf:nth-child(23) { top: 60%; left: 25%; animation-delay: 0.5s; }
.leaf:nth-child(24) { top: 58%; left: 35%; animation-delay: 0.7s; }
.leaf:nth-child(25) { top: 62%; left: 45%; animation-delay: 0.9s; }
.leaf:nth-child(26) { top: 58%; left: 55%; animation-delay: 1.1s; }
.leaf:nth-child(27) { top: 62%; left: 65%; animation-delay: 1.3s; }
.leaf:nth-child(28) { top: 60%; left: 75%; animation-delay: 1.5s; }

/* Logo Text */
.logo-text-container {
    text-align: center;
    margin-top: 20px;
}

.brand-name {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 8px;
    background: linear-gradient(135deg, #D4A574 0%, #B8956A 50%, #8B6F47 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(139, 111, 71, 0.3);
    font-family: 'Georgia', serif;
}

.tagline {
    font-size: 1.1rem;
    color: #B8956A;
    font-weight: 500;
    letter-spacing: 2px;
    font-style: italic;
    font-family: 'Georgia', serif;
}

/* Animations */
@keyframes leafSway {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-5deg) scale(1.05);
    }
    75% {
        transform: rotate(5deg) scale(0.95);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nourish-logo {
        width: 300px;
        height: 400px;
    }
    
    .tree-container {
        width: 250px;
        height: 250px;
    }
    
    .brand-name {
        font-size: 2rem;
        letter-spacing: 4px;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .nourish-logo {
        width: 250px;
        height: 350px;
    }
    
    .tree-container {
        width: 200px;
        height: 200px;
        transform: scale(0.8);
    }
    
    .brand-name {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }
    
    .tagline {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
}