/* General Body Styling */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
    color: #333;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #8b0000;
    padding: 1rem 2rem;
}

.logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Hero Section Styling */
.hero {
    text-align: center;
    padding: 5rem 2rem;
    background: #fbeaea;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.hero-content {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.85);
    /* light background with slight transparency */
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}

.hero h1 {
    font-size: 2.5rem;
    color: #8b0000;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* Button Styling */
.btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: #8b0000;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #a80000;
}

/* Form Field Focus Styling */
.custom-form input:focus,
.custom-form select:focus,
.custom-form textarea:focus {
    outline: none;
    border-color: #8B0000;
}

/* Customization Form Styles */
.custom-form-section {
    max-width: 600px;
    margin: 4rem auto;
    padding: 2rem;
    background-color: #f9f4f4;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.custom-form-section h1 {
    text-align: center;
    color: #8b0000;
    margin-bottom: 2rem;
}

.custom-form {
    display: flex;
    flex-direction: column;
}

.custom-form label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.custom-form input,
.custom-form select,
.custom-form textarea {
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

/* Button alignment in form */
.custom-form button {
    align-self: flex-start;
}

/* Thank You Section Styles */
.thank-you-section {
    text-align: center;
    padding: 5rem 2rem;
}

.thank-you-section h1 {
    color: #8b0000;
    font-size: 2.5rem;
}

.thank-you-section p {
    font-size: 1.2rem;
    margin-top: 1rem;
}