/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #532721;
	color: #bdab98;
}

header {
    background-color: #525962;
    color: #bdab98;
    padding: 1rem 2rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links a {
    color: #bdab98;
    text-decoration: none;
}

.shop-link {
  color: #bdab98;
  text-decoration: underline;
}

.text-underline {
  color: #bdab98;
  text-decoration: underline;
}


/* Hero Section
.hero {
    position: relative;
    height: 60vh;
    background: url('banner.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
*/

.hero {
    position: relative;
    height: 60vh;
    width: 100%;
    margin: 0;
    background: url('https://www.ranjitdoroszkiewicz.com/images/flowers%20of%20spring%20without%20border.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #bdab98;
    text-align: center;
}


.hero .banner {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    /*border-radius: 10px; */
}

.cta-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* Gallery Section
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 2rem;
}
*/

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Ensure exactly two columns */
    gap: 1rem;
    padding: 2rem;
}


.gallery-item img {
    width: 90%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
   /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);*/
}

.sold-dot {
    display: block;
    width: 12px;
    height: 12px;
    background-color: red;
    border-radius: 50%;
    margin-top: 5px; /* Space between text and dot */
    margin-left: auto; /* Push to the right */
    margin-right: 10px; /* Adjust spacing from the right edge */
}


/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    /*background-color: #333;*/
	background-color: #525962;
    color: #bdab98;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        height: 50vh;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}
