/* ==========================================
   GLOBAL RESET & BASE STYLES
   Vedanut Premium Beige Theme
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8f5ef;   /* Soft cream */
    color: #1f3a24;        /* Deep botanical green */
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* GLOBAL CONTAINER */
.container {
    width: 90%;
    margin: auto;
    max-width: 1500px;
}

/* HEADINGS — Premium Serif */
h1, h2, h3, h4, h5 {
    font-family: "Cormorant Garamond", serif;
    color: #1f3a24;
    font-weight: 700;
    line-height: 1.2;
}

/* TEXT COLORS */
.text-dark { color: #1f3a24; }
.text-gold { color: #b8946a; }

/* SPACING UTILITIES */
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 20px; }
.pt-3 { padding-top: 30px; }

.pb-1 { padding-bottom: 10px; }
.pb-2 { padding-bottom: 20px; }
.pb-3 { padding-bottom: 30px; }

/* ==========================================
   PREMIUM BUTTON SYSTEM (Luxury Style)
========================================== */

.btn-dark,
.btn-light {
    display: inline-block;
    padding: 14px 36px;          /* Bigger luxury buttons */
    font-size: 17px;
    border-radius: 40px;         /* Pill-shaped */
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: 0.35s ease;
    cursor: pointer;
}

/* DARK BUTTON */
.btn-dark {
    background: #1f3a24;
    color: #f3e8d4;
    border: 2px solid #1f3a24;
    box-shadow: 0px 4px 14px rgba(0,0,0,0.12);
}

.btn-dark:hover {
    background: #b8946a;
    color: #1f3a24;
    border-color: #b8946a;
    transform: translateY(-2px);
    box-shadow: 0px 8px 24px rgba(0,0,0,0.18);
}

/* LIGHT BUTTON */
.btn-light {
    background: #f3e8d4;
    color: #1f3a24;
    border: 2px solid #1f3a24;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
}

.btn-light:hover {
    background: #fff6e8;
    border-color: #b8946a;
    color: #b8946a;
    transform: translateY(-2px);
    box-shadow: 0px 8px 20px rgba(0,0,0,0.12);
}

/* DISABLED BUTTON */
.btn.disabled,
.btn:disabled {
    opacity: 0.55;
    pointer-events: none;
}

/* LINKS */
a {
    color: #1f3a24;
    text-decoration: none;
    transition: 0.3s ease;
}

a:hover {
    color: #b8946a;
}

/* SECTION WRAPPER */
section {
    position: relative;
    width: 100%;
}

/* IMAGES */
img {
    max-width: 100%;
    display: block;
}

/* SMOOTH SHADOWS */
.shadow-soft {
    box-shadow: 0px 8px 25px rgba(0,0,0,0.08);
}

/* CARD BASE */
.card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 12px 30px rgba(0,0,0,0.12);
}

/* ==========================================
   ANIMATION SUPPORT CLASSES
   For GSAP Smooth Premium Animations
========================================== */

/* Sections that fade in on scroll */
.fade-block {
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
}

/* For stagger reveal groups */
.stagger-reveal > * {
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, opacity;
}

/* Parallax elements (hero pouch/jar) */
.parallax {
    will-change: transform;
}

/* Micro floating elements */
.float-slow {
    will-change: transform;
}

/* Smooth transitions everywhere */
* {
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}
