/* =====================================
   1. RESET & BASE
===================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ffffff;
    color: #2d2d2d;
    font-family: "Times New Roman", Times, serif;
    line-height: 1.6;
}

/* =====================================
   2. NAVBAR – TWO ROW CENTERED DESKTOP / MOBILE
===================================== */
/* ================= NAVBAR ================= */

.custom-navbar {
    background: linear-gradient(135deg, #0f172a, #1f2a44);
    border-bottom: 4px solid #d4af6a;
    padding: 15px 0;
}

/* BRAND WRAPPER */
.brand-wrapper {
    text-align: center;
}

.navbar {
    min-height: auto !important;
}


/* LOGO + NAME */
.navbar-brand span {
    font-size: 26px;
    font-weight: 600;
    color: #f3d28a;
    letter-spacing: 1px;
    animation: glowText 2s ease-in-out infinite alternate;
}

@keyframes glowText {
    from {
        text-shadow: 0 0 5px rgba(241, 209, 138, 0.3);
    }
    to {
        text-shadow: 0 0 15px rgba(241, 209, 138, 0.8);
    }
}


.navbar-brand img {
    height: 60px;
    border-radius: 12px;
    animation: floatLogo 3s ease-in-out infinite;
}

@keyframes floatLogo {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.navbar-brand span {
    font-size: 26px;
    font-weight: 600;
    color: #f3d28a;
    letter-spacing: 1px;
}

/* MENU */
.navbar-collapse {
    margin-top: 10px;
}

.navbar-nav {
    justify-content: center;
}

.nav-link {
    color: #fff !important;
    font-weight: 600;
    margin: 0 15px;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #f1d18a !important;
}


.navbar-toggler {
    border: 2px solid #f1d18a;
}

.navbar-toggler-icon {
    background-image: none;
    width: 22px;
    height: 2px;
    background-color: #f1d18a;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 2px;
    background-color: #f1d18a;
    left: 0;
}

.navbar-toggler-icon::before {
    top: -6px;
}

.navbar-toggler-icon::after {
    top: 6px;
}

@media (max-width: 991px) {

    /* Remove all extra spacing */
    .navbar-collapse {
        padding: 0 !important;
        margin-top: 5px !important;
    }

    .navbar-nav {
        padding: 0 !important;
        margin: 0 !important;
    }

    .nav-item {
        margin: 0 !important;
    }

.nav-link {
    padding: 5px 0 !important;   /* slightly more space */
    line-height: 1;
    font-size: 15px;
}


}

    .navbar-brand {
        padding-right: 50px;   /* 🔥 prevents touching */
    }

    .navbar-toggler {
        position: absolute;
        right: 15px;
        top: 20px;
    }


/* =====================================
   4. CONTENT SECTIONS
===================================== */
.section-padding {
    padding: 60px 15px;
}

.section-padding h1 {
    font-size: 36px;
    color: #0b1426;
    margin-bottom: 30px;
    font-weight: bold;
}

.section-padding p {
    background: #fafafa;
    border-left: 5px solid #d4af6a;
    padding: 20px;
    margin-bottom: 20px;
    font-size: 17px;
    transition: 0.3s;
}

.section-padding p:hover {
    background: #fff6e3;
    transform: translateX(5px);
}

/* =====================================
   5. PRODUCT & GALLERY CARDS
===================================== */
.product-card, .gallery-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s;
    border-bottom: 4px solid #d4af6a;
}

.product-card:hover, .gallery-card:hover {
    transform: translateY(-8px);
}

.product-card img, .gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-content, .gallery-content {
    padding: 20px;
    text-align: center;
}

/* =====================================
   6. FOOTER & SOCIAL ICONS
===================================== */
footer {
    background: #0b1426;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.footer-menu a:hover {
    color: #f1d18a;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f1d18a;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #f1d18a;
    color: #0b1426;
}

/* =====================================
   7. MAP CONTAINER
===================================== */
.map-container {
    border: 3px solid #d4af6a;
    border-radius: 15px;
    overflow: hidden;
    margin: 30px auto;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
