* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    background-color: var(--light-color);
    color: var(--dark-color);
    padding-top: 80px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin-top: 0;
}

h2 {
    color: var(--primary-color);
    font-size: 32px;
    /* Increased size */
    font-weight: 700;
}

h3 {
    color: var(--gold-text);
    font-weight: 600;
}

p {
    font-size: 18px;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* =============================
   Global UI/UX Polish (Buttons & Animations)
============================= */

/* Button Hover "Lift & Glow" */
button,
.btn,
.btn-hero,
.circle-btn {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

button:hover,
.btn:hover,
.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3);
    /* Gold Glow */
}

/* Scroll Animation Classes */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}