/* Custom Utilities */
body {
    background-color: #fbfcf9;
    color: #283025;
    font-weight: 500;
}

/* Modern Bold Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Extra bold for hero/large headings */
.text-4xl,
.text-5xl,
.text-6xl,
.text-7xl {
    font-weight: 800;
    letter-spacing: -0.03em;
}

/* Medium weight for body text - more readable */
p,
li,
span {
    font-weight: 500;
}

/* Bold buttons and CTAs */
button,
.btn,
a.btn {
    font-weight: 600;
    letter-spacing: 0.01em;
}

.clip-image {
    clip-path: ellipse(45% 60% at 50% 50%);
}

.text-stroke {
    -webkit-text-stroke: 1px rgba(148, 158, 121, 0.3);
    color: transparent;
}

/* Hide scrollbar for cleaner look */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #fbfcf9;
}

::-webkit-scrollbar-thumb {
    background: #949e79;
    border-radius: 4px;
}

/* Dropdown Menu */
.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}