/* General Styles (same as before) */
/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gill Sans', 'Helvetica', sans-serif; /* fallback added */
    line-height: 1.7;        /* good for readability */
    background-color: #FAEBD7; /* soft vintage feel */
    color: #333;             /* dark enough for text contrast */
    font-weight: 400;        /* ensures normal weight */
    font-size: 16px;         /* typical for body copy */
}


h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Raleway', sans-serif; /* better vintage-2001 feel */
  font-weight: 700;         /* bold headlines, not 400 */
  line-height: 1.2;         /* tighter line spacing for headings */
  color: #222;    
  letter-spacing: 0.04em;   /* slight spacing, vintage brochure feel */
  margin-bottom: 0.5em;     /* space below headings */
}

p.specs {
    font-size: 15px;
    color: #2c2c2c;
}


#bids {
    background-color: white;
    padding: 40px;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


# {mechanic
    background-color: white;
    padding: 40px;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


header {
    background-color: #FAEBD7;
    color: #1c1c1c;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo a {
    font-size: 1.5rem;
    text-decoration: none;
    color: #1c1c1c;
    font-weight: bold;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: #1c1c1c;
    font-size: 1rem;
}

.icons a {
    margin-left: 15px;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
}

.hero {
    background-color: #F0B65A;
    color: #1c1c1c;
    text-align: center;
    padding: 50px 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
}

.narrative {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    padding-bottom:none;
}

.narrative-text {
    width: 45%;
}

.narrative-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.narrative-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.body-narrative {
    padding: 50px;
    background-color: #f7f2eb;
    margin: 20px;
    margin-top: 0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.body-narrative h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.body-narrative p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.gallery {
    text-align: center;
    padding: 40px;
}

.gallery h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.gallery-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-items {
    display: flex;
    gap: 20px;
    overflow: hidden;
    width: 80%;
}

.gallery-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.gallery-button {
    background-color: #FF9933;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
}

.gallery-button:hover {
    background-color: #dc852f;
}

.form-section {
    background-color: white;
    padding: 40px;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input, form textarea {
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ddd;
}

form button {
    padding: 10px 20px;
    background-color: #FF9933;
    color: #1c1c1c;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #db842e;
}

.cta {
    text-align: center;
    margin-top: 40px;
}

.cta button {
    padding: 15px 30px;
    background-color: #FF9933;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cta button:hover {
    background-color: #FF9933;
}

footer {
    text-align: center;
    padding: 15px;
    background-color: #FF9933;
    color: #1c1c1c;
}





/* Popup Styles */
.contact-popup {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black with transparency */
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    padding-bottom: 20px;
    border-radius: 8px;
    width: 400px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
}

.whatsapp-qr {
    width: 150px;
    height: 150px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Button Styles */
.cta {
    text-align: center;
    margin-top: 40px;
}

.cta button {
    padding: 15px 30px;
    margin-bottom:: 40px;
    background-color: #FF9933;
    color: #1c1c1c;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cta button:hover {
    background-color: #c07c39;
}



* {box-sizing: border-box}
.mySlides1, .mySlides2 {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a grey background color */
.prev:hover, .next:hover {
  background-color: #f1f1f1;
  color: black;
}

ul {
  list-style-position: inside;
  padding-left: 0;
  margin-left: 0;
}

li {
  padding-left: 0.5rem; /* optional: fine-tune spacing */
}

h2 {
  margin-top: 3rem;     /* stronger separation from previous section */
  margin-bottom: 1rem;  /* tighter bond to following content */
  line-height: 1.2;
}
