:root {
    --liquids-primary: #50E3C2;   /* Vibrant Teal - keep existing */
    --liquids-secondary: #0077B6; /* Deep Ocean Blue - keep existing */
    --liquids-accent: #FDCB58;    /* Golden Yellow - keep existing */
    --liquids-background: #ECF8FF; /* Light Aqua - keep existing */
    --liquids-text: #2C2C2C;      /* Dark Gray - keep existing */
    --liquids-mist: rgba(80, 227, 194, 0.1); /* New transparent teal for effects */
}

.heroLiquids {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, 
        var(--liquids-primary) 0%, 
        var(--liquids-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.heroLiquids::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 119, 182, 0.3),
        rgba(80, 227, 194, 0.3));
    pointer-events: none;
}

.heroLiquids::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
        rgba(80, 227, 194, 0.7),
        rgba(0, 119, 182, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--liquids-background);
    width: 90%;
    max-width: 1200px;
    padding: 3rem;
    margin: 0 auto;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeIn 1s ease-out;
}

.hero-content h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 1s ease-out;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 2rem);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.heroLiquids .hero-content h2,
.heroLiquids .hero-content p {
    color: var(--liquids-background);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 1s ease-out;
}

.heroLiquids .hero-content p {
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.heroLiquids .cta-btn {
    animation: fadeIn 1s ease-out 1s backwards;
}

/* Structure styles matching solids.css */
.intro-container {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background: var(--liquids-mist);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 119, 182, 0.2);
    border: 1px solid rgba(80, 227, 194, 0.3);
}

.intro-text {
    flex: 1;
    padding-right: 2rem;
    color: var(--liquids-text);
}

.intro-text h2 {
    color: var(--liquids-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    position: relative;
}

.intro-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--liquids-accent);
}

.intro-text ul li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.intro-text ul li::before {
    content: '💧'; /* Water drop emoji for liquids */
    position: absolute;
    left: 0;
    color: var(--liquids-secondary);
    font-size: 1.2rem;
    top: 0.4rem;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.property-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--liquids-secondary);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-card h3 {
    color: var(--liquids-primary);
    margin-bottom: 1rem;
}

.property-card p {
    color: var(--liquids-text);
}

.behavior-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.behavior-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--liquids-accent);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.content-section {
    background: var(--liquids-background);
    padding: 4rem 2rem;
    margin: 2rem auto;
}

.cta-btn {
    background: var(--liquids-accent);
    color: var(--liquids-text);
}

.cta-btn:hover {
    background: var(--liquids-secondary);
    color: var(--liquids-background);
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .intro-container {
        flex-direction: column;
        padding: 1.5rem;
    }

    .intro-text {
        padding-right: 0;
    }

    .property-grid,
    .behavior-grid {
        grid-template-columns: 1fr;
    }
}
