/* General Styles */
body {
    background-color: #fae9d6;
    font-family: 'Georgia', serif;
    margin: 0;
    line-height: 1.3;
    color: #333;
    font-size: 1.1rem;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

html {
    scroll-behavior: smooth;
  }

/* Navbar */
nav {
    background-color: #73533e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    margin: 0 15px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: box-shadow 0.2s ease-in-out;
  }


nav a:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

nav .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    font-style: italic;
}

nav .logo:hover {
    text-decoration: none;
}

/* Header */
header {
    background-image: url('../images/site/IMG_5224.jpeg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

header h1 {
    font-size: 4rem;
    margin: 0;
    font-family: 'Cursive', serif;
}

header p {
    font-size: 1.3rem;
    margin-top: 10px;
}

/* Sections */
section {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about {
    text-align: center;
}

/* Gallery */
.gallery {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 400px;
    height: 250px;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-title {
    font-size: 1.2rem;
    color: #FF6347;
    padding: 0.5rem;
    font-style: italic;
}

.card-price {
    font-size: 1.25rem;
    color: #333;
    padding: 0 0.5rem 1rem;
}

.gallery-button {
    margin-top: 1rem;
    display: inline-block;
    background-color: #FF6347;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    font-style: bold;
    cursor: pointer;
}

.gallery-button:hover {
    background-color: #ff8566;
}

.gallery-button::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 15px solid #ffffff;
    margin-left: 10px;
  }

/* Contact Section */
.contact {
    text-align: center;
    line-height: 1;
}

.contact a {
    color: #FF6347;
    text-decoration: none;
    font-style: italic;
}

.contact a:hover {
    text-decoration: underline;
}

iframe {
    width: 100%;
    height: 300px;
    border: none;
    margin-top: 1rem;
}

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