@charset "UTF-8";

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

url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Indie_Flower&display=swap);
/* Custom Font Definition for Scarlett Love */
@font-face {
  font-family:'love-paradise';
  src:url(https://dl.dropbox.com/s/omzqymh9g6rqpv1/LOVEPARADISE-Two.ttf) format("truetype");
}

/* Custom Font Definition for Section Titles */
@font-face {
  font-family:'rain-kiss';
  src:url(https://dl.dropbox.com/s/9gt2ntgclqn5zq4/Rain%20Kiss.ttf) format("truetype");
}

/* Custom Font Definition for H1 and H3 */
@font-face {
  font-family:'angelface';
  src:url(https://dl.dropbox.com/s/pvxh5hqzpnhbzxe/Angelface%202.otf) format("opentype");
}

body {
  background-color:#ffe4f7;
  font-family:'Poppins',sans-serif;
  color:#ff69b4;
  text-align:center;
  position:relative;
  overflow-x:hidden;
  cursor:url(https://ani.cursors-4u.net/symbols/images9/sym829.gif),auto;
  scrollbar-width:thin;
  scrollbar-color:#ff69b4 #ffe4f7;
}

/* Falling Hearts Background */
body::before {
  content:"";
  background:url(https://i6.glitter-graphics.org/pub/707/707566g91mlkt7sm.gif) repeat;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  opacity:.6;
  z-index:-1;
}

/* WebKit Scrollbar Fallback */
::-webkit-scrollbar {
  width:10px;
}

::-webkit-scrollbar-track {
  background:#ffe4f7;
  border-radius:5px;
}

::-webkit-scrollbar-thumb {
  background:#ff69b4;
  border-radius:5px;
}

::-webkit-scrollbar-thumb:hover {
  background:#ff1493;
}

.container {
  max-width:800px;
  margin:0 auto;
  padding:20px;
  background:white;
  border-radius:15px;
  box-shadow:0 4px 8px rgba(0,0,0,0.1);
  border:4px solid #ffb6c1;
  position:relative;
}

.banner {
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:12px;
  position:relative;
  margin:0;
  padding:0;
}

.banner-text {
  position:absolute;
  top:0;
  right:0;
  left:auto;
  font-size:48px;
  font-family:'love-paradise',cursive;
  color:#ff1493;
  text-shadow:3px 3px 10px rgba(0,0,0,0.7);
  letter-spacing:2px;
  text-transform:uppercase;
  z-index:10;
}

.banner-heading {
  position:absolute;
  bottom:0;
  left:0;
  font-size:48px;
  font-family:'angelface',sans-serif;
  color:#ff69b4;
  text-shadow:3px 3px 10px rgba(0,0,0,0.7);
  margin:0;
  padding:0;
  z-index:10;
}

p {
  font-size:16px;
  padding:0 10px;
  text-align:left;
}

h1 {
  display:none;
}

/* Updated h2 styling to include Angelface for "Naughty & sweet kitten" */
.section h2 {
  font-family:'rain-kiss',sans-serif;
/* Default for section titles */
  font-size:32px;
  color:#ff69b4;
  margin:0 0 10px;
}

/* Special rule for "Naughty & sweet kitten" h2 to use Angelface */
.intro-h2 {
  font-family:'angelface',sans-serif;
  font-size:32px;
/* Matches other h2 sizes for consistency */
  color:#ff69b4;
  margin:5px 0;
/* Matches previous h3 margin for visual flow */
}

/* Center the specific schedule paragraph */
.schedule-text {
  text-align:center;
}

.links-container {
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.links a {
  display:inline-flex;
  align-items:center;
  background:#ff69b4;
  color:white;
  padding:10px 20px;
  margin:5px;
  border-radius:20px;
  text-decoration:none;
  font-weight:bold;
  transition:.3s;
  position:relative;
}

.links img {
  width:24px;
  height:24px;
  margin-left:6px;
  transform:translateX(-4px);
}

.links a:hover {
  background:#ff1493;
}

.bow {
  width:50px;
  height:auto;
  position:absolute;
}

.bow-left {
  left:-10px;
}

.bow-right {
  right:-10px;
}

.section {
  background:#fff0f5;
  margin:15px 0;
  padding:15px;
  border-radius:12px;
  border:2px dashed #ff69b4;
}

.title-container {
  position:relative;
  display:inline-block;
}

.sparkle {
  width:30px;
  height:auto;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
}

.sparkle-left {
  left:-40px;
}

.sparkle-right {
  right:-40px;
}

.tip-menu ul,.tippers ul {
  list-style-type:none;
  padding:0;
}

.tip-menu li,.tippers li {
  background:#ffb6c1;
  padding:8px;
  margin:5px;
  border-radius:10px;
  color:white;
  font-weight:bold;
}

.tippers-container {
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.crown {
  width:50px;
  height:auto;
  position:absolute;
}

.crown-left {
  left:-10px;
}

.crown-right {
  right:-10px;
}

/* Pastel Pink Lace Border */
.pinky {
  border-width:7px;
  border-style:solid;
  border-image:url(https://i.imgur.com/ROjUrNz.gif) 7 fill round;
}

.divider {
  margin:20px auto;
  width:80%;
  height:3px;
  background:linear-gradient(to right,#ff69b4,#ff1493);
  border-radius:3px;
}

.cute-gif {
  margin-top:20px;
}

.cute-gif img {
  width:120px;
  height:auto;
  border-radius:10px;
}

.naughty-gif img {
  width:120px;
  height:auto;
  border-radius:10px;
  margin-top:15px;
}