/* Chosen Palette: 
   - Golden Sand: #E6BE8A
   - Turquoise Blue: #40E0D0
   - Royal Purple: #7851A9
   - Fuschia Pink: #FF77FF
   - Mint Frost: #D4F1F4
   - Midnight Blue: #191970
   - Soft Coral: #FF6B6B
   - Snow Mist: #F9F9F9
*/

body {
    background-color: #F9F9F9; /* Snow Mist - Clean, fresh base */
    color: #191970; /* Midnight Blue - Primary Text/Contrast */
    font-family: 'Nunito', sans-serif; /* Default body font: Nunito Regular */
    line-height: 1.6; /* Improved readability */
}

/* Font weights for Nunito */
.font-nunito-regular { font-weight: 400; }
.font-nunito-semibold { font-weight: 600; }
.font-nunito-bold { font-weight: 700; }
.font-poppins { font-family: 'Poppins', sans-serif; }

/* Navigation Active State */
.active-nav {
    color: #E6BE8A; /* Golden Sand - Primary Accent */
    transform: scale(1.05);
    font-weight: 700;
}

/* Sub-section active states for product categories */
.active-sub-section {
    border-bottom: 2px solid #E6BE8A; /* Golden Sand for active tab */
    font-weight: 600;
}

/* Logo and Strapline Gradient Text */
.gradient-text,
.gradient-text-strapline {
    background: linear-gradient(90deg, #FCD14F, #B6E05C, #55C77A, #35D4B2, #3CD4D3, #3EBFEC, #4488F7, #7D6FE3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Nunito', sans-serif;
    font-weight: 800; /* Extra bold */
}

/* Primary Call to Action Button */
.cta-primary {
    background-color: #40E0D0; /* Turquoise Blue */
    color: #191970; /* Midnight Blue */
    box-shadow: 0 4px 10px rgba(64, 224, 208, 0.4);
    transition: all 0.3s ease-in-out;
    font-weight: 600;
}
.cta-primary:hover {
    background-color: #34c7bb;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(64, 224, 208, 0.6);
}

/* Secondary Call to Action Button */
.cta-secondary {
    background-color: #E6BE8A; /* Golden Sand */
    color: #191970; /* Midnight Blue */
    box-shadow: 0 4px 10px rgba(230, 190, 138, 0.4);
    transition: all 0.3s ease-in-out;
    font-weight: 600;
}
.cta-secondary:hover {
    background-color: #d5ae7c;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(230, 190, 138, 0.6);
}

/* General Card Styling */
.card-bg {
    background-color: #ffffff;
    border: 1px solid #F9F9F9; /* Snow Mist */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 1rem;
}

/* Feature Card specific styling */
.feature-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    padding: 2rem;
}
.feature-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.1);
}

/* Form input focus state */
input:focus, textarea:focus {
    border-color: #40E0D0; /* Turquoise Blue */
    box-shadow: 0 0 0 3px rgba(64, 224, 208, 0.3);
}

/* Success/Error Message Styling */
.success-message {
    background-color: #F9F9F9; /* Snow Mist */
    color: #191970; /* Midnight Blue */
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}
.error-message {
    background-color: #FF6B6B; /* Soft Coral */
    color: #FFFFFF;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-top: 1rem;
}

/* Close button for modals */
.close-button {
    color: #191970; /* Midnight Blue */
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}
.close-button:hover,
.close-button:focus {
    color: #7851A9; /* Royal Purple */
}

/* Team member gradient border */
.team-gradient-card {
    background: linear-gradient(90deg, #E6BE8A, #40E0D0, #7851A9);
    border-radius: 1rem;
    padding: 2px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.team-gradient-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.1);
}
.team-gradient-card .inner-card-content {
    background-color: #ffffff;
    border-radius: calc(1rem - 2px);
    padding: 2rem;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.team-gradient-card .inner-card-content h3 { margin-bottom: 0.25rem; }
.team-gradient-card .inner-card-content p { margin-bottom: 0.5rem; }

/* Home Hero Section Background */
#home {
    background-image: url('https://images.unsplash.com/photo-1514890547357-a97e63b674c7?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    background-color: #F9F9F9; /* Fallback */
    position: relative;
    z-index: 1;
}
#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(249, 249, 249, 0.05) 0%, rgba(212, 241, 244, 0.05) 50%, rgba(230, 190, 138, 0.05) 100%); 
    z-index: -1;
}

/* Section Backgrounds */
#our-story, #the-team, #join { background-color: #F9F9F9; } /* Snow Mist */
#products, #contact-us { background-color: #D4F1F4; } /* Mint Frost */

/* Header Glass Bar Effect */
header {
    background-color: rgba(249, 249, 249, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(249, 249, 249, 0.02);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
header:hover {
    background-color: rgba(249, 249, 249, 0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-color: rgba(249, 249, 249, 0.5);
}

/* Floating Wallet Box Styling */
.wallet-box {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    text-align: center;
}
.wallet-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.wallet-box-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #7851A9; /* Royal Purple */
}

/* Wallet Detail Modal */
.wallet-detail-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
}
.wallet-detail-modal-content {
    background-color: #fefefe;
    border-radius: 1rem;
    padding: 2.5rem;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    animation: fadeIn 0.3s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
.wallet-detail-modal .close-button {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: #191970;
    cursor: pointer;
}
.wallet-detail-modal .feature-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    color: #191970;
}
.wallet-detail-modal .feature-list-item span {
    margin-right: 0.75rem;
    color: #40E0D0; /* Turquoise */
    font-size: 1.5rem;
    flex-shrink: 0;
}
.wallet-detail-modal .feature-section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #7851A9; /* Royal Purple */
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Utility color classes */
.text-red-500 { color: #FF6B6B; } /* Soft Coral */
.text-green-500 { color: #40E0D0; } /* Turquoise */
