/* --- Base Reset & Defaults --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Enable smooth scrolling for anchor links */
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: #fdfdfd;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- Header --- */
header {
    background-color: #ffffff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0; /* Prevent logo from shrinking */
}

.logo a {
    display: inline-block;
    margin-left: 10px; /* Spacing between hamburger and logo */
}

/* Style the actual logo image */
.logo img {
    max-height: 45px; /* Adjust logo height */
    width: auto;
    display: block;
}

.menu-toggle {
    display: none; /* Hidden on desktop */
    font-size: 1.8em;
    cursor: pointer;
    margin-right: 15px; /* Space from logo text (if any) */
}



nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    padding: 5px 10px;
}

nav li {
    margin: 0 5px;
}

nav a {
    padding: 8px 18px;
    display: block;
    color: #555;
    font-size: 0.95em;
    font-weight: 400;
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid transparent;
    white-space: nowrap; /* Prevent menu items from wrapping */
}

nav a:hover {
    color: #000;
}

nav a.active {
    border-color: #d32f2f; /* Red border */
    color: #d32f2f; /* Red text */
    font-weight: 500;
}















/* === Custom Order Info Section === */
.custom-order-info {
    padding: 60px 0;
    background-color: #ffffff;
}

.custom-order-info .container {
    /* Optional: Use flexbox for side-by-side layout */
}

.info-content { /* Wrapper for text and image */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

@media (min-width: 768px) {
    .info-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 50px;
    }
}

.info-text {
    flex: 1 1 60%; /* Adjust flex ratios as needed */
    max-width: 700px;
}

.info-text p {
    font-size: 1.05em;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.info-text ul {
    list-style: disc; /* Or use custom icons */
    margin-left: 25px;
    margin-bottom: 20px;
    color: #555;
}

.info-text ul li {
    margin-bottom: 10px;
}

.info-image {
    flex: 1 1 40%;
    max-width: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.info-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* === WhatsApp CTA Section === */
.whatsapp-cta {
    padding: 60px 0;
    background-color: #f9f9f9; /* Light background */
    text-align: center;
}

.whatsapp-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #333;
}

.whatsapp-cta p {
    max-width: 600px;
    margin: 0 auto 25px auto;
    font-size: 1.1em;
    color: #555;
}

/* Specific WhatsApp button styling */
.btn-whatsapp {
    background-color: #25D366; /* WhatsApp green */
    border-color: #25D366;
    color: #ffffff;
    padding: 15px 35px; /* Slightly larger */
    font-size: 1.1em;
    font-weight: 500;
    /* Optional: Add icon styles later */
    /* display: inline-flex; */
    /* align-items: center; */
    /* gap: 10px; */
}

.btn-whatsapp:hover {
    background-color: #1DAE55; /* Darker green */
    border-color: #1DAE55;
    color: #ffffff; /* Ensure text stays white */
    transform: translateY(-2px);
}

.whatsapp-number-text {
    margin-top: 20px;
    font-size: 0.95em;
    color: #777;
}