@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@300;400;600&display=swap');

:root {
    --primary-black: #1a1a1a;
    --accent: #ff7eb3;
}

body {
    background-color: #ffffff;
    color: var(--primary-black);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Centering the logo on the Home Page */
.hero-center {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -2px;
    color: var(--primary-black);
    text-decoration: none;
    transition: 0.3s ease;
}

.logo-main:hover {
    color: var(--accent);
}

.logo-sm {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-black);
    text-decoration: none;
}

/* Form Styles for the Review Page */
.custom-form {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding: 10px 0;
}

.custom-form:focus {
    box-shadow: none;
    border-bottom: 1px solid var(--primary-black);
}

.btn-dark {
    background-color: var(--primary-black);
    border-radius: 0;
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}