/* Ciné Le Paris - Navbar Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --primary-color: #e50914;
  --secondary-color: #b20710;
  --text-color: #333;
  --light-text: #777;
  --background-color: #f8f8f8;
  --accent-color: #1a1a1a;
  --gold: #d4af37;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
}

/* Header */
.cine-header {
  background-color: var(--accent-color);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.cine-nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  position: relative;
}

.cine-logo {
  height: 60px;
}

.cine-nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.cine-nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
  font-family: 'Montserrat', sans-serif;
}

.cine-nav-links a:hover {
  color: var(--primary-color);
}

.cine-nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.cine-nav-links a:hover::after {
  width: 100%;
}

/* Profile icon */
.cine-profile-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  justify-content: center;
  align-items: center;
  color: white !important;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-left: 0.5rem;
}

.cine-profile-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.cine-profile-icon::after {
  display: none; /* Remove the underline effect for the profile icon */
}

/* Hamburger Menu */
.cine-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.cine-hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hamburger Animation */
.cine-hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.cine-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.cine-hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cine-hamburger {
    display: flex;
  }
  
  .cine-nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--accent-color);
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .cine-nav-links.active {
    right: 0;
  }
  
  .cine-nav-links a {
    padding: 15px 0;
    font-size: 1.1rem;
    width: 100%;
  }
  
  .cine-profile-icon {
    margin: 15px 0 0;
  }
}

@media (max-width: 480px) {
  .cine-nav {
    padding: 0 1rem;
  }
  
  .cine-logo {
    height: 50px;
  }
  
  .cine-nav-links {
    width: 100%;
    max-width: none;
  }
}
