/* Reset & fonts */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
.header-center {
    text-align: center;
    padding: 20px 0;
}
.header-center h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}
.header-center .logo {
    height: 144px;
    width: auto;
    display: block;
    margin: 0 auto;
}

/* Hero */
.hero {
    background: url('images/hero.jpg') center/cover no-repeat;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}
.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.2rem;
}

/* Products */
.products {
    padding: 80px 20px;
    background: #fff7f0;
}
.products h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2rem;
}

/* Category sub-headings on subpages */
.category-heading {
    text-align: center;
    font-size: 1.5rem;
    color: #444;
    margin-bottom: 30px;
}

/* Souvenirs Callout Button */
.souvenirs-button-container {
    text-align: center;
    margin-bottom: 40px;
}

.souvenirs-btn {
    display: inline-block;
    background-color: #b85d06;
    color: #ffffff !important;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.souvenirs-btn:hover {
    background-color: #964a04;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* Legacy Sub-link support (if needed elsewhere) */
.section-sublink {
    text-align: center;
    margin-bottom: 40px;
}
.section-sublink a {
    color: #b85d06;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
}
.section-sublink a:hover {
    text-decoration: underline;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.product {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Uniform flyer images */
.flyer-img {
    width: 100%;
    height: 400px;
    object-fit: contain; 
    border-radius: 8px;
    background-color: #fff;
}

/* Contact */
.contact {
    padding: 60px 20px;
    background: #f8e9d2;
    text-align: center;
}
.contact p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}
.contact a {
    font-weight: 700;
    text-decoration: none;
    color: #333;
}

/* WhatsApp Link & Icon */
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    color: #25d366 !important;
}
.wa-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 8px;
}

/* Footer */
footer {
    padding: 20px;
    text-align: center;
    background: #333;
    color: #fff;
}