/* Glow Gold Shea and Farms - Custom Styles */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.bg-gradient-gold {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
}

.text-gradient-gold {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-glass {
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

input:focus, textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Scroll-to-top button styles */
.scroll-to-top {
        position: fixed;
        right: 1rem;
        bottom: 1.25rem;
        width: 48px;
        height: 48px;
        border-radius: 9999px;
        background: linear-gradient(135deg, #D4AF37, #FFD700);
        color: #0B3D2E;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        box-shadow: 0 8px 24px rgba(11,61,46,0.12);
        border: none;
        cursor: pointer;
        transition: transform 160ms ease, opacity 160ms ease;
        opacity: 1;
        z-index: 60;
}
.scroll-to-top:hover { transform: translateY(-4px); }

@media (max-width: 480px) {
    .scroll-to-top { display: none; }
}
