/* MOE GOT IT.COM - Complete Global Styles & Color Scheme */
/* This file contains ALL shared styles used across the entire website */

/* ========================================
   COLOR VARIABLES
======================================== */
:root {
    /* Updated Color Scheme - White, Yellow, Grey, Black */
    --pure-white: #FFFFFF;
    --off-white: #c2c2c2ff;
    --light-grey-bg: #F3F4F6;
    --text-grey: #6B7280;
    --text-dark: #1F2937;
    --black: #000000;
    --yellow: #FBBF24;
    --yellow-bright: #FCD34D;
    --border-grey: #E5E7EB;
    --dark-grey: #201e1bff;
    
    /* Shadow Effects */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
}

/* ========================================
   UNIVERSAL RESET
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========================================
   BODY BASE STYLES
======================================== */
body {
    font-family: 'Inter', sans-serif;
    background: var(--pure-white);
    color: var(--text-grey);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========================================
   ANIMATED BACKGROUND
======================================== */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background: linear-gradient(135deg, var(--pure-white) 0%, var(--off-white) 50%, var(--pure-white) 100%);
}

.background-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%236B7280" fill-opacity="0.05"><circle cx="30" cy="30" r="1"/></g></g></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ========================================
   CONTAINER
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   SECTION TITLES
======================================== */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--yellow-bright);
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: var(--off-white);
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

/* Yellow button on black background */
.btn-primary {
    background: var(--yellow-bright);
    color: var(--black);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--black);
}

.btn-primary:hover {
    transform: translateY(-4px);
    background: var(--text-dark);
    color: var(--yellow-bright);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: var(--pure-white);
    color: var(--text-dark);
    border: 2px solid var(--text-grey);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    transform: translateY(-4px);
    background: var(--off-white);
    border-color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

/* ========================================
   FORM ELEMENTS
======================================== */
label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid var(--border-grey);
    font-size: 1rem;
    background: var(--pure-white);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.15);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* ========================================
   UTILITY CLASSES
======================================== */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* ========================================
   RESPONSIVE - MOBILE
======================================== */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .container {
        padding: 0 15px;
    }
}