@font-face {
    font-family: 'Breathing';
    src: url('../Fonts/Breathing.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Mulish', sans-serif;
    margin: 0;
    background-color: #ffffff;
    color: #1c1c1c;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.junimo-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: auto;
  z-index: 999;
  pointer-events: none; 
}

/*   ICONS   */
.icons {
    display: flex;
    gap: 15px;
    padding-top: 20px;
    transition: filter 0.3s ease;
}

.icons img {
    width: 28px;
    height: 28px;
}

.icon:hover {
  fill: #ec0909;
}

/*   BUTTONS   */
.button-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 62px;
    flex-wrap: wrap;
}

.button {
    width: 160px;
    text-align: center;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 2px;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.3s;
}

.button:hover {
    background-color: #333333;
}

/*   ARROWS AND ANIMATION   */
.nav-arrows {
    display: flex;
    justify-content: center;
    gap: 200px;
    margin-top: 40px;
}

.nav-arrows img {
    width: 43px;
    height: 43px;
    cursor: pointer;
    transition: transform 0.25s ease-in-out;
}

.nav-arrows a:hover img {
    transform: scale(1.1);
}

/* DARK MODE STYLE */

body.dark-mode {
  background-color: #1e1e1e;
  color: #f0f0f0;
}

body.dark-mode .button,
body.dark-mode .email-button {
  background-color: #ffffff;
  color: #000000;
}

.dark-mode .icons img {
  filter: invert(1);
}

.dark-mode .nav-arrows img {
  filter: invert(1);
}

body.dark-mode a {
  color: #9dcfff;
}

body.dark-mode .interests-container {
    padding: 100px;
    background-color: #1e1e1e;
    text-align: center;
}

body.dark-mode .interests-heading {
    color: #ffffff;
}

body.dark-mode .uni-left {
  background-color: #1e1e1e;
}

body.dark-mode .uni-right {
  background-color: #1e1e1e;
}

.dark-mode .uni-heading,
.dark-mode .uni-description,
.dark-mode .read-more {
  color: white;
}

.dark-mode .uni-logo {
  filter: invert(1);
}

.dark-mode .read-more:hover {
    color: #a6a6a6; 
}

.dark-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #e1e1e1;
  color: #000;
  border: none;
  padding: 10px 15px;
  border-radius: 20px;
  font-family: 'Mulish', sans-serif;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  /* z-index: 1000; */
  transition: background 0.3s ease;
}

.dark-mode .dark-toggle {
  background-color: #333;
  color: #fff;
}

.dark-mode .junimo-floating {
filter: 
    drop-shadow(0 0 1px white) 
}

