/* General Styles */

/* Brand Colors */
:root {
    --primary-color: #832041; /* Brand Primary Color */
    --secondary-color: #FFFFFF; /* White */
    --background-color: #F7F7F7; /* Light background */
    --footer-background: var(--primary-color); /* Footer Background */
    --header-background: var(--primary-color);
    --header-text-color: #ffffff;
    --input-background: #ffffff;
    --input-text: #4e1327;
    --button-background: var(--primary-color);
    --button-text: #ffffff;
    --button-hover: #4e1327;
}

/* Typography */
body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway Thin', 'Comfortaa', sans-serif;
    background-color: var(--background-color);
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Header */
header {
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: var(--header-background);
    color: var(--header-text-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header img {
    max-width: 150px;
    margin: 10px 0;
}

header h1 {
    font-size: 2rem;
    font-weight: bold;
}

/* Page Header */
.page_header {
    width: 100%;
    text-align: center;
    padding: 10px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.page_header img {
    max-width: 150px;
    margin: 10px 0;
}

/* Form Container */
.form-container {
    background: var(--background-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
    margin: 20px auto;
    text-align: left;
}

.form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--input-text);
    text-align: center;
    font-weight: bold;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-color);
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    font-size: 1rem;
    background-color: var(--input-background);
    color: var(--input-text);
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--button-hover);
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
    outline: none;
}

textarea {
    min-height: 400px;
    resize: vertical;
    box-sizing: border-box;
}

/* Buttons */
.btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: var(--button-background);
    color: var(--button-text);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.btn:hover {
    background-color: var(--button-hover);
}

/* Footer */
footer {
    background: var(--footer-background);
    color: var(--secondary-color);
    text-align: center;
    width: 100%;
    padding: 10px 0;
}

footer p {
    margin: 0.5em 0;
}

/* Scroll to Top */
#scrollToTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

#scrollToTop:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-container {
        padding: 20px;
    }

    header h1 {
        font-size: 1.5rem;
    }

    .form-container h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    header img {
        max-width: 120px;
    }

    .form-container {
        padding: 15px;
    }

    .form-container h2 {
        font-size: 1.3rem;
    }
}

/* Testimonials */
.testimonials {
    padding: 2em;
    background: var(--secondary-color);
    text-align: center;
}

/* Call to Action */
.cta {
    text-align: center;
}

.cta a {
    text-decoration: none;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta a:hover {
    background-color: #5b1630;
}

/* Rotated Element */
.rotate-270 {
    transform: rotate(270deg);
    transform-origin: center;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f8f8;
}
.header-container {
    display: flex;
    align-items: center;
    width: 100%;
}
.logo img {
    height: 50px;
}
.main-navigation {
    margin-left: auto;
}
.main-navigation .nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.main-navigation .nav-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}
