/* Import Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* CSS Variables */
:root {
    --primary-pink: #D62F74;
    --primary-pink-dark: #B52462;
    --accent-green: #B6D63A;
    --deep-purple: #4C2E63;
    --text-grey: #333333;
    --light-grey: #F5F5F5;
    --white: #FFFFFF;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-grey);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Typography */
h1, h2, h3 {
    color: var(--deep-purple);
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-pink);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-pink-dark);
    text-decoration: underline;
}

/* Form Styles */
.form-container {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin: 2rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--deep-purple);
}

input[type="text"],
input[type="email"],
input[type="file"],
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--light-grey);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
}

.consent-text {
    background-color: var(--light-grey);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 1.5rem 0;
}

/* Checkbox styling */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 1rem 0;
}

input[type="checkbox"] {
    margin-top: 0.25rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75em 1.5em;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-pink);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-pink-dark);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
}

.btn-secondary:hover {
    background-color: var(--primary-pink);
    color: var(--white);
}

/* Image Preview */
.image-preview {
    max-width: 300px;
    margin-top: 1rem;
    display: none;
}

.image-preview img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Error and Success Messages */
.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #f87171;
}

.alert-success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
} 