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

body {
  font-family: "Montserrat", sans-serif;
  color: #333;
  overflow-x: hidden;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 4px;
  color: #d4af37;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #d4af37;
}

.btn-reserve {
  padding: 10px 30px;
  border: 1px solid #d4af37;
  background: transparent;
  color: #d4af37;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-reserve:hover {
  background: #d4af37;
  color: #000;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #d4af37;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1551024506-0bccd828d307?q=80&w=2000")
      center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero-content {
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero .script {
  font-family: "Great Vibes", cursive;
  font-size: 90px;
  color: #d4af37;
  margin: -20px 0;
  font-weight: 400;
}

.hero-subtitle {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  margin: 30px auto;
  max-width: 600px;
  font-style: italic;
  opacity: 0.9;
}

.btn-view-menu {
  padding: 15px 50px;
  border: 1px solid #d4af37;
  background: transparent;
  color: #d4af37;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 20px;
}

.btn-view-menu:hover {
  background: #d4af37;
  color: #000;
}

.discover-more {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.discover-more:hover {
  opacity: 1;
}

.arrow-down {
  width: 1px;
  height: 40px;
  background: #d4af37;
  position: relative;
}

.arrow-down::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-right: 1px solid #d4af37;
  border-bottom: 1px solid #d4af37;
  transform: translateX(-50%) rotate(45deg);
}

/* Golden Path Section */
.golden-path-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #f4a261 0%, #e76f51 50%, #d4a373 100%);
  padding: 100px 60px 60px;
  position: relative;
  overflow: hidden;
}

.golden-path-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.golden-path-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.golden-path-title {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  font-weight: 400;
  text-align: center;
  color: #2c1810;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.golden-path-subtitle {
  text-align: center;
  font-size: 16px;
  font-style: italic;
  color: rgba(44, 24, 16, 0.8);
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* Circular Story Navigation with Connecting Path */
.story-circle-container {
  position: relative;
  width: 400px;
  height: 600px;
  margin: 60px auto;
}

.connecting-path-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.golden-line {
  stroke-linecap: round;
  animation: none;
  transition: stroke-dashoffset 2s ease-out;
}

.golden-line.animate {
  stroke-dashoffset: 0;
}

.circle-item {
  position: absolute;
  width: 120px;
  height: 120px;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  animation: fadeInCircle 0.8s ease-out forwards;
}

.circle-top {
  top: 20px;
  animation-delay: 0.3s;
}

.circle-middle {
  top: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0.6s;
}

.circle-bottom {
  bottom: 20px;
  animation-delay: 0.9s;
}

@keyframes fadeInCircle {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

@keyframes fadeInCircle {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-50%) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%) scale(1);
  }
}

.circle-middle {
  animation-name: fadeInCircleMiddle;
}

@keyframes fadeInCircleMiddle {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.circle-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  background: #fff;
}

.circle-image:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.circle-label {
  font-size: 11px;
  color: rgba(44, 24, 16, 0.7);
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Additional Mobile Optimizations */
@media (max-width: 480px) {
  .story-circle-container {
    width: 240px;
    height: 320px;
    margin: 30px auto;
  }

  .circle-item {
    width: 70px;
    height: 70px;
  }

  .circle-top {
    top: 10px;
  }

  .circle-bottom {
    bottom: 10px;
  }

  .circle-label {
    font-size: 8px;
    margin-top: 4px;
    letter-spacing: 0.3px;
  }

  .connecting-path-svg {
    transform: scale(0.7);
  }

  .golden-path-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .golden-path-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }
}

/* Story Preview Cards */
.story-preview-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 80px auto 60px;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 1.5s;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.story-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.story-card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.story-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.story-card:hover .story-card-image img {
  transform: scale(1.05);
}

.story-card-image.illustrated {
  background: #f5f5f5;
}

.story-card-content {
  padding: 25px;
  text-align: left;
}

.story-card-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #2c1810;
  margin-bottom: 12px;
}

.story-card-text {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  font-style: italic;
}

/* Golden Path Question */
.golden-path-question {
  text-align: center;
  margin-top: 80px;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 2s;
  opacity: 0;
}

.golden-path-question p {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-style: italic;
  color: #2c1810;
  margin-bottom: 30px;
}

.response-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.btn-golden-yes {
  padding: 15px 80px;
  background: rgba(44, 24, 16, 0.8);
  color: #f4a261;
  border: 2px solid rgba(44, 24, 16, 0.3);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 4px;
}

.btn-golden-yes:hover {
  background: #2c1810;
  color: #f4a261;
  border-color: #2c1810;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 24, 16, 0.3);
}

.btn-golden-no {
  padding: 15px 80px;
  background: rgba(150, 50, 50, 0.8);
  color: #fff;
  border: 2px solid rgba(150, 50, 50, 0.3);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 4px;
}

.btn-golden-no:hover {
  background: #963232;
  color: #fff;
  border-color: #963232;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(150, 50, 50, 0.3);
}

/* Valentine Section */
.valentine-section {
  position: relative;
  margin: 40px 0;
  padding: 30px 0;
}

.valentine-question {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 600;
  color: #d4af37;
  text-align: center;
  margin: 0;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
  animation: fadeInScale 1.5s ease-out forwards;
  animation-delay: 1.5s;
  opacity: 0;
}

/* Floating Golden Hearts */
.floating-golden-hearts {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.golden-heart {
  position: absolute;
  font-size: 24px;
  animation: floatGoldenHeart 6s infinite linear;
  opacity: 0;
}

.golden-heart:nth-child(1) { 
  left: 15%; 
  animation-delay: 0s; 
  animation-duration: 5s;
}
.golden-heart:nth-child(2) { 
  left: 25%; 
  animation-delay: 1s; 
  animation-duration: 6s;
}
.golden-heart:nth-child(3) { 
  left: 75%; 
  animation-delay: 2s; 
  animation-duration: 5.5s;
}
.golden-heart:nth-child(4) { 
  left: 85%; 
  animation-delay: 3s; 
  animation-duration: 6.5s;
}
.golden-heart:nth-child(5) { 
  left: 35%; 
  animation-delay: 4s; 
  animation-duration: 5.8s;
}
.golden-heart:nth-child(6) { 
  left: 65%; 
  animation-delay: 0.5s; 
  animation-duration: 6.2s;
}

@keyframes floatGoldenHeart {
  0% { 
    opacity: 0; 
    transform: translateY(60px) scale(0.5) rotate(0deg); 
  }
  15% { 
    opacity: 1; 
  }
  85% { 
    opacity: 1; 
  }
  100% { 
    opacity: 0; 
    transform: translateY(-60px) scale(1.2) rotate(360deg); 
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Responsive Valentine Section */
@media (max-width: 768px) {
  .valentine-question {
    font-size: 28px;
    padding: 0 20px;
  }
  
  .golden-heart {
    font-size: 20px;
  }
}

/* Final Question Section */
.final-question-section {
  padding: 100px 60px;
  background: #f5f5f0;
}

/* Featured Menu Section */
.featured-menu {
  padding: 100px 60px;
  background: #f5f5f0;
  text-align: center;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 15px;
  color: #666;
  font-style: italic;
  margin-bottom: 60px;
}

.menu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 80px;
}

.menu-card {
  background: #fff;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
  border-radius: 8px;
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.menu-card-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.menu-card-locked {
  width: 100%;
  height: 350px;
  background: #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

.menu-card-content {
  padding: 30px;
  text-align: left;
}

.menu-card-chapter {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 10px;
}

.menu-card-title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #333;
}

.menu-card-description {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  font-style: italic;
}
  margin-bottom: 60px;
}

/* Final Question Section */
.final-question {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.heart-icon {
  font-size: 48px;
  margin-bottom: 20px;
  animation: heartbeat 1.5s ease-in-out infinite;
}

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

.final-question-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-style: italic;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.4;
}

.heart-emoji {
  display: inline-block;
  font-style: normal;
  animation: pulse 1.5s ease-in-out infinite;
}

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

.final-question-text {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
  font-style: italic;
}

.btn-yes-final {
  padding: 15px 80px;
  background: #d4af37;
  color: #000;
  border: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 4px;
}

.btn-yes-final:hover {
  background: #c19b2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

/* Fade animations */
.fade-out {
  animation: fadeOut 0.5s forwards;
}

.fade-in {
  animation: fadeIn 0.5s forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 20px 30px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 3px;
  }

  .btn-reserve {
    padding: 15px 40px;
    font-size: 14px;
    margin-top: 20px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero .script {
    font-size: 60px;
  }

  .golden-path-section {
    padding: 80px 30px 40px;
  }

  .golden-path-title {
    font-size: 40px;
  }

  .story-circle-container {
    width: 280px;
    height: 380px;
    margin: 40px auto;
  }

  .circle-item {
    width: 80px;
    height: 80px;
  }

  .circle-top {
    top: 15px;
  }

  .circle-bottom {
    bottom: 15px;
  }

  .circle-label {
    font-size: 9px;
    margin-top: 6px;
    letter-spacing: 0.5px;
  }

  .connecting-path-svg {
    transform: scale(0.8);
  }

  .golden-line {
    stroke-width: 1.5;
  }

  .story-preview-cards {
    grid-template-columns: 1fr;
  }

  .featured-menu {
    padding: 60px 30px;
  }

  .menu-cards {
    grid-template-columns: 1fr;
  }

  .final-question-section {
    padding: 60px 30px;
  }

  .final-question {
    padding: 40px 30px;
    margin: 0 20px;
  }

  .final-question-title {
    font-size: 28px;
  }
}

/* Favorite Button */
.favorite-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #d4af37;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #000;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  z-index: 999;
}

.favorite-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

/* Proposal Overlay */
.proposal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #faf5f0 0%, #f5f0e8 100%);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeInProposal 1s ease-out forwards;
  overflow: hidden;
}

.proposal-overlay.show {
  display: flex;
}

/* Floating Hearts Animation */
.floating-hearts {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-hearts .heart {
  position: absolute;
  font-size: 24px;
  animation: floatHeart 8s infinite linear;
  opacity: 0;
}

.floating-hearts .heart:nth-child(1) { left: 10%; animation-delay: 0s; }
.floating-hearts .heart:nth-child(2) { left: 20%; animation-delay: 1s; }
.floating-hearts .heart:nth-child(3) { left: 30%; animation-delay: 2s; }
.floating-hearts .heart:nth-child(4) { left: 70%; animation-delay: 3s; }
.floating-hearts .heart:nth-child(5) { left: 80%; animation-delay: 4s; }
.floating-hearts .heart:nth-child(6) { left: 90%; animation-delay: 5s; }

@keyframes floatHeart {
  0% { 
    opacity: 0; 
    transform: translateY(100vh) scale(0.3); 
  }
  10% { 
    opacity: 1; 
  }
  90% { 
    opacity: 1; 
  }
  100% { 
    opacity: 0; 
    transform: translateY(-10vh) scale(1.2); 
  }
}

/* Confetti Canvas */
.confetti-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

@keyframes fadeInProposal {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.proposal-content {
  text-align: center;
  max-width: 900px;
  padding: 40px;
  animation: slideUpProposal 1.2s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
  z-index: 3;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes slideUpProposal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.proposal-heart {
  font-size: 60px;
  margin-bottom: 30px;
  animation: proposalHeartbeat 2s ease-in-out infinite;
}

@keyframes proposalHeartbeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.1); }
  50% { transform: scale(1); }
  75% { transform: scale(1.05); }
}

.proposal-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 400;
  color: #2c1810;
  margin-bottom: 20px;
  line-height: 1.2;
}

.yes-highlight {
  color: #d4af37;
  font-style: italic;
  position: relative;
}

.yes-highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(45deg, #d4af37, #f0c674);
  animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes underlineGlow {
  0%, 100% { opacity: 0.7; transform: scaleX(1); }
  50% { opacity: 1; transform: scaleX(1.1); }
}

.proposal-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-style: italic;
  color: #2c1810;
  margin-bottom: 30px;
}

.proposal-text {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 40px;
  font-style: italic;
}

/* Photo Gallery Slider */
.proposal-gallery {
  width: 350px;
  margin: 0 auto 40px;
  position: relative;
}

.gallery-container {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.gallery-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease-in-out;
}

.gallery-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 20px 15px 15px;
  font-size: 14px;
  font-weight: 500;
}

.gallery-Controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding: 0 20px;
}

.gallery-btn {
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid #d4af37;
  color: #d4af37;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 18px;
}

.gallery-btn:hover {
  background: #d4af37;
  color: white;
  transform: scale(1.1);
}

.gallery-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #d4af37;
  transform: scale(1.2);
}

/* Ring Animation */
.ring-animation {
  margin: 30px 0;
  display: flex;
  justify-content: center;
}

.ring-box {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring {
  font-size: 48px;
  animation: ringSparkle 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.ring-shine {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.3) 0%, transparent 70%);
  animation: ringGlow 2s ease-in-out infinite;
}

@keyframes ringSparkle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-5deg) scale(1.1); }
  50% { transform: rotate(0deg) scale(1.05); }
  75% { transform: rotate(5deg) scale(1.1); }
}

@keyframes ringGlow {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 0.8; transform: scale(1.2); }
}

/* Interactive Timeline */
.proposal-timeline {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
  gap: 40px;
  position: relative;
}

.proposal-timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(to right, #d4af37, #f0c674, #d4af37);
  animation: timelineFill 3s ease-out forwards;
  transform: translateY(-50%);
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: timelineItemAppear 0.8s ease-out forwards var(--delay, 0s);
  opacity: 0;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ddd;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.timeline-dot.active {
  background: #d4af37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
  animation: timelinePulse 2s ease-in-out infinite;
}

.timeline-label {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  text-align: center;
}

@keyframes timelineItemAppear {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes timelineFill {
  from { width: 0; }
  to { width: 60%; }
}

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

/* Countdown to Response */
.response-countdown {
  margin: 30px 0;
  text-align: center;
}

.countdown-text {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
  font-style: italic;
}

.heartbeat-indicator {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff6b6b;
  animation: heartbeatPulse 1.5s ease-in-out infinite;
}

.pulse:nth-child(2) { animation-delay: 0.2s; }
.pulse:nth-child(3) { animation-delay: 0.4s; }

@keyframes heartbeatPulse {
  0%, 100% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
}

.proposal-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}

.proposal-btn {
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.proposal-btn.primary {
  background: linear-gradient(45deg, #d4af37, #f0c674);
  border: none;
  color: #000;
  font-size: 14px;
  padding: 18px 35px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  animation: primaryButtonGlow 3s ease-in-out infinite;
}

.proposal-btn.secondary {
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
}

.proposal-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.proposal-btn.secondary:hover {
  background: #d4af37;
  color: #000;
}

@keyframes primaryButtonGlow {
  0%, 100% { box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 12px 35px rgba(212, 175, 55, 0.7); }
}

/* Social Sharing */
.proposal-sharing {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.sharing-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.sharing-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.share-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Close Button */
.close-overlay-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 1px solid #ddd;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.3s;
}

.close-overlay-btn:hover {
  background: #ff6b6b;
  color: white;
  transform: rotate(90deg);
}

/* Success Animation */
.success-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d4af37, #f0c674);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.success-animation.show {
  display: flex;
  animation: successReveal 2s ease-out forwards;
}

.success-content {
  text-align: center;
  color: white;
  animation: successBounce 1s ease-out forwards;
}

.success-ring {
  font-size: 120px;
  margin-bottom: 30px;
  animation: successRingCelebration 2s ease-in-out infinite;
}

.success-title {
  font-size: 48px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.celebration-text {
  font-size: 18px;
  font-style: italic;
  opacity: 0.9;
}

@keyframes successReveal {
  from { opacity: 0; transform: scale(1.2); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes successBounce {
  0% { transform: translateY(100px) scale(0.5); opacity: 0; }
  60% { transform: translateY(-20px) scale(1.1); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes successRingCelebration {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-10deg) scale(1.1); }
  75% { transform: rotate(10deg) scale(1.1); }
}

/* Responsive for proposal overlay */
@media (max-width: 768px) {
  .proposal-title {
    font-size: 36px;
  }
  
  .proposal-subtitle {
    font-size: 32px;
  }
  
  .proposal-content {
    padding: 30px 20px;
  }
  
  .proposal-image {
    width: 250px;
    height: 200px;
  }
  
  .proposal-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .proposal-btn {
    width: 200px;
  }
}

/* No Response Overlay */
.no-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #faf5f0 0%, #f5f0e8 100%);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeInNo 1s ease-out forwards;
  overflow: hidden;
}

.no-overlay.show {
  display: flex;
}

.no-content {
  text-align: center;
  max-width: 600px;
  padding: 40px;
  animation: slideUpNo 1.2s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  z-index: 3;
}

.no-image {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.no-image-pic {
  width: 300px;
  height: 300px;
  object-fit: contain;
  animation: pulseNo 2s infinite;
  border-radius: 10px;
}

.no-text-image {
  font-size: 120px;
  font-weight: 900;
  color: #d4af37;
  text-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
  font-family: 'Playfair Display', serif;
  animation: pulseNo 2s infinite;
}

.no-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mistake-highlight {
  color: #d4af37;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

.yes-highlight {
  color: #d4af37;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

.no-message {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  color: #666666;
  margin-bottom: 40px;
  line-height: 1.4;
}

.no-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.no-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 250px;
  padding: 15px 30px;
}

.no-btn.primary {
  background: linear-gradient(45deg, #d4af37, #f4d03f);
  color: #1a1a1a;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.no-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.no-btn.secondary {
  background: transparent;
  color: #666666;
  border: 2px solid #d4af37;
}

.no-btn.secondary:hover {
  background: #d4af37;
  border-color: #d4af37;
  color: #ffffff;
}

.close-no-overlay-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(44, 44, 44, 0.1);
  color: #666666;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.close-no-overlay-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: scale(1.1);
  color: #d4af37;
}

@keyframes fadeInNo {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUpNo {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseNo {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive styles for No overlay */
@media (max-width: 768px) {
  .no-title {
    font-size: 36px;
  }
  
  .no-image-pic {
    width: 225px;
    height: 225px;
  }
  
  .no-content {
    padding: 30px 20px;
  }
  
  .no-btn {
    width: 80%;
    min-width: 200px;
  }
  
  .no-message {
    font-size: 18px;
  }
}
