
@font-face {
  font-family: 'Mont Heavy DEMO';
  src: url('assets/fonts/Mont-HeavyDEMO.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('fonts/Roboto-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Reset */
body {
  margin: 0;
  padding: 0;
  font-family: 'Mont Heavy DEMO', sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.no-scroll {
  overflow: hidden;
}

.toggle-container {
  margin-top: 20px; 
}

.nav-container {
  background-color: rgba(48, 0, 2, .5);
  padding: 10px;
  border-radius: 5px;

}

.sidebar nav ul {
  list-style: none;
  padding: 0;
}

.sidebar nav ul li {
  margin-bottom: 20px;
}

.sidebar nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
}

.sidebar nav ul li a:hover {
  color: black;
}

/* Main layout */
main {
  margin-left: 220px;
  padding: 20px;
  min-height: 100vh;
  background-image: url('assets/images/Tenny-bg-dark.png');
  background-size: cover;       /* covers entire area */
  background-position: center;  /* centers the image */
  background-repeat: no-repeat; /* no tiling */
  color: white;
}

#intro {
  text-align: center;
  letter-spacing: 2px;
  margin: 10px;
}

#intro img {
  margin: 10px;
}

.main-img {
  max-width: 100%;
  width: 400px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 1);
}

.media-text {
  text-align: center;
  letter-spacing: 2px;
}

body.light .media-text {
  color: white; 
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin: 20px;
  align-content: center;
  justify-content: center;
}

.media-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,1);
  transition: transform 0.3s ease;
}

.media-grid img:hover {
  transform: scale(1.1);
  z-index: 2;
}


/* For the Media Video Here*/
.media-video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  box-shadow: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 1;
}

.media-video:hover {
  transform: scale(1.1);
  z-index: 2
}

/* Theme toggle button */
#theme-toggle {
  padding: 10px 20px;
  margin-bottom: 400px;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  background-color: #360000;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  font-family: 'Mont Heavy DEMO', sans-serif;
}

#theme-toggle:hover {
  background-color: white;
  color: darkred;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Dark mode toggle button styles */
body.light #theme-toggle {
  background-color: #360000;
  color: white;
}

body.light #theme-toggle:hover {
  background-color: black;
  color: white;
}

body.light main {
  background-image: url('assets/images/Tenny-bg.png');
  color: darkred;
}

body.light .sidebar {
  background-color: darkred;
}

body.light .sidebar a {
  color: white;
}

/* Menu button (hamburger) */
.menu-btn {
  display: block;
  position: fixed;
  top: 15px;
  left: 15px;
  background-color: white;
  color: darkred;
  border: none;
  padding: 10px 20px;
  font-size: 1.2rem;
  z-index: 1001;
  border-radius: 5px;
  cursor: pointer;
}

/* Sidebar base */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 100vh;
  background-color: darkred;
  padding: 20px;
  display: flex;
  flex-direction: column;
  padding-top: 45px;
  color: white;
  transform: translateX(-100%);
  z-index: 1000;
  transition: transform 0.3s ease;
}

/* Sidebar shown */
.sidebar.active {
  transform: translateX(0);
}

/* Adjust main content when sidebar is visible */
main {
  margin-left: 0px;
  transition: margin-left 0.3s ease;
}

/* If sidebar is active, move main */
.sidebar.active ~ main {
  margin-left: 220px;
}

/* On mobile */
@media screen and (max-width: 769px) {
  main {
    margin-left: 0px;
  }
}


/* For texts to na amazing*/
.text-container {
  margin: 20px auto;
  padding: 10px 10px;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  font-family: 'Mont Heavy DEMO', sans-serif;
  background-color: rgba(191, 0, 0, 0.4);
  color: white;
  width: 70%;
}


/* Biography Part*/
header {
  padding: 20px;
  text-align: center;
  background-color: darkred;
  color: white;
  letter-spacing: 3px;
}

body.light header {
  background-color: white;
  color: darkred;
}

.container{
  margin: 40px auto;
  padding: 20px;
  background-color: rgba(255, 186, 190, 0.1);
  border-radius: 15px;
}

body.light .container {
  background-color: rgba(255, 255, 255, 0.5);
}

.talent_data dl {
  margin-bottom: 20px; /* optional spacing */
}

.talent_data dt {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: white;
  padding: 8px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2); /* optional styling */
  text-align: left;
  border-bottom: width 100%;
}

.talent_data dd {
  display: block;
  margin: 0;
  padding: 8px 0 16px 0;
  font-size: 16px;
  color: white;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 1.5px;
}

.talent_data dd a{ 
  color: #063f5c; 
  text-decoration: underline;
  font-family: mont;
}


/*Specific for BIOGRPAHY */

.bio-img {
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.bio-img img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
}

/* PROFILE */

.profile_data dl{ 
  display: table; 
  width: 100%; 
  text-align: left; 
  color: white; 
  font-weight: bold; 
  border-bottom: 1px solid white;
}

.profile_data dt{ 
  display: table-cell; 
  width: 20em; 
  font-size: 16px; 
  line-height: 1.5em; 
  padding: 16px 20px; 
  position: relative;
  letter-spacing: 2px;
}

.profile_data dt:after{ 
  content:""; 
  position: absolute;
  background-color: white; 
  width: 1px; 
  height: 35px; 
  right: 0; 
  bottom: -8px;
}

.profile_data dd{ 
  display: table-cell; 
  width: calc(100% - 10em); 
  font-size: 16px; 
  line-height: 1.5em; 
  padding: 16px 20px;
  color: white;
  letter-spacing: 1px;
  font-family:'Roboto', sans-serif;
}

.profile_data dd a{ 
  color: red; 
  text-decoration: underline;
  letter-spacing: 2px;
  width: calc(100% - 10em); 
  font-size: 16px; 
  line-height: 1.5em; 
  padding: 16px 20px;
}

/* For Responsiveness */
@media screen and (max-width: 768px) {
  .talent_data dt {
    font-size: 18px;
  }

  .talent_data dd {
    font-size: 14px;
    padding-bottom: 12px;
  }
}

@media screen and (max-width: 768px) {
  .profile_data dl {
    display: block;
  }

  .profile_data dt,
  .profile_data dd {
    display: block;
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
  }

  .profile_data dt:after {
    display: none; /* remove the vertical divider on mobile */
  }
}


/* AUDIO PART */

#sound-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: white;
  color: #360000;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-family: 'Mont Heavy DEMO', sans-serif;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 2000;
}

#sound-toggle:hover {
  background-color: #360000;
  color: white;
}


/* other changes for light mode */
body.light .talent_data dt {
  color: darkred;
  border-bottom: 2px solid rgba(128, 0, 0, 0.3);
}

body.light .talent_data dd {
  color: #333;
}

body.light .talent_data dd a {
  color: #a00000;
}

/* Light Mode Styles for .profile_data */
body.light .profile_data dl {
  border-bottom: 1px solid rgba(128, 0, 0, 0.3);
}

body.light .profile_data dt {
  color: darkred;
}

body.light .profile_data dt:after {
  background-color: darkred;
}

body.light .profile_data dd {
  color: #333;
}

body.light .profile_data dd a {
  color: #a00000;
}