/* CSS Reset */
body, header, nav, img, h1, h2, h3, main, footer {
    margin: 0; 
    padding: 0;
    border: 0;
}

/* Body styles */
body { 
    font-family: 'Open Sans', sans-serif; 
    line-height: 1.6; 
    color: #333; 
    background-color: #fafafa;
}
h1, h2, h3 { 
    font-family: 'Playfair Display', serif; 
    color: #444A4A; 
}

/* Container for layout */
.container { 
    width: 80%; 
    margin: 0 auto; 
    padding: 20px; 
}

/* Navigation Styles */
nav {
    background-color: #ffffff;
    padding: 15px 0;
}
nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}
nav ul li {
    display: inline-block;
    margin-right: 20px;
}
nav ul li a {
    text-decoration: none;
    color: #A67B5B;
    font-weight: bold;
}
nav ul li a:hover {
    color: #7B4A29;
}

/* Header, footer, and other elements */
header {
    background-color: #f8d7da;
    padding: 20px;
}
footer {
    background-color: #f8d7da;
    color: #333;
    text-align: center;
    padding: 20px;
}
.subheader-description {
    text-align: center;
    margin: 0;  
    padding: 10px 0;
    font-family: 'Playfair Display', serif;
    color: #444A4A;
    font-size: 1.5em;
}

/* Images */
.image-container {
    display: flex;
    justify-content: center;
}
.image-container img {
    margin: 0 15px;
}
.banner {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 60%;
    max-width: 1000px;
    height: auto;
}

/* Article Section */
.article-section {
    text-align: center;
    margin-bottom: 20px;
}
.article-section h2 {
    margin-bottom: 20px;
}
#article-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
#article-images a {
    text-decoration: none;
    color: inherit;
    text-align: center;
    max-width: 150px;
}
#article-images img {
    width: 120px;
    height: auto;
    border-radius: 5px;
}
#article-images h5 {
    margin-top: 10px;
    font-size: 14px;
    color: #444A4A;
}

/* Buttons for the website */
nav {
    text-align: center;
    margin: 20px 0;
}
.nav-links {
    list-style-type: none;
    padding: 0;
}
.nav-links li {
    display: inline-block;
    margin: 0 10px;
}
.nav-links a {
    text-decoration: none;
    background-color: #ffb6c1;
    color: white;
    padding: 10px 20px;
    border-radius: 5px; 
    transition: background-color 0.3s;
}
.nav-links a:hover {
    background-color: #ff9baf;
}

/* Form Styling */
#form {
    background-color: #ffeef3;
    border-radius: 15px;
    padding: 20px;
    width: 80%;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#form h2 {
    text-align: center;
    color: #A67B5B;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}
form.form-grid {
    display: grid;
    gap: 15px;
    font-family: 'Open Sans', sans-serif;
    color: #333;
}
form label {
    font-weight: bold;
    color: #A67B5B;
}
form input[type="text"], form input[type="email"], form input[type="tel"] {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ffc6d1;
    font-family: 'Open Sans', sans-serif;
    background-color: #fff;
    transition: border 0.3s;
}
form input[type="text"]:focus, form input[type="email"]:focus, form input[type="tel"]:focus {
    border-color: #ff9baf;
    outline: none;
}
form input[type="submit"] {
    background-color: #ffb6c1;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}
form input[type="submit"]:hover {
    background-color: #ff9baf;
}
fieldset {
    border: none;
}
legend {
    font-family: 'Playfair Display', serif;
    color: #A67B5B;
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 15px;
}

/* Additional Styling for Article Section */
.article-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 20px auto;
}
.article-section h2 {
    color: #A67B5B;
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    margin-bottom: 10px;
}
.article-section img {
    width: 80%;
    max-width: 400px;
    border-radius: 10px;
    margin-top: 10px;
}

/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}
h1, h2, h3 {
    text-align: center;
    margin: 20px 0;
}
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #333;
}
h2 {
    font-size: 1.75em;
    color: #555;
}
h3 {
    font-size: 1.2em;
    color: #666;
}
p {
    text-indent: 30px;
    margin: 20px;
    font-size: 1.1em;
}
ul {
    list-style-type: none;
    padding: 0;
    margin: 20px;
}
ul li {
    font-size: 1.0em;
    margin-bottom: 10px;
    text-indent: 30px;
}
img {
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}
.center {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
a {
    text-decoration: none;
}
a img {
    width: 100%;
    max-width: 350px;
    height: auto;
}
section {
    margin: 40px 0;
}

/* Additional Styling for Picks Section */
h2 {
    font-size: 1.5em;
    margin-top: 40px;
}
h3 {
    margin-top: 10px;
    font-size: 1.1em;
    color: #666;
}
footer {
    text-align: center;
    margin-top: 50px;
    font-size: 1.1em;
}

/* Container for the images */
.boot-picks {
    display: flex;
    justify-content: center;
    gap: 20px;
    border: none;
}
.boot-picks img {
    max-height: 400px;
    width: 350px;
    object-fit: contain;
    border-radius: 8px;
    border: none !important;
    outline: none !important;
}
.centered-gif {
    display: block;
    margin: 0 auto;
    max-width: 400px;
    max-height: 400px;
    width: auto;
    height: auto;
}

.trend-section, .timeless-section {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    color: #6c4f72;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.trend-section:hover, .timeless-section:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.trend-image, .timeless-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px solid #FFB6C1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trend-image:hover, .timeless-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.trend-section img {
    transition: transform 0.3s ease;
}

.trend-section img:hover {
    transform: scale(1.05);
}

/* Main content styles */
main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Shop Highlight Section */
.shop-highlight {
    margin-bottom: 40px;
    text-align: center;
}

.shop-highlight h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.shop-banner {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 20px auto;
}

.shop-intro {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Mission Statement */
.shop-mission {
    margin-bottom: 40px;
}

.shop-mission h2 {
    font-size: 1.8rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.shop-mission p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Featured Products */
.featured-products {
    margin-bottom: 40px;
}

.featured-products h2 {
    font-size: 1.8rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

.product {
    text-align: center;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.product img,
.product video {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product h3 {
    font-size: 1.2rem;
    color: #333;
    margin-top: 15px;
}

.product p {
    font-size: 1.1rem;
    color: #ffb6c1; /* New pink shade */
    margin: 5px 0;
}

.product .btn {
    display: inline-block;
    background-color: #ffb6c1; /* New pink shade */
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 10px;
}

.product .btn:hover {
    background-color: #f9a0b0; /* Slightly darker shade of pink on hover */
}

/* CTA Section */
.cta-section {
    text-align: center;
    font-size: 1.2rem;
}

.cta-section a {
    color: #ffb6c1; /* New pink shade */
    text-decoration: none;
}

.cta-section a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

footer p {
    font-size: 1em;
    color: #777;
}

/* Main Section */
main {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    text-align: center;
}

.hero-img {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-right: 30px;
}

.hero-text {
    max-width: 600px;
    font-size: 1.2em;
    color: #444A4A;
    line-height: 1.8;
}

.hero h1 {
    font-size: 2.5em;
    color: #A67B5B;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1em;
    margin-top: 20px;
}

.inspirations {
    margin: 50px 0;
    text-align: center;
}

.inspirations h2 {
    font-size: 2em;
    color: #A67B5B;
    margin-bottom: 20px;
}

.inspirations-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.inspiration-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 250px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.inspiration-item img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 2px solid #D49BA8;
}

.inspiration-item p {
    font-size: 1.1em;
    padding: 15px;
    background-color: #f8f8f8;
    color: #444A4A;
}

.inspiration-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Quiz Section */
.quiz {
    text-align: center;
    margin: 50px 0;
}

.quiz h2 {
    font-size: 2em;
    color: #A67B5B;
    margin-bottom: 20px;
}

form {
    background-color: #ffeef3;
    padding: 30px;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

form label {
    font-size: 1.2em;
    color: #444A4A;
    margin-bottom: 10px;
}

form select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #D49BA8;
    background-color: #fff;
    font-size: 1em;
}

form button {
    background-color: #ffb6c1;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #ff9baf;
}











/* Start https://www.cursors-4u.com */ * {cursor: url(https://cur.cursors-4u.net/nature/nat-10/nat993.cur), auto !important;} /* End https://www.cursors-4u.com */



