@import url("https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Comic Neue", "Comic Sans MS", cursive;
  background: #f5f5f5;
  color: #333;
  overflow-x: hidden;
  padding-top: 70px; /* Space for fixed navbar */
}

/* Dotted Background Pattern */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #ffd700 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
  z-index: -1;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 50%, #667eea 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  padding: 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 70px;
}

.nav-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  user-select: none;
}

.bell-icon {
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 50%;
  transition: all 0.3s ease;
  animation: bellRing 2s infinite;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.bell-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-50%) scale(1.2);
}

@keyframes bellRing {
  0%,
  50%,
  100% {
    transform: translateX(-50%) rotate(0deg);
  }
  10%,
  30% {
    transform: translateX(-50%) rotate(-15deg);
  }
  20%,
  40% {
    transform: translateX(-50%) rotate(15deg);
  }
}

/* Notification Popup */
.notification-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

.notification-popup.show {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.notification-content {
  background: linear-gradient(135deg, #ff6b9d 0%, #ffd93d 50%, #4facfe 100%);
  padding: 50px;
  border-radius: 30px;
  text-align: center;
  position: relative;
  max-width: 500px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 5px solid white;
  animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popIn {
  0% {
    transform: scale(0) rotate(-180deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

.notification-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  border: none;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  color: #ff6b9d;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.notification-close:hover {
  background: #ff6b9d;
  color: white;
  transform: rotate(90deg);
}

.notification-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: heartBeat 1.5s infinite;
}

@keyframes heartBeat {
  0%,
  100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1);
  }
}

.notification-content h3 {
  font-size: 2rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.notification-message {
  font-size: 1.8rem;
  color: white;
  line-height: 1.6;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.heart-text {
  font-size: 2.2rem;
  font-weight: bold;
  display: block;
  margin-top: 15px;
  animation: colorChange 3s infinite;
}

@keyframes colorChange {
  0%,
  100% {
    color: white;
  }
  25% {
    color: #ff1493;
  }
  50% {
    color: #ffd700;
  }
  75% {
    color: #00f2fe;
  }
}

.notification-hearts {
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
  margin-bottom: 20px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.notification-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.btn-yes,
.btn-no {
  font-family: "Comic Neue", "Comic Sans MS", cursive;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}

.btn-yes {
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  color: white;
  border: 3px solid white;
}

.btn-yes:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(255, 20, 147, 0.4);
}

.btn-yes.enlarged {
  font-size: 2rem;
  padding: 20px 60px;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1.3);
  }
}

.btn-no {
  background: linear-gradient(135deg, #666, #999);
  color: white;
  border: 3px solid white;
}

.btn-no:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #555, #888);
}

.btn-no.shrink {
  font-size: 0.9rem;
  padding: 8px 20px;
  transform: scale(0.7);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: block;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 25px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid transparent;
}

.nav-link:hover {
  background: white;
  color: #ff6b9d;
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .bell-icon {
    position: static;
    transform: none;
  }

  .bell-icon:hover {
    transform: scale(1.2);
  }

  @keyframes bellRing {
    0%,
    50%,
    100% {
      transform: rotate(0deg);
    }
    10%,
    30% {
      transform: rotate(-15deg);
    }
    20%,
    40% {
      transform: rotate(15deg);
    }
  }

  .notification-content {
    margin: 20px;
    padding: 40px 30px;
    max-width: 90%;
  }

  .notification-message {
    font-size: 1.4rem;
  }

  .heart-text {
    font-size: 1.8rem;
  }

  .notification-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-yes,
  .btn-no {
    font-size: 1.3rem;
    padding: 12px 30px;
  }

  .btn-yes.enlarged {
    font-size: 1.6rem;
    padding: 15px 40px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 50%, #667eea 100%);
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    gap: 0;
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    margin: 5px 20px;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Section Scroll Padding */
section[id],
div[id] {
  scroll-margin-top: 90px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

/* Header with Polaroid-style Photos */
header {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 100%);
  position: relative;
  overflow: hidden;
}

header::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: #f5f5f5;
  transform: skewY(-2deg);
}

header h1 {
  font-size: 3.5rem;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

header p {
  font-size: 1.5rem;
  color: #fff;
  position: relative;
  z-index: 1;
}

/* Polaroid Section */
.polaroid-section {
  background: #ffe5b4;
  padding: 60px 20px;
  margin: 40px 0;
  position: relative;
}

.polaroid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.polaroid {
  background: white;
  padding: 15px;
  padding-bottom: 60px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.polaroid:nth-child(2) {
  transform: rotate(2deg);
}

.polaroid:nth-child(3) {
  transform: rotate(-1deg);
}

.polaroid:hover {
  transform: rotate(0deg) scale(1.05);
  z-index: 10;
}

.polaroid-img {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  overflow: hidden;
}

.polaroid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.polaroid-caption {
  text-align: center;
  margin-top: 15px;
  font-size: 1.1rem;
  color: #333;
  font-weight: bold;
}

/* Section Title Banner */
.section-banner {
  background: #ff1493;
  color: white;
  text-align: center;
  padding: 15px 30px;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 60px 0 40px 0;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.section-banner::before,
.section-banner::after {
  content: "★";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
}

.section-banner::before {
  left: 20px;
}

.section-banner::after {
  right: 20px;
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

/* Individual Cards */
.card {
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.card h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.card p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Yellow Card */
.card-yellow {
  background: linear-gradient(135deg, #ffd93d 0%, #ffed4e 100%);
  color: #333;
  border: 4px solid #333;
}

/* Pink Card */
.card-pink {
  background: linear-gradient(135deg, #ff6b9d 0%, #ff8fb9 100%);
  color: #fff;
  border: 4px solid #fff;
}

/* Blue Card */
.card-blue {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: #333;
  border: 4px solid #333;
}

/* Orange Card */
.card-orange {
  background: linear-gradient(135deg, #ff9a56 0%, #ffb088 100%);
  color: #fff;
  border: 4px solid #fff;
}

/* Spotify Section */
.spotify-section {
  background: #1db954;
  padding: 60px 20px;
  margin: 60px 0;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.spotify-section h2 {
  color: white;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.spotify-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 20px;
  border-radius: 20px;
}

.spotify-placeholder {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, #1db954 0%, #1ed760 100%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.spotify-placeholder svg {
  width: 80px;
  height: 80px;
  fill: white;
  margin-bottom: 20px;
}

/* Days of the Week Section */
.days-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px 20px;
  margin: 60px 0;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.days-section h2 {
  color: white;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.days-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.day-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 4px solid;
}

.day-card-1 {
  border-color: #ff6b9d;
}

.day-card-2 {
  border-color: #ffd93d;
}

.day-card h3 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.day-card p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
}

footer p {
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  header h1 {
    font-size: 2.5rem;
  }

  header p {
    font-size: 1.2rem;
  }

  .polaroid-grid,
  .card-grid,
  .days-grid {
    grid-template-columns: 1fr;
  }

  .section-banner {
    font-size: 1.2rem;
  }

  .card h3 {
    font-size: 1.5rem;
  }

  .day-card h3 {
    font-size: 2rem;
  }
}
