/* --- 1. CORE STYLES --- */
* { box-sizing: border-box; }
body { margin: 0; font-family: 'Source Sans 3', sans-serif; color: #333; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- 2. HEADER --- */
.main-header { padding: 10px 0; border-bottom: 1px solid #eee; background: #fff; }
.header-grid { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { height: 80px; width: auto; transition: opacity 0.3s; }
.logo-link:hover { opacity: 0.8; }
.nav-group { text-align: right; }
.nav-links { list-style: none; display: flex; gap: 20px; margin: 0 0 5px 0; padding: 0; justify-content: flex-end; }
.nav-links a { text-decoration: none; color: #000; font-size: 14px; font-weight: 600; }

/* Dropdown Styles */
.dropdown { position: relative; display: inline-block; }
.dropdown-content { display: none; position: absolute; background-color: #fff; min-width: 220px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1); z-index: 100; text-align: left; border: 1px solid #eee; top: 100%; right: 0; border-radius: 4px; overflow: hidden; }
.dropdown-content a { color: #333 !important; padding: 12px 16px; text-decoration: none; display: block; font-size: 14px; font-weight: 400 !important; border-bottom: 1px solid #f9f9f9; transition: background 0.2s; text-align: left; }
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover { background-color: #f1f1f1; color: #007bff !important; }
.dropdown:hover .dropdown-content { display: block; }
.dropbtn::after { content: ' \25BE'; font-size: 10px; vertical-align: middle; opacity: 0.6; }
.header-contact { font-size: 13px; }
.phone-link { color: #007bff; text-decoration: underline; font-weight: bold; margin-right: 5px; }
.contact-label { color: #666; }

/* --- 3. FINAL FOOTER --- */
.main-footer { background-color: #f9f9f9; padding: 80px 0 0 0; border-top: 1px solid #eee; color: #555; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; padding-bottom: 60px; }
.footer-logo { height: 60px; margin-bottom: 20px; }
.footer-col h4 { color: #111; font-family: 'Outfit', sans-serif; margin-bottom: 25px; font-size: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { text-decoration: none; color: #555; }
.footer-socials a { margin-right: 15px; color: #007bff; font-weight: bold; text-decoration: none; }
.footer-bottom { background-color: #fff; border-top: 1px solid #eee; padding: 25px 0; }
.footer-bottom-flex { display: flex; justify-content: space-between; align-items: center; }
.legal-links a { margin-left: 20px; text-decoration: none; color: #999; }

/* --- 4. RESPONSIVE DESIGN FOR HEADER/FOOTER --- */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
}
@media (max-width: 768px) {
    .header-grid, .footer-bottom-flex { flex-direction: column; text-align: center; }
    .nav-links { justify-content: center; flex-wrap: wrap; }
}

/* --- WEDDING CAKES PAGE --- */
.wedding-hero {
    height: 400px;
    background-image: url('../images/wc1.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wedding-hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wedding-title {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    font-size: 48px;
    margin: 0;
    text-align: center;
}

.wedding-content {
    padding: 60px 0;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.wedding-content p {
    margin-bottom: 20px;
}

.wedding-content strong {
    color: #222;
}

.pricing-list {
    margin-top: 40px;
    font-weight: bold;
}

.pricing-item {
    margin-bottom: 15px;
    color: #007bff;
}

/* --- GALLERY --- */
.wedding-gallery {
    width: 100%;
    padding: 0 20px 80px 20px; /* Some bottom padding */
    box-sizing: border-box;
}

.gallery-grid {
    display: grid;
    /* Responsive full width grid */
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    width: 100%;
}

.gallery-item {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

/* --- CATEGORY NAVIGATION GRID --- */
.conf-grid-section { padding: 60px 0; border-top: 1px solid #eee; margin-top: 40px; }
.conf-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 0 auto; }
@media (max-width: 900px) { .conf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .conf-grid { grid-template-columns: 1fr; } }
.conf-item { text-align: center; }
.conf-item img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 4px; margin-bottom: 15px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.btn-category { display: inline-block; background-color: #007bff; color: #fff; padding: 10px 20px; text-decoration: none; border-radius: 4px; font-weight: bold; font-family: 'Source Sans 3', sans-serif; transition: background-color 0.3s; }
.btn-category:hover { background-color: #0056b3; }
