/* RESET */
html, body {
  margin: 0;
  padding: 0;
}

/* BODY */
body {
  background-image: url(imgs/face-03.png);
  background-color: #c27798;
  font-family: Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

/* ===== MAIN GRID ===== */
.container {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 100px auto;
}

/* Right column stack */
.right-column {
  display: grid;
  grid-template-rows: auto auto;
  gap: 20px;
}

/* ===== NORMAL BOXES ===== */
.box {
  background: #fdf6ec;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  padding: 16px;
  position: relative;
  font-size: 20px;
  text-align: center;
}

/* ===== SIZES ===== */
.box1 {
  height: 415px;
  background-color: #a8c8a8;
  position: relative;
  background-image: url(imgs/flowerss1.jpg);
  background-size: cover;      
  background-position: center;  
  background-repeat: no-repeat;
              /*(c) solielios*/
border-width:12px;
border-style:solid;
border-image: url("https://i.imgur.com/gTFIwdW.png") 11 fill round; 

}

.box1-content{
  display: flex;
  height: 100%;
}

.inner-rect1 {
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
    width: 300px;
    height: 350px;
    border-radius: 10px;
    background: #eff9bb;
    border: dashed #767b59;
}

.inner-rect2 {
    font-family: "JetBrains Mono", monospace;
    position: absolute;
    left: 350px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 20px;
    margin-right: 20px;
    width: 400px;
    height: 350px;
    border-radius: 10px;
    background: #f5f0d1;
    border: dashed #767b59;
}

.box4 {
  width: 100%;
  aspect-ratio: 1 / 1;       
  background: transparent;
  padding: 0;
  overflow-y: auto;

  scroll-snap-type: y mandatory;
}
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.15); 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #e6e295; 
  border-radius: 20px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #719071; 
}

/* Smaller rectangle */
.box2 {
  height: 70px;
  background-color: #d2f5d2;
  background-image: url(imgs/bloom%20pic.jpg);
  background-size: cover;        
  background-position: center;   
  background-repeat: no-repeat;
                /*(c) solielios*/
border-width:12px;
border-style:solid;
border-image: url("https://i.imgur.com/gTFIwdW.png") 11 fill round; 
}

/* Bottom box */
.box3 {
  grid-column: 1 / -1;
  height: 120px;
  background-color: #f5f0d1;
  border: groove 10px #977bb2;
}

/* ===== HEART ITEMS ===== */
.heart {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  scroll-snap-align: start;
}

.heart img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.my-menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  flex-direction: column;
  gap: 10px;

  z-index: 10;
}

/* menu links */
.my-menu a {
  display: flex;
  align-items: center;
  gap: 6px;

  text-decoration: none;
  color: #0f482d;
  font-size: 14px;
}

/* small heart icon */
.menu-heart {
  color: #de9cb1;
  font-size: 20px;
}

/* Social menu tweaks (isolated) */
.social-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Mini GIF icons */
.menu-gif {
  width: 18px;        
  height: 18px;
  object-fit: contain;
}

.updates-panel {
  width: 100%;
  max-width: 275px;
  margin-left: 10px;
  margin-top: 15px;
  margin-bottom: 20px;
  background: #d27aa1;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 5px 12px #787a70;
  font-family: sans-serif;
  height: 320px;
  display: flex;
  flex-direction: column;
}

.updates-title {
  margin: 0 0 12px;
  font-size: 1.2rem;
  text-align: center;
  color: rgba(0, 0, 0, 0.41);
}

.update-post {
  background: #f0f3e4;
  border: solid rgba(0,0,0,0.15);
  border-radius: 5px;
  padding: 10px 12px;
  margin-bottom: 10px;
}

.update-text {
  margin: 0;
  font-size: 0.95rem;
  color: #32114f;
}

.update-time {
  margin: 4px 0 0;
  font-size: 0.75rem;
  opacity: 0.6;
}

.updates-scroll {
  flex: 1;
  overflow-y: auto;
  padding-right: 4px;
}

.updates-scroll::-webkit-scrollbar {
  width: 6px;
}

.updates-scroll::-webkit-scrollbar-thumb {
  background: #983f86;
  border-radius: 10px;
}
.left-logo {
  position: absolute;
  top: -70px;              
  left: 20px;              
  z-index: 20;
}

.left-logo img {

  display: block;
}
/* FOOTER TICKER */
.ticker {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker-move 12s linear infinite;
}

.ticker-track span {
  font-size: 20px;
  color: #5b3b7a;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.ticker-track img {
  height: 40px;        
  width: auto;
  display: block;
}
/* ANIMATION */
@keyframes ticker-move {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.inner-rect2-content{
  width: 100%;
  height: 250px;
  color: #212608;
  background-color: #b8de9c;
  border: solid 2px #608040;
  border-radius: 10px;
  margin-left: 10px;
  margin-right: 10px;
  max-width: 375px;
  overflow-y: auto;
  font-size: small;
}

.floating-img {
  position: absolute;   
  top: 350px;
  left: 65px;

  width: 200px;
  height: auto;

  z-index: 50;       
  pointer-events: none; 
}
.floating-img2 {
  position: absolute;   
  top: 50px;
  left: 900px;

  width: 200px;
  height: auto;

  z-index: 50;       
  pointer-events: none; 
}











