.btn {
    background-color: #ffbb99;
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    font-size: 18px;
    margin: 4px 2px;
    opacity: 1;
    transition: 0.3s;
  }
  
  .btn:hover {opacity: 0.6}



.slideshow-container {
  position: relative;
  max-width: 50%;
  margin: auto;
  overflow: hidden;
}

.slide {
  display: none; /* Hide all slides by default */
  text-align: center;
}

.slide img {
  width: 50%; /* Make the image responsive */
  height: auto;
}

@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

.fade {
  animation: fade 1.5s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-toggle {
      display: block;
  }
  nav.nav-menu {
      display: none;
  }
  nav.nav-menu.active {
      display: block;
  }
  nav ul {
      flex-direction: column;
      align-items: center;
  }
  nav ul li {
      margin: 10px 0;
  }
}



body {
	font-family: 'Pacifico', sans-serif;
}


/* General Styles */

/* General Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

header {
  background-color: #ffccb3;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* Logo */
#logo {
  height: 50px;
}

/* Menu Styles */
#menu {
  display: flex;
  gap: 20px;
}

#menu a {
  text-decoration: none;
  font-family: Pacifico, sans-serif;
  color: #4d1a00;
  font-size: 2rem;
}


/* Hamburger Button */
#hamburger {
  display: none;
  font-size: 3rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #4d1a00;
}

/* Responsive Menu (Mobile) */
@media screen and (max-width: 768px) {
  #hamburger {
      display: block;
  }

  #menu {
      display: none;
      flex-direction: column;
      background-color: #ffccb3;
      position: absolute;
      top: 60px;
      right: 20px;
      padding: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  #menu.show {
      display: flex;
  }

  #menu a {
      margin: 10px 0;
  }
}

@media (max-width: 768px) {
  .grid {
      display: block; /* Stack items on smaller screens */
  }
}

/* makes a section responsive on mobile, having trouble with about-me section*/
.responsive-section {
  width: 80%; /* Relative to the viewport width */
  margin: 0 auto; /* Center the section */
  padding: 20px;
}

/* Container for the dropdown menu */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Style for the dropdown button */
.dropdown-button {
  background-color: #ffbb99;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown-button:hover {
  background-color: #ffbb99;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffeee6;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Dropdown links */
.dropdown-content a {
  color: black;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* COMMENTED THIS OUT CAUSE IT WASN'T WORKING RIGHT 

.tab {
  overflow: hidden;
  border: 1px solid #ffbb99;
  background-color: #ffeee6;
}


.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}


.tab button:hover {
  background-color: #ffeee6;
}


.tab button.active {
  background-color: #ff9560;
}


.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ffbb99;
  border-top: none;
}
*/

.tab {
  display: flex; /* Arrange buttons in a row */
  gap: 10px; /* Optional: Add spacing between buttons */
  background-color: #ffeee6; /* Optional: Add background for the tab area */
  padding: 10px; /* Optional: Add padding around buttons */
  border-bottom: 1px solid #ffbb99; /* Optional: Add a border below tabs */
}

.tab button {
  background-color: inherit;
  border: 1px #ff9560;
  outline: none;
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.tab button:hover {
  background-color: #ffbb99;
}

.tab button.active {
  background-color: #ff9560;
}   

.tabcontent {
  display: none; /* Hide all content by default */
  padding: 10px;
  background-color: #ffddcc;
  border: 1px solid #ff9560;
  border-top: none; /* Avoid double border where tab and content meet */
}