* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter'; }
html { scroll-behavior: smooth; }
body { background-color: #f8fafc; color: #0f172a; display: flex; flex-direction: column; min-height: 100vh; font-family: 'Inter', sans-serif;}

/* Navbar - 120px Logo */
.navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0.5rem 5%; 
    background: white; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    min-height: 140px;
	font-family: 'Inter'; 
}
.logo-container { display: flex; align-items: center; gap: 20px; }
.nav-logo { height: 120px; width: auto; transition: 0.3s; }
.logo-text { font-size: 1.8rem; font-weight: 600; color: #0f172a; }

.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a { text-decoration: none; color: #475569; transition: 0.3s; font-size: 1.1rem; }
.nav-links a:hover, .nav-links a.active { color: #0053A0; font-weight: 600; }

/* Mobile Menu - Hidden on Desktop */
.mobile-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; }
.mobile-toggle span { display: block; width: 30px; height: 3px; background-color: #0f172a; transition: 0.3s; }

/* Hero Section */
.hero-container { position: relative; height: 85vh; width: 100%; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; background: #000; }
.hero-scrolling-bg { position: absolute; top: 0; left: 0; width: 200%; height: 100%; background: url('BANNER1.png'); background-size: cover; animation: scrollBg 80s linear infinite; z-index: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); z-index: 2; }
.hero-content { position: relative; z-index: 3; color: white; padding: 0 5%; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.hero-center-logo { width: 220px; height: auto; filter: drop-shadow(0 4px 15px rgba(0,0,0,0.6)); }

@keyframes scrollBg { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Grid Layouts (Shop & Gallery) */
.content-section { padding: 5rem 5%; flex: 1; }
.section-header { text-align: center; margin-bottom: 3rem; }
.custom-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2.5rem; max-width: 1200px; margin: 0 auto; }

.card { 
    background: white; 
    border-radius: 15px; 
    overflow: hidden; 
    transition: all 0.3s ease; 
    display: flex; 
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); 
    border: 1px solid rgba(0,0,0,0.05);
}
.card:hover { transform: translateY(-8px); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }

.image-container { aspect-ratio: 1/1; width: 100%; background: #fff; display: flex; align-items: center; justify-content: center; padding: 10px; }
.image-container img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }

.card-content { padding: 1.5rem; text-align: center; }
.action-btn { display: inline-block; padding: 0.8rem 1.5rem; background: #0053A0; color: white; text-decoration: none; border-radius: 6px; font-weight: 600; border: none; cursor: pointer; }

/* Blog Styling */
.blog-grid { display: flex; flex-direction: column; gap: 2.5rem; max-width: 900px; margin: 0 auto; }
.blog-card { background: white; padding: 2.5rem; border-radius: 15px; border: 1px solid #e2e8f0; line-height: 1.8; box-shadow: 0 2px 5px rgba(0,0,0,0.02); }

footer { text-align: center; padding: 2.5rem; background: white; border-top: 1px solid #eee; margin-top: auto; }

@media (max-width: 992px) {
    .mobile-toggle { display: flex; }
    .nav-links { position: absolute; top: 100%; left: 0; width: 100%; background: white; flex-direction: column; align-items: center; max-height: 0; overflow: hidden; transition: 0.4s; }
    .nav-links.active { padding: 2rem 0; max-height: 500px; }
}