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

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #e8d5d5;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.background-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("../images/samanthakamani.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Decorative flourishes */
.decorative-flourish {
  position: fixed;
  pointer-events: none;
  opacity: 0.3;
  z-index: 1;
}

.flourish-top-left {
  top: 10%;
  left: 2%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.flourish-top-right {
  top: 15%;
  right: 2%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 5s ease-in-out infinite;
}

.flourish-bottom-left {
  bottom: 15%;
  left: 3%;
  width: 90px;
  height: 90px;
  border: 3px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.flourish-bottom-right {
  bottom: 20%;
  right: 3%;
  width: 110px;
  height: 110px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  animation: rotate 25s linear infinite reverse;
}

.flourish-swirl {
  position: fixed;
  width: 80px;
  height: 80px;
  border: 3px solid transparent;
  border-top-color: rgba(255,255,255,0.4);
  border-right-color: rgba(255,255,255,0.2);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.4;
  z-index: 1;
}

.swirl-1 {
  top: 40%;
  left: 5%;
  animation: rotate 15s linear infinite;
}

.swirl-2 {
  top: 60%;
  right: 5%;
  animation: rotate 18s linear infinite reverse;
}

/* Animations */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.5; }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Content */
.content-container {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  width: 70%;
  max-width: 900px;
  min-width: 300px;
}

h1 {
  display: none;
}

.buttons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.content-button {
  background: #7d5a7d;
  color: white;
  padding: 10px 14px;
  border: none;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(125, 90, 125, 0.5);
  text-align: center;
  line-height: 1.4;
}

.content-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(125, 90, 125, 0.7);
  background: #9a7a9a;
}

.back-btn {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(209, 104, 70, 0.9);
  color: white;
  text-decoration: none;
  border-radius: 20px;
  border: 2px solid white;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.back-btn:hover {
  background: white;
  color: #d16846;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

footer {
  position: fixed;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  font-weight: 500;
  z-index: 10;
}

/* Responsive */
@media (max-width: 992px) {
  .buttons-grid { grid-template-columns: repeat(2, 1fr); }
  .content-container { bottom: 60px; width: 80%; }
}

@media (max-width: 768px) {
  .buttons-grid { grid-template-columns: 1fr; gap: 12px; }
  .content-button { font-size: 0.9rem; padding: 14px 18px; }
  .content-container { bottom: 40px; width: 85%; }
  .background-wrapper { background-size: contain; }
}

@media (max-width: 480px) {
  .content-button { font-size: 0.85rem; }
  footer { font-size: 12px; }
}