@charset "UTF-8";

/* Link Styling: Hover, Active, Visited */
a:link,a:active,a:hover {
  color:#f4b6c2;
/* Soft pink color for links */
}

a:visited {
  color:#f78fb3;
/* Light pink for visited links */
}

/* Body Background and Text Styling */
body {
  background-color:#FFD1DC;
/* Soft pink background */
  background-image:url(https://i.imgur.com/pWsXcZi.gif);
/* Background GIF */
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
  color:#666666;
/* Grey text for general content */
  font-family:'Verdana',sans-serif;
  font-weight:normal;
  font-style:normal;
  font-size:12px;
  margin:0;
  padding:0;
}

/* Profile Section Content Styling */
.profile_section_content {
  color:#666666;
  padding:15px;
  margin:10px;
  background-color:rgba(255,255,255,0.7);
/* Slightly transparent white */
  border-radius:10px;
  box-shadow:0 0 10px rgba(244,182,194,0.3);
/* Soft glow effect */
}

/* Profile Section Background Styling */
.profile_section_background {
  background-color:transparent;
  background-color:#FFFFFF;
  opacity:1;
}

/* Image with Border Radius and Shadow */
.img_radius_shadow {
  border-radius:10px;
  box-shadow:0 0 10px rgba(244,182,194,0.4);
/* Soft shadow */
}

/* Profile Section Heading (For Titles) */
.profile_section_content .heading {
  padding:10px;
  background-color:#f4b6c2;
/* Soft pink background */
  color:#FFFFFF;
  font-family:'Verdana',sans-serif;
  font-weight:bold;
  font-size:18px;
  text-align:center;
  border-radius:5px;
  box-shadow:0 0 10px rgba(244,182,194,0.2);
/* Soft glow around headers */
  text-shadow:0 0 5px rgba(255,255,255,0.4);
/* Light text shadow */
}

/* Content Padding */
.content {
  padding:20px;
}

/* News Feed Section Styling */
.my_mfc_news_feed {
  width:100%;
  height:330px;
  background-color:rgba(255,255,255,0.5);
/* Soft background for feed */
  box-shadow:0 0 10px rgba(244,182,194,0.3);
/* Glow effect */
  border-radius:10px;
}

/* Additional Tip Menus Section Styling */
#tip-menus {
  display:flex;
  justify-content:center;
  gap:20px;
  margin-top:30px;
}

.tip-menu {
  background-color:rgba(255,255,255,0.3);
  padding:20px;
  border-radius:15px;
  flex:1;
  margin:10px;
  box-shadow:0 0 15px rgba(244,182,194,0.2);
}

.tip-menu h3 {
  text-align:center;
  color:#f4b6c2;
}

.tip-menu ul {
  list-style-type:none;
  padding:0;
  color:white;
}

.tip-menu ul li {
  text-align:center;
  font-size:1rem;
}

/* Social Links Section */
#lillies-links {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:20px;
  margin-top:30px;
}

#lillies-links a {
  background-color:#f4b6c2;
  color:white;
  text-decoration:none;
  padding:10px 20px;
  border-radius:30px;
  font-weight:bold;
  transition:all .3s ease;
}

#lillies-links a:hover {
  background-color:#f78fb3;
  box-shadow:0 0 10px #f4b6c2;
}

/* MFC Share Content Preview Section */
#share-preview {
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  margin-top:30px;
}

.rose-card {
  background:rgba(255,255,255,0.2);
  border-radius:10px;
  box-shadow:0 0 15px rgba(244,182,194,0.2);
  padding:20px;
  width:22%;
  text-align:center;
  margin:10px;
}

.rose-card img {
  width:100%;
  border-radius:10px;
}

.rose-card p {
  color:white;
  font-size:1.1rem;
  margin-top:10px;
}

.watch-button {
  background-color:#f4b6c2;
  color:white;
  padding:10px 18px;
  text-decoration:none;
  display:inline-block;
  margin-top:8px;
  font-weight:bold;
  border-radius:30px;
  transition:all .3s ease;
}

.watch-button:hover {
  background-color:#f78fb3;
  box-shadow:0 0 10px #f4b6c2;
  transform:scale(1.05);
}

/* Schedule Section */
#schedule {
  margin-top:40px;
  text-align:center;
}

#schedule ul {
  list-style-type:none;
  padding:0;
  font-size:1.2rem;
}

#schedule ul li {
  margin:10px 0;
  color:white;
}