body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #fbe9ef;
    color: #63402C;
    text-align: center;
}

header {
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

header img {
    max-width: 240px;
    height: auto;
    display: block;
}

/* Responsive logo scaling */
@media (max-width: 768px) {
    header img {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    header img {
        max-width: 160px;
    }
}

nav {
    background-color: #63402C;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

nav ul li {
    margin: 5px 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #fbe9ef;
}

/* Responsive nav font size */
@media (max-width: 600px) {
    nav ul li a {
        font-size: 0.9em;
    }
}

h2 {
    font-family: 'Georgia', serif;
    margin-bottom: 10px;
}

.section {
    padding: 30px 15px;
    max-width: 700px;
    margin: auto;
}

/* Align Content section text left */
#content p {
    text-align: left;
}

#content h3 {
	font-size: 1.3em;
}

@media (max-width: 768px) {
    #content div[style*="float: left"] {
        float: none !important;
        margin: 0 auto 20px auto !important;
        display: block;
        max-width: 80% !important;
    }
}

/* Order Now button section centered */
#order-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.order-now-btn {
    display: inline-block;
    background-color: #8B5A3A; /* Slightly warmer brown for contrast */
    color: white;
    padding: 14px 36px;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Soft shadow */
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.order-now-btn:hover {
    background-color: #6F3F28; /* Darker shade on hover */
    transform: scale(1.05);
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}

/* Email Signup styling */
#signup {
    padding-top: 10px;
}

.email-form {
    background-color: #fff5f7;
    border-radius: 10px;
    padding: 20px;
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.email-form form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

input[type="email"] {
    padding: 10px;
    border: 1px solid #63402C;
    border-radius: 5px;
    width: 250px;
    margin-bottom: 0;
}

button {
    background-color: #63402C;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

button:hover {
    background-color: #4b2f20;
}

footer {
    background-color: #63402C;
    color: white;
    padding: 20px 0;
}

footer p {
    margin: 5px 0 10px 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.social-icons {
    margin-top: 5px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: white;
    font-size: 1.8em;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #fbe9ef;
    transform: scale(1.15);
}



/* Gallery */
.gallery-carousel {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.gallery-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slides img {
    flex: 0 0 100%; /* Always 1 image per view */
    width: 100%;
    height: auto;
    max-height: 300px; /* Adjust height cap */
    object-fit: contain; /* Ensure full image visible */
    background-color: #fbe9ef; /* Match background for letterbox areas */
}

/* Adjust height for mobile */
@media (max-width: 768px) {
    .gallery-slides img {
        max-height: 250px;
    }
}


.gallery-dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: #63402C; /* Brand brown */
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(99, 64, 44, 0.7); /* Semi-transparent brand brown */
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    font-size: 18px;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    opacity: 0; /* Hidden by default on desktop */
}

/* Show arrows on hover (desktop) */
.gallery-carousel:hover .gallery-arrow {
    opacity: 1;
}

/* Always show arrows on mobile */
@media (max-width: 768px) {
    .gallery-arrow {
        opacity: 1;
    }
}

.gallery-arrow:hover {
    background-color: rgba(99, 64, 44, 1);
}

.gallery-arrow.left {
    left: 10px;
}

.gallery-arrow.right {
    right: 10px;
}

