/* Remove bullet points from navigation menu */
nav ul, nav li {
    list-style: none;
    margin: 0;
    padding: 0;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #87393A;
}

/* Header and Navigation */
header {
    background: #F6EDEB; /* Light pinkish-salmon background */
    padding: 1rem;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.logo-img {
    max-width: 150px;
}
nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    nav li {
        margin: 8px 0;
    }
}

nav ul li {
    margin-left: 2rem;
}
nav ul li a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
}
nav ul li a:hover {
    color: #87393A; /* Pinkish-salmon hover effect */
}
.icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    fill: #333;
}
nav ul li a:hover .icon {
    fill: #87393A;
}

/* Responsive Navigation for Smartphones */
@media screen and (max-width: 600px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }
    nav ul {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }
    nav ul li {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }
    nav ul li a {
        font-size: 0.9rem;
        padding: 0.5rem 0;
        width: 100%;
    }
    .icon {
        width: 18px;
        height: 18px;
        margin-right: 0.4rem;
    }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 1rem;
    background: #E6A8A8; /* Light pinkish-salmon */
}
.hero h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: #87393A; /* Pinkish-salmon */
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: none;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #F6EDEB;
}
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #A14C4D; /* Pinkish-salmon */
    color: #F6EDEB;
    text-decoration: none;
    border-radius: 5px;
}
.btn:hover {
    background: #87393A; /* Darker pinkish-salmon */
}

/* Gallery Section */
.gallery {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}
.gallery h2 {
    font-family: 'Great Vibes', cursive;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #87393A;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: none;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.gallery-grid img {
    width: 100%;
    border-radius: 5px;
}

/* Order Form */
.order-form {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}
.order-form h1 {
    font-family: 'Great Vibes', cursive;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #87393A;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: none;
}
.order-form h2 {
    font-family: 'Great Vibes', cursive;
    margin: 1.5rem 0 1rem;
    color: #87393A;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: none;
}
.order-form label {
    display: block;
    margin: 0.5rem 0 0.2rem;
}
.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #A14C4D; /* Pinkish-salmon border */
    border-radius: 5px;
}
.order-form textarea {
    resize: vertical;
}
.order-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: #A14C4D;
    color: #F6EDEB;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.order-form button:hover {
    background: #87393A;
}
.quilt-source,
.delivery-method {
    margin-bottom: 1rem;
}
.quilt-source label,
.delivery-method label {
    display: inline-block;
    margin-right: 1rem;
}
.address-fields {
    margin-bottom: 1rem;
}
.image-select {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}
.image-select .option {
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    padding: 0.5rem;
}
.image-select .option img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}
.image-select .option p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}
.image-select .option.selected {
    border-color: #87393A;
    background: #F6EDEB;
}

/* About and Confirmation Pages */
.about,
.confirmation {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    text-align: center;
}
.about h1,
.confirmation h1 {
    font-family: 'Great Vibes', cursive;
    color: #87393A;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: none;
}
.about img {
    max-width: 100%;
    margin-top: 1rem;
    border-radius: 5px;
}
.confirmation h2 {
    font-family: 'Great Vibes', cursive;
    color: #87393A;
    margin: 1.5rem 0 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}
.confirmation p {
    margin-bottom: 1rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background: #E6A8A8;
    margin-top: 2rem;
}