@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Random Colors Selection: Fresh Green and Clean Blue */
  --primary-color: #FDFAFF; /* Very light background base */
  --secondary-color: #F1F2F6;
  --accent-color: #27AE60; /* Fresh Green */
  --light-color: #FFFFFF;
  --dark-color: #2C3E50;
  
  --gradient-primary: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
  --hover-color: #219150;
  --background-color: #FDFAFF;
  --text-color: #57606f;
  
  --border-color: rgba(39, 174, 96, 0.1);
  --divider-color: rgba(44, 62, 80, 0.1);
  --shadow-color: rgba(163, 177, 198, 0.3);
  --highlight-color: rgba(255, 255, 255, 1);
  
  /* Fonts: Playfair Display + Lato */
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Lato', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--alt-font);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
    color: var(--dark-color);
}

/* Neumorphism classes for Light Theme */
.neu-card {
    background: var(--primary-color);
    border-radius: 20px;
    box-shadow:  9px 9px 18px var(--shadow-color),
                 -9px -9px 18px var(--highlight-color);
    border: 1px solid white;
}

.neu-btn {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    box-shadow:  5px 5px 10px rgba(39, 174, 96, 0.3),
                 -5px -5px 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
}

.neu-btn:hover {
    transform: translateY(-2px);
    box-shadow:  2px 2px 5px rgba(39, 174, 96, 0.4);
}

.section-padding {
    padding-top: 10dvh;
    padding-bottom: 10dvh;
}

/* Specific Header/Footer overrides */
footer img[alt="logo"], header img[alt="logo"] {
    /* Assuming dark logo for light theme, but prompting asks for invert filter in header/footer */
    filter: brightness(0); /* Make it black for light header */
}
footer img[alt="logo"] {
    filter: brightness(0) invert(1); /* White for dark footer */
}

/* Pure CSS Menu for Mobile */
#menu-toggle { display: none; }
.nav-menu { display: flex; gap: 25px; }

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 30px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        z-index: 50;
    }
    #menu-toggle:checked + .menu-icon + .nav-menu {
        display: flex;
    }
    .menu-icon {
        display: block;
        font-size: 1.8rem;
        cursor: pointer;
        color: var(--dark-color);
    }
}
@media (min-width: 769px) {
    .menu-icon { display: none; }
}

/* Form Styles */
input, textarea {
    background: #F0F3F4;
    border: none;
    box-shadow: inset 3px 3px 6px #d1d9e6,
                inset -3px -3px 6px #ffffff;
    color: var(--dark-color);
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    outline: none;
}