/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #f8f9fa;
  color: #333; /* Default text color for light mode */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif; /* Modern, bold font for headings */
  font-weight: 700;
}

a { color: #f87a13; }
a:hover { color: #ffc918; }

/* Announcement Bar */
.announcement-bar {
  background-color: #272727;
  color: white;
  padding: 5px 0; /* Reduced padding (from 10px to 5px) */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}
.announcement-bar .social-icons {
  display: flex;
  align-items: center;
}

.announcement-bar .social-icons a {
  color: white;
  text-decoration: none;
  margin: 0 5px; /* Reduce margin for smaller screens */
}

.announcement-bar .newsletter-text {
  flex-grow: 1;
  text-align: center;
  white-space: normal; /* Allow text to wrap */
  overflow: visible; /* Ensure text is not hidden */
  text-overflow: clip; /* Remove ellipsis */
  margin: 10px 0; /* Add margin for spacing on smaller screens */
  padding: 0 10px; /* Add padding to prevent text from touching edges */
}

.announcement-bar .newsletter-text a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  display: inline-block; /* Ensure the link behaves like a block element */
  max-width: 100%; /* Prevent the link from overflowing */
  word-break: break-word; /* Allow long words to break and wrap */
}

/* Hide social media buttons on mobile */
@media (max-width: 768px) {
  .announcement-bar .social-icons {
      display: none; /* Hide the social media buttons */
  }
}

/* Hero Section */
.hero-section {
  height: 400px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #13a8f8, #13a8f8); /* Gradient background */
}

.carousel-item {
  height: 400px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer; /* Add cursor pointer for clickable images */
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 144, 39, 0.582);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 100%;
  width: 30px;
  height: 30px;
}

.carousel-indicators {
  bottom: 20px;
}

.carousel-indicators button {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
}

.carousel-indicators .active {
  background-color: black;
}

/* Cards */
.card {
  transition: transform 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for cards */
}

.card:hover {
  transform: scale(1.05);
}

/* Buttons */
.btn-primary {
  background-color: #0077b6;
  border-color: #0077b6;
}

.btn-primary:hover {
  background-color: #a75100;
  border-color: #023e8a;
}

.btn-purchase {
  background-color: #0077b6; /* Solid blue color */
  border-color: #0077b6;
  color: white;
  transition: all 0.3s ease;
}

.btn-purchase:hover {
  background-color: #023e8a; /* Darker blue on hover */
  border-color: #023e8a;
  color: white;
  transform: translateY(-2px); /* Slight lift effect */
}

.btn-signed-copy {
  background-color: #e76f24; /* Orange color */
  border-color: #e76f24;
  color: white;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-signed-copy:hover {
  background-color: #d45a1a; /* Darker orange on hover */
  border-color: #d45a1a;
  transform: translateY(-2px); /* Slight lift effect */
}

.btn-signed-copy i {
  margin-right: 8px; /* Space between icon and text */
}

/* Footer */
footer {
  background-color: #332117; /* Darker background for better contrast */
  color: #ffffff; /* White text for readability */
  padding: 40px 0; /* Keep internal padding */
  margin-top: 0; /* Remove top margin */
}

.footer-links a {
  color: #ffffff; /* White links for better contrast */
  text-decoration: none;
  margin: 0 10px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Footer Social Icons */
footer .social-icons img {
  width: 24px; /* Adjust size */
  height: 24px; /* Adjust size */
  vertical-align: middle; /* Align with other icons */
  margin: 0 4px; /* Add spacing around the SVG */
  filter: brightness(0) invert(1); /* Make the SVG white (for dark mode) */
}

/* Footer Social Icons */
footer .social-icons a {
  color: #E76F22 !important; /* Default color */
  text-decoration: none;
  font-size: 24px;
  transition: color 0.3s ease;
}

footer .social-icons a:hover {
  color: #FFC918 !important; /* Hover color */
}

.social-media-wrapper .svg-icon{
  width: 28px; /* Set SVG size */
  height: 28px; /* Set SVG size */
  vertical-align: top; /* Align with other icons */
}

/* SVG Icon Styling */
footer .social-icons .svg-icon {
  width: 28px; /* Set SVG size */
  height: 28px; /* Set SVG size */
  vertical-align: middle; /* Align with other icons */
  filter: brightness(0) invert(0.7) sepia(1) saturate(5) hue-rotate(0deg); /* Default orange color */
  transition: filter 0.3s ease; /* Smooth transition */
}

footer .social-icons a:hover .svg-icon {
  filter: brightness(0) invert(0.9) sepia(1) saturate(5) hue-rotate(0deg); /* Hover yellow color */
}


footer .social-icons a:hover img {
  filter: brightness(0) invert(0.8); /* Slightly lighter on hover */
}

.svg-icon {
  width: 23px; /* Set SVG size */
  height: 23px; /* Set SVG size */
  vertical-align: middle; /* Align with other icons */
  display: inline-block;
  mask-image: url('images/webtoon.svg'); /* Use the SVG as a mask */
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #ffffff; /* Default orange color */
  transition: background-color 0.3s ease; /* Smooth transition */
}

.social-media-wrapper .svg-icon {
  background-color: #E76F22; /* Default orange color */
}

.svg-icon:hover {
  background-color: #FFC918; /* Hover yellow color */
}


/* Promo Section */
.promo-section {
  padding: 30px 0; /* Reduce top and bottom padding */
}

.promo-section .promo-card {
  text-align: center;
  margin-bottom: 10px; /* Reduce margin between cards */
  transition: transform 0.3s ease; /* Add smooth transition */
}

.promo-section .promo-card:hover {
  transform: scale(1.05); /* Zoom effect */
}

.promo-section .promo-card img {
  width: 80%; /* Adjust this value to make the images smaller */
  height: auto;
  border-radius: 10px;
  margin: 0 auto; /* Center the images */
}

.promo-section .promo-card .btn {
  margin-top: 10px; /* Reduce top margin of buttons */
  margin-bottom: 10px; /* Reduce bottom margin of buttons */
}

.promo-section .row {
  margin-left: -5px; /* Reduce left margin */
  margin-right: -5px; /* Reduce right margin */
}

.promo-section .col-md-4 {
  padding-left: 5px; /* Reduce left padding */
  padding-right: 5px; /* Reduce right padding */
}

/* Social Media Section */
.social-media-wrapper {
  background-color: #272727; /* Dark background */
  width: 100%; /* Ensure it spans the full width */
  margin-bottom: 0; /* Remove bottom margin */
  padding-bottom: 0; /* Remove bottom padding */
}

#social-media {
  padding: 20px 0; /* Keep internal padding */
  color: white; /* White text for contrast */
}

#social-media .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px; /* Adds consistent spacing between icons */
}

#social-media .social-icons a {
  color: #e76f24 !important; /* Default color: Orange */
  text-decoration: none;
  font-size: 24px; /* Adjust icon size */
  transition: color 0.3s ease; /* Smooth color transition on hover */
}

#social-media .social-icons a:hover {
  color: #ffc918 !important; /* Hover color: Yellow */
}

#social-media .text-center a {
  color: #3b9dd1; /* Blue color for the email link in light mode */
  text-decoration: none; /* Remove underline */
}

#social-media .text-center a:hover {
  text-decoration: underline; /* Add underline on hover */
}

.social-media-wrapper .container,
footer .container {
  padding-top: 0; /* Remove top padding from container */
  padding-bottom: 0; /* Remove bottom padding from container */
}

/* About Us Page */
.adventure-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.adventure-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.adventure-card {
  background: rgb(243, 216, 200);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.adventure-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.adventure-card img {
  width: 120px; /* Adjust size as needed */
  height: 120px; /* Adjust size as needed */
  border-radius: 10px; /* Slightly rounded corners for a softer look */
  margin-bottom: 20px;
  border: 4px solid #e76f24; /* Orange border */
  transition: transform 0.3s ease;
}

.adventure-card:hover img {
  transform: scale(1.1); /* Slight zoom effect on hover */
}

.adventure-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
}

.adventure-card p {
  font-family: 'Roboto', sans-serif;
  color: #666;
  margin-bottom: 20px;
}

.adventure-card .btn {
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 25px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.adventure-card .btn:hover {
  background-color: #d45a1a; /* Darker orange on hover */
  transform: scale(1.05); /* Slight button scale effect on hover */
}

/* Cameo Page */
.cameo-list {
  column-count: 3; /* Three columns for desktop */
  column-gap: 2rem; /* Space between columns */
}

@media (max-width: 768px) {
  .cameo-list {
      column-count: 1; /* Single column for mobile */
  }
}

.cameo-list li {
  margin-bottom: 0.5rem; /* Space between list items */
  break-inside: avoid; /* Prevent items from breaking across columns */
}

/* Media Kit */
.hightlitedData {
  font-size: 2rem;
  font-weight: bold;
  color: #007bff;
}

.card-body ul li i {
  font-size: 2rem; /* Larger icons */
}

.card-body ul li {
  font-size: 1.2rem;
}

.card-body ul li span {
  font-size: 1.5rem;
}

.text-info {
  color: #17a2b8 !important;
}

/* Navbar */
.navbar {
  background-color: #d45a1a; /* Darker orange */
  color: white; /* White text */
  padding: 10px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 50px;
}

.navbar-nav .nav-link {
  color: white !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .announcement-bar {
      flex-direction: column; /* Stack items vertically on smaller screens */
      align-items: center;
  }

  .announcement-bar .newsletter-text {
      text-align: center; /* Ensure text is centered */
      margin: 10px 0; /* Add margin for spacing */
  }

  .navbar-nav {
      flex-direction: column; /* Stack nav items vertically on smaller screens */
      align-items: center;
  }

  .navbar-nav .nav-link {
      margin: 5px 0; /* Add spacing between nav items */
  }
}

/* Navbar Toggler (Hamburger Button) */
.navbar-toggler {
    margin-right: 10px; /* Add some spacing between the button and the logo */
    border: none; /* Remove default border */
    padding: 0.5rem; /* Add padding for better click area */
}

.navbar-toggler:focus {
    box-shadow: none; /* Remove the default focus outline */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em; /* Adjust icon size */
    height: 1.5em; /* Adjust icon size */
}

/* Custom Styles for Linktree Replacement */
/* Horizontal Layout for Cards */
.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer; /* Make the card look clickable */
  background-color: #e9ecef; /* Slightly darker gray */
  padding: 0.5rem; /* Reduce padding for a more compact look */
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  background-color: #dee2e6; /* Slightly darker on hover */
}

.card-body {
  padding: 2rem;
}

.card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-text {
  font-family: 'Roboto', sans-serif;
  color: #666;
  margin-bottom: 1.5rem;
}

.btn-primary {
  background-color: #e76f24;
  border-color: #e76f24;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #d45a1a;
  border-color: #d45a1a;
  transform: scale(1.05);
}

/* Link Buttons for the social medias */
.link-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping into multiple rows */
  justify-content: center; /* Center the buttons horizontally */
  gap: 10px; /* Space between buttons */
  margin: 20px auto; /* Center the container */
  max-width: 500px; /* Maximum width for the container */
  padding: 10px; /* Add some padding to the container */
}

.link-buttons a {
  color: #333; /* Dark color for better visibility */
  transition: color 0.3s ease;
  flex: 1 1 auto; /* Allow buttons to shrink or grow as needed */
  text-align: center; /* Center the icons */
  padding: 5px; /* Add padding for better click area */
  box-sizing: border-box; /* Include padding in width calculations */
  max-width: 60px; /* Maximum width for each button */
  max-height: 60px; /* Maximum height for each button */
  display: flex; /* Use flexbox for centering */
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
}

.link-buttons a:hover {
  color: #e76f24; /* Orange on hover */
}

/* Smaller Icons */
.link-buttons a i {
  font-size: 1.1rem; /* Adjust icon size (default is 1em, fa-2x is 2em) */
}

/* Custom CSS for the Webtoon SVG */
.link-buttons img {
  width: 24px; /* Adjust size */
  height: 24px; /* Adjust size */
  vertical-align: middle; /* Align with other icons */
  margin: 0 0px; /* Add spacing around the SVG */
}

/* Horizontal Layout for Cards */
.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer; /* Make the card look clickable */
  background: linear-gradient(135deg, #f8f9fa, #e9ecef); /* Subtle gradient */
  padding: 0.5rem; /* Reduce padding for a more compact look */
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #e9ecef, #f8f9fa); /* Reverse gradient on hover */
}

/* Card Link Containers */
.card-link {
  display: block; /* Make the <a> tag a block-level element */
  max-width: 500px; /* Maximum width for the card containers */
  margin: 0 auto; /* Center the cards horizontally */
  text-decoration: none; /* Remove underline */
  color: inherit; /* Inherit text color */
}

.card-link .card {
  width: 100%; /* Ensure the card takes up the full width of its container */
}

/* Icon Styling */
.card i {
  color: #e76f24; /* Orange color for icons */
  margin-right: 1rem; /* Space between icon and text */
}

/* Text Styling */
.card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 0.25rem; /* Reduce margin for compactness */
  font-size: 1.1rem; /* Slightly smaller title */
  color: #333; /* Dark text for contrast */
}

.card-text {
  font-family: 'Roboto', sans-serif;
  color: #666;
  margin-bottom: 0; /* Remove bottom margin for compactness */
  font-size: 0.9rem; /* Smaller text */
}

/*Events section of site*/
.events-section {
  padding: 60px 0;
}

.events-section h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.event-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.event-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.event-card p {
  font-family: 'Roboto', sans-serif;
  color: #666;
  margin-bottom: 0;
}

.event-card .event-date {
  font-weight: bold;
  color: #e76f24; /* Orange color for dates */
}

.event-image {
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
}

.event-content {
  padding-left: 40px; /* Add spacing between image and events */
}

@media (max-width: 767.98px) {
  .event-content {
    padding-left: 0; /* Remove padding on mobile */
    margin-top: 20px; /* Add spacing between image and events on mobile */
  }
}