/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: linear-gradient(135deg, #FDEFE9 0%, #EFC0BB 100%);
  color: #313D26;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

/* Rose Logo Overlay */
body::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 35%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: url('altlogo\ copy\ 2.svg') no-repeat center/contain;
  opacity: 0.08; /* subtle watermark effect */
  pointer-events: none;
  z-index: 0;
}

/* Main Content Wrapper */
.main-content {
  position: absolute;
  top:20%;
  left:55%;
  text-align: center;
}

/* Title Styling */
h1 {
  font-family: 'Georgia', serif;
  font-size: 3rem;
  color: #e6b5b0;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.05);
}

/* Links Container */
ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* Individual Links */
ul li a {
  text-decoration: none;
  font-size: 1.5rem;
  padding: 0.75rem 1.5rem;
  color: #313D26;
  background: linear-gradient(145deg, #DDE6D5, #A4B99A);
  border-radius: 16px;
  box-shadow: 4px 4px 12px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  backdrop-filter: blur(2px);
}

ul li a:hover {
  background: linear-gradient(145deg, #A4B99A, #DDE6D5);
  color: #FDEFE9;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 6px 6px 16px rgba(0,0,0,0.12);
}

/* Optional: Responsive adjustments */
@media (max-width: 600px) {
  h1 {
    font-size: 2.5rem;
  }
  
  ul li a {
    font-size: 1.25rem;
    padding: 0.6rem 1.2rem;
  }
}