@import url('variables.css');
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default;
}

body {
    background-color: var(--color-bg-pure);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Melted Gold Flowing Background */
.liquid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #fff;
    overflow: hidden;
}

.liquid-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent, rgba(255, 251, 240, 0.5));
    pointer-events: none;
}

.liquid-blob {
    position: absolute;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 40%, transparent 75%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(60px);
    animation: liquid-move 45s infinite alternate ease-in-out;
}

.liquid-blob:nth-child(1) {
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
}

.liquid-blob:nth-child(2) {
    top: 40%;
    right: -20%;
    background: radial-gradient(circle, rgba(241, 229, 172, 0.25) 0%, transparent 70%);
    animation-duration: 60s;
    animation-delay: -10s;
}

.liquid-blob:nth-child(3) {
    bottom: -10%;
    left: 20%;
    background: radial-gradient(circle, rgba(166, 124, 0, 0.18) 0%, transparent 70%);
    animation-duration: 80s;
    animation-delay: -20s;
}

@keyframes liquid-move {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    50% {
        transform: translate(10vw, 10vh) scale(1.1) rotate(10deg);
        border-radius: 60% 40% 30% 70% / 50% 60% 50% 40%;
    }

    100% {
        transform: translate(-5vw, 15vh) scale(1.2) rotate(-10deg);
        border-radius: 30% 70% 40% 60% / 60% 40% 60% 50%;
    }
}

/* Typography Elite */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--color-text-main);
    font-weight: 700;
}

.gold-accent {
    color: var(--color-gold-lustre);
}

p {
    color: var(--color-text-mute);
    font-weight: 400;
}

/* Layout Utilities */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

section {
    padding: 10rem 0;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--trans-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    section {
        padding: 6rem 0;
    }

    h1 {
        font-size: 2.8rem !important;
    }

    h2 {
        font-size: 2rem !important;
    }
}