/* Navigation */
.navbar { background: #d9203e; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15); position: fixed; width: 100%; top: 0; z-index: 1000; padding: 12px 0; transition: var(--transition); }
.navbar.scrolled { padding: 8px 0; background: #d9203e; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }

.logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo { height: 65px; width: auto; display: block; transition: var(--transition); }
.navbar.scrolled .nav-logo { height: 55px; }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-link { text-decoration: none; color: rgba(255, 255, 255, 0.9); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--white); opacity: 1; }
.nav-cta { margin-left: 10px; }

/* Adjusted CTA button to match the new background */
.nav-cta .btn-primary { background: var(--white); color: #d9203e; padding: 10px 20px; font-size: 0.85rem; box-shadow: none; border: 2px solid var(--white); }
.nav-cta .btn-primary:hover { background: transparent; color: var(--white); transform: translateY(-2px); }

.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.6rem; color: var(--white); cursor: pointer; padding: 5px; }

/* Responsive Header */
@media (max-width: 768px) {
    .mobile-menu-btn { display: block; }
    .nav-logo { height: 50px; }
    
    .nav-links { position: fixed; top: 70px; left: 0; width: 100%; background: #d9203e; flex-direction: column; padding: 30px 20px; gap: 20px; clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: clip-path 0.4s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 10px 20px rgba(0,0,0,0.2); border-bottom: 1px solid rgba(255,255,255,0.2); }
    .nav-links.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .nav-cta { margin: 0; width: 100%; }
    .nav-cta .btn-primary { display: block; width: 100%; text-align: center; background: var(--white); color: #d9203e; }
    .nav-cta .btn-primary:hover { background: #f0f0f0; color: #d9203e; }
    .nav-link { width: 100%; text-align: center; padding: 12px; border-bottom: 1px solid rgba(255,255,255,0.1); }
}