* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Courier New, monospace;
}
 
.navbar::after {
  content: "";
  display: block;
  clear: both;
}

.navbar {
  background-color: rgba(0,0,0,0.85);
  padding: 0px 0px;

}

.rightnav a{
  float: right;
    padding: 14px 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.69);
    text-decoration: none;
    font-size: 17px;
    font-weight: 750;
}

.navbar ul{
  list-style: none;
  display: block;
  align-items: center;
}

.rightnav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: #08104f;
}

.TITLE {
  float: left;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 750;
}

.hobbies{
  background-image: url(aboutbg.jpg);
  background-size: cover;
  position: relative;
  height: 175vh;
}

.hobbies h1{
  padding-top: 150px;
  text-align: center;
  color: white;
  text-shadow: 0 0 10px white;
}

.hobbies p{
  padding-top: 10px;
  color: white;
  text-shadow: 0 0 10px white;
  max-width: 50ch;
  margin: 0 auto;
  text-align: center;
}

.star {
  width:25px;
    height:25px;
    background:white;
    border-radius:50%;
    position:absolute;
    cursor:pointer;
    box-shadow:0 0 10px white;
}

.Hobi1{ 
  top:40%; 
  left:20%; 
}

.Hobi2{ 
  top:52.5%; 
  left:40%; 
}
.Hobi3{ 
  top:45%;
  left:70%; 
}

.hobby-img{
  width: 200px;       
  height: auto;     
  top: -80px;         
  left: -30px;  
  position:absolute;
  border-radius:10px;
  opacity:0;
  transition:0.3s;
}

.star:hover .hobby-img{
  opacity:1;
  transform: scale(2);
}

.line {
  position: absolute;
  height: 2px;
  background: white;
  opacity: 0.4;
  transform-origin: 0 50%;
}

.line1 {
  top: 41%;     
  left: 21%;  
  width: 22%;    
  transform: rotate(27deg);
}

.line2 {
  top: 54%;     
  left: 41.2%;  
  width: 31%;    
  transform: rotate(-12deg);
}

.player{
  background-color: #252945;
  display:flex;
  gap:60px;
  align-items:center;
  font-family:sans-serif;
  min-height: 250px;
}


/* hide radios */
input{
  display:none;
}

/* CD rack */
.rack{
  background:#111;
  padding:20px;
  border-radius:10px;
  display:flex;
  flex-direction:column;
  gap:20px;
}

/* CD style */
.cd{
  width:120px;
  height:120px;
  border-radius:50%;
  cursor:pointer;
  position:relative;
  transition:0.4s;
}

/* hole */
.cd::after{
  content:"";
  width:22px;
  height:22px;
  background:black;
  border-radius:50%;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
}

#disc1:checked ~ .rack .cd[for="disc1"],
#disc2:checked ~ .rack .cd[for="disc2"],
#disc3:checked ~ .rack .cd[for="disc3"] {
    transform: translateX(40px);
    animation: spin 2s linear infinite;
}

/* spinning animation */
@keyframes spin{
  from{transform:translateX(40px) rotate(0deg);}
  to{transform:translateX(40px) rotate(360deg);}
}


.screen iframe {
  display: none;
  width: 420px;
  height: 315px;
  border-radius: 10px;
}


/* show correct video */
#disc1:checked ~ .screen .v1{ display:block; }
#disc2:checked ~ .screen .v2{ display:block; }
#disc3:checked ~ .screen .v3{ display:block; }

input[type="radio"] {
  display: none;
}

#disc1 + .cd { 
  background-image: url('cd1.jpg');
  background-size: cover;
  border-radius: 50%;
  }
#disc2 + .cd { 
  background-image: url('cd2.jpg'); 
  background-size: cover;
  border-radius: 50%;
}
#disc3 + .cd {
  background-image: url('cd3.jpg');
  background-size: cover;
  border-radius: 50%;
}

.cd {
  content:"";
  display:block;
  width:120px;
  height:120px;
  border-radius:50%;
}

.foodndrinks{
  text-align: center;
  padding: 50px 20px;
  background: url(foodndrinksbg.jpg);
}

.foodndrinks h2 {
  margin-bottom: 30px;
  color: #333;
}

/* item container */
.item {
  display: inline-block;
  margin: 20px;
  position: relative;
  cursor: pointer;
}

/* plate or glass container */
.plate, .glass {
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  width: 350px;   /* plate size */
  height: 350px;  /* plate size */
  transition: 0.3s;
  background-color: white;
}

/* smaller size for glass */
.glass {
  width: 150px;
  height: 150px;
  background-color: transparent;
}

/* image inside plate/glass */
.plate img, .glass img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.3s;
  border-radius: 50%;
}


/* show text on hover */
.item:hover .label {
  opacity: 0;
}

.plate::after, .glass::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: white;
  opacity: 0;
  transition: 0.3s;
  border-radius: 50%;
  z-index: 1;
}

/* show white overlay on hover */
.item:hover .plate::after,
.item:hover .glass::after {
  opacity: 1;
}

/* text label */
.label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: black;  /* text on white overlay */
  font-weight: bold;
  font-size: 1.2rem;
  opacity: 0;
  z-index: 2;
  transition: 0.3s;
}

/* show text on hover */
.item:hover .label {
  opacity: 1;
}

.SMA {
  background-color: #48517d;
  font-size: 30px;
  color: white;
  max-height: 75vh;
}

.schname {
  display: flex;              /* align children side by side */
  align-items: center;        /* vertically center the text with the logo */
  justify-content: center;    /* center the whole row horizontally */
  gap: 20px;                  /* space between logo and text */
  width: 100%;                /* take full screen width */
  flex-wrap: wrap;            /* wrap on smaller screens */
  padding: 20px;              /* optional spacing around */

}

.schname img {
  width: 150px;               /* logo size */
  height: auto;
}

.schname h2 {
  font-size: 1.5rem;
  font-family:Lucida Handwriting, cursive;          
  margin: 0;
  color: gold;                /* text color */
}

.quote {
  background-image: url(quotesbg.jpg);
  min-height: 75vh;
  font-family: Lucida Handwriting, cursive;
  background-size:cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  

}



