/*Homepage Styles*/

/* Styles for the main body of the page */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #333;
}

/* Styles for all links */
a {
    color: #0066cc; /* Distinct blue for visibility */
    text-decoration: none; /* Removes underline for hover effect */
    font-weight: bold; /* Makes links visually prominent */
    white-space: nowrap; /* Prevents link text from wrapping */
}

a:hover {
  color: #003399; /* Darker blue on hover */
  text-decoration: underline; /* Adds underline for clear identification */

}

/* Styles for the inline audio player in the top banner */
/* This class customizes the player to be small and positioned on the far left side of the top banner */
.audio-player {
    display: inline-block; /* Ensures the player is inline with the text */
    width: 100px; /* Sets a small width for the player */
    height: 25px; /* Adjusts height to make it compact */
    margin-left: 10px; /* Adds spacing from the left edge of the screen */
    margin-right: 15px; /* Adds spacing between the player and the text */
    vertical-align: middle; /* Aligns it vertically with the text */
    color: #FFD580; /* Light orange color for the player body */
    border: 1px solid #CC7A00; /* Subtle border to blend with the banner theme */
    border-radius: 12.5px; /* Adds rounded corners to the player */
}

/* Styles for the top banner displaying important information */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FF9900; /* Updated to match the original background color */
    color: white;
    padding: 10px 0;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 1000;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    display: flex; /* Enables alignment of child elements */
    align-items: center; /* Vertically aligns child elements */
    justify-content: flex-start; /* Aligns items to the start */
    gap: 15px; /* Adds spacing between elements */
}

.banner-text {
    flex-grow: 1; /* Ensures the text spans the available space */
    text-align: center; /* Centers the text within its space */
    margin: 0;
}

/* Styles for the navigation menu */
.main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #666;
    padding: 10px 10px;
    margin-top: 50px; /* Adjusted to meet the bottom of the top banner */
    z-index: 999;
}

/* Styles for the navigation list */
.navigation-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Styles for each navigation menu item */
.navigation-item {
    margin: 0 10px;
}

/* Styles for navigation menu links */
.navigation-link {
    color: white;
    text-decoration: none; /* Removes underline for clear identification */
    font-size: 1.34rem;
    font-weight: bold;
    transition: color 0.3s;
    white-space: nowrap; /* Prevents link text from wrapping */
}

/* Hover effect for navigation menu links */
.navigation-link:hover {
    color: #FF9900;
    text-decoration: underline; /* Adds underline for clear identification */
}

/* Styles for the logo and DOG text container */
.logo-item a {
    display: flex;
    align-items: center;
    font-size: 2.14rem;
    font-weight: 900;
    color: white;
    text-decoration: none; /* Removes underline for hover effect */
    gap: 15px;
}

/* Styles for the logo image */
.logo-image {
    height: 80px;
    width: auto;
    margin-bottom: 5px;
}

/* Styles for social media icons */
.social-icon {
    height: 32px;
    width: 32px;
    margin: 0 10px;
    transition: transform 0.3s;
}

/* Hover effect for social media icons */
.social-icon:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    /* Styles for navigation menu on smaller screens */
    .main-navigation {
        flex-direction: column;
        padding: 5px;
    }

    /* Styles for navigation list on smaller screens */
    .navigation-list {
        flex-direction: column;
        align-items: center;
    }

    /* Styles for navigation items on smaller screens */
    .navigation-item {
        margin: 10px 0;
    }

    /* Styles for the logo image on smaller screens */
    .logo-image {
        margin-bottom: 5px;
    }

    /* Adjustments for the dog character images */
    .dog-character {
        max-height: 80%; /* Adjusts size for smaller screens */
    }
}

/* Styles for the dog character section */
.dog-character-section {
    background-color: #444; /* Theme color to match the site */
    height: 160px; /* Fixed height, twice the height of the navigation bar */
    display: flex;
    justify-content: center;
    align-items: center;
}

.dog-character-container {
    display: flex;
    justify-content: space-evenly; /* Evenly spaces the images */
    align-items: center;
    height: 100%; /* Ensure it fills the section */
    overflow: hidden; /* Hides images that don't fit */
}

.dog-character {
    max-height: 100%; /* Ensures images fit within the section height */
    width: auto; /* Maintains aspect ratio */
    flex-shrink: 0; /* Prevents images from shrinking */
}

/* Styles for the Contract Specs and Tokenomics section */
.contract-specs {
  display: flex;
  flex-wrap: wrap; /* Allows items to wrap to the next line */
  justify-content: center; /* Centers the items */
  align-items: center; /* Aligns items vertically */
  gap: 10px; /* Reduces space between items for better use of space */
  background-color: #ffd580d0; /* Semi-transparent light orange */
  padding: 10px 0; /* Vertical padding */
  font-size: 1rem; /* Default font size */
}

.spec-link, .spec-text {
  color: #FF9900; /* Orange text color */
  text-decoration: none;
  font-weight: bold; /* Makes the links stand out */
  text-align: center; /* Centers the text within its container */
  padding: 5px; /* Adds some spacing around the text */
}

.spec-link:hover {
  text-decoration: underline; /* Adds underline on hover for better UX */
  color: #CC7A00; /* Slightly darker orange on hover */
}



/* CEX Listings Section */
.cex-listings-title {
  font-size: 1.5rem;
  color: #333; /* Neutral dark color for the title */
  margin-bottom: 5px;
  text-align: center;
}

.listing-logo-container {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
  justify-content: space-evenly; /* Space logos evenly */
  align-items: center;
  gap: 20px; /* Space between logos */
}

.listing-logo {
  height: 53px; /* Standard height for logos */
  width: auto; /* Maintain aspect ratio */
  margin: 10px; /* Space around logos */
  transition: transform 0.3s ease; /* Smooth hover effect */
}

.listing-logo:hover {
  transform: scale(1.1); /* Slight zoom on hover */
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .contract-specs {
    font-size: 0.9rem; /* Slightly smaller font size for medium screens */
    gap: 8px; /* Adjust spacing for smaller screens */
  }
}

@media (max-width: 576px) {
  .contract-specs {
    font-size: 0.8rem; /* Smaller font size for mobile screens */
    gap: 5px; /* Tighter spacing for compact layouts */
  }
}

/* Styles for the main project description area */
.project-description {
  background-color: #fdf5e6; /* Cream/off-white background color */
  text-align: center;
  padding: 20px 10px;
  line-height: 1.6;
  font-size: 1.2rem;
  color: #333;
  font-family: 'Roboto', sans-serif;
}

.project-text-container {
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .project-description {
    font-size: 16px;
    padding: 15px;
  }
}

/* Styles for the listing area */
.listings-section {
  background-color: #ffffff; /* White background */
  padding: 10px 20px; /* Padding around the section */
  text-align: center; /* Center the title */
  margin-top: 5px; /* Space above the section */
}

.spot-listings-title, .listing-logo-title {
  font-size: 1.5rem;
  color: #333; /* Neutral dark color for the title */
  margin-bottom: 5px;
}

.listing-logo-container {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
  justify-content: space-evenly; /* Space logos evenly */
  align-items: center;
  gap: 20px; /* Space between logos */
}

.listing-logo {
  height: 53px; /* Reduced height for logos by 1/3 */
  width: auto; /* Maintain aspect ratio */
  margin: 10px; /* Space around logos */
  transition: transform 0.3s ease; /* Smooth hover effect */
}

.listing-logo:hover {
  transform: scale(1.1); /* Slight zoom on hover */
}

@media (max-width: 768px) {
  .listing-logo {
    height: 40px; /* Smaller logos for smaller screens */
  }
}

@media (max-width: 480px) {
  .listing-logo {
    height: 33px; /* Further reduced size for very small screens */
  }
}

@media (max-width: 768px) {
  .listing-logo {
    height: 40px; /* Smaller logos for smaller screens */
  }
}

@media (max-width: 480px) {
  .listing-logo {
    height: 33px; /* Further reduced size for very small screens */
  }
}

/* Styles for the call to action button*/
.cta-container {
  text-align: center; /* Centers the button horizontally */
  margin-top: 20px; /* Adds space above the button */
}

.cta-button {
  display: inline-block;
  background-color: #ff9900; /* Bright orange for attention */
  color: #ffffff; /* White text for contrast */
  font-size: 18px; /* Large, readable text */
  font-weight: bold; /* Emphasized text */
  text-align: center; /* Centers the text */
  text-decoration: none; /* Removes underline */
  padding: 12px 24px; /* Comfortable padding */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: background-color 0.3s, box-shadow 0.3s; /* Smooth hover effect */
  margin-top: 20px; /* Additional space around the button */
}

.cta-button:hover {
  background-color: #cc7a00; /* Darker orange on hover */
  color: #ffffff; /* Keep text white on hover */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* Slightly larger shadow */
}

.cta-button:active {
  background-color: #b36a00; /* Even darker orange on click */
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2); /* Smaller shadow for pressed effect */
  transform: translateY(2px); /* Creates a "press" effect */
}

/* Styles for the back to top button*/
.return-to-top-container {
  background-color: #ffd580d0; /* Semi-transparent light orange */
  text-align: center;
  padding: 20px;
  margin: 0; /* Remove the top margin */
  border: none; /* Remove the border */
}

.return-to-top-button {
  background-color: #FF9900; /* Matches the site's theme */
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.return-to-top-button:hover {
  background-color: #CC7A00; /* Slightly darker orange for hover effect */
  color: #ffffff; /* Keep text white on hover */
}

/* Styles for the Footer */
.dog-footer {
  text-align: center;
  padding: 20px;
  background-color: #444;
  color: #ddd;
  font-size: 12px;
  border-top: 2px solid #ff9900;
}

.footer-top {
  display: block; /* Stack items vertically */
  max-width: 600px;
  margin: 0 auto 20px;
  font-size: 14px;
  text-align: left;
}

.footer-top p {
  margin: 0 0 10px; /* Adds spacing between the contract and contact */
}

.footer-contract span, .footer-contact span {
  color: #ffcc99;
}

.footer-content {
  max-width: 600px;
  margin: 20px auto 0; /* Adds space above the disclaimer */
  text-align: left;
  line-height: 1.5;
}

.footer-content h2 {
  font-size: 16px;
  text-align: center;
  color: #ffcc99;
  margin-bottom: 15px;
}

.footer-content p {
  margin-bottom: 10px;
}

.footer-content strong {
  color: #ffcc99;
}

/* Music Page Styles */

/* Music Page Styles */

.music-container {
  background-color: var(--project-background-color, #fdf5e6); /* Matches the project-description background */
  text-align: center;
  padding: 20px 10px 40px; /* Adds extra bottom padding */
  line-height: 1.6;
  font-size: 1.2rem;
  color: #333;
  font-family: 'Roboto', sans-serif;
}

.music-title {
  margin-top: 20px;
  font-size: 2rem;
  color: #333;
  text-align: center;
}

.music-description {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 20px;
  color: #555;
}

.music-song-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 0 10px;
}

.music-song {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  width: 200px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.music-song:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.music-song-title {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #444;
}

.music-audio-player {
  width: 100%;
  outline: none;
}

/* FAQ Page Styles */

.faq-container {
  background-color: var(--project-background-color, #fdf5e6); /* Matches project description background */
  margin: 40px auto; /* Centers the block horizontally and adds space above/below */
  padding: 20px 30px; /* Adds space inside the block */
  max-width: 800px; /* Limits the width for readability */
  border-radius: 8px; /* Adds rounded corners */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for emphasis */
  text-align: left; /* Left-aligns the text */
}

.faq-container h2 {
  text-align: center; /* Centers the FAQ title */
  margin-bottom: 20px; /* Adds space below the title */
  font-size: 24px;
  color: #333; /* Neutral dark color */
}

.faq-item {
  margin-bottom: 15px; /* Space between FAQ items */
}

.faq-item h3 {
  font-size: 18px;
  color: #555; /* Slightly lighter heading */
  margin-bottom: 5px; /* Space below question */
}

.faq-item p {
  font-size: 16px;
  color: #666; /* Slightly lighter answer text */
  line-height: 1.5;
}

/* Artwork Page Styles */

.artwork-container {
  background-color: var(--project-background-color, #fdf5e6); /* Matches the project-description background */
  text-align: center;
  padding: 20px 10px 40px; /* Adds extra bottom padding */
  line-height: 1.6;
  font-size: 1.2rem;
  color: #333;
  font-family: 'Roboto', sans-serif;
}

.artwork-title {
  margin-top: 20px;
  font-size: 2rem;
  color: #333;
  text-align: center;
}

.artwork-description {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 20px;
  color: #555;
}

.artwork-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 0 20px;
}

.artwork-item {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  width: 200px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.artwork-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.artwork-image {
  width: auto;
  height: 200px;
  border-radius: 8px;
  transition: transform 0.2s;
}

.artwork-image:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.artwork-button {
  display: inline-block;
  background-color: #FF9900; /* Matches the site's theme */
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.artwork-button:hover {
  background-color: #CC7A00;
}

.dogctofun {
  display: inline-block;
  position: relative;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #ff9900;
}

.dogctofun span {
  display: inline-block;
  animation: piano-effect 3s ease-in-out infinite, color-change 5s ease-in-out infinite;
}

@keyframes piano-effect {
  0%, 100% {
    transform: translateY(0); /* Начальная и конечная позиция */
  }
  50% {
    transform: translateY(-2px); /* Поднимаем букву чуть-чуть (меньше, чем раньше) */
  }
}

@keyframes color-change {
  0% {
    color: #ff9900; /* Начальный цвет */
  }
  25% {
    color: #ff3399; /* Розовый */
  }
  50% {
    color: #00ccff; /* Голубой */
  }
  75% {
    color: #66cc33; /* Зеленый */
  }
  100% {
    color: #ff9900; /* Возвращаемся к исходному цвету */
  }
}

/* Для каждой буквы по очереди, чтобы они не двигались одновременно */
.dogctofun span:nth-child(odd) {
  animation-delay: 0s;
}

.dogctofun span:nth-child(even) {
  animation-delay: 0.2s;
}

.dogctofun span:nth-child(3) {
  animation-delay: 0.4s;
}

.dogctofun span:nth-child(4) {
  animation-delay: 0.6s;
}

.dogctofun span:nth-child(5) {
  animation-delay: 0.8s;
}

.dogctofun span:nth-child(6) {
  animation-delay: 1s;
}

.dogctofun span:nth-child(7) {
  animation-delay: 1.2s;
}

.dogctofun span:nth-child(8) {
  animation-delay: 1.4s;
}

.dogctofun span:nth-child(9) {
  animation-delay: 1.6s;
}

.dogctofun:hover {
  text-decoration: underline; /* Плавное подчеркивание при наведении */
  transition: text-decoration 0.3s ease;
}

.dogctofun span:hover {
  text-decoration: none; /* Убираем подчеркивание для букв при наведении */
}

/* Стили для точки */
.dogctofun span.dot {
  display: inline-block;
  text-decoration: none; /* Точка без подчеркивания */
}

/* Убираем подчеркивание при наведении на точку */
.dogctofun span.dot:hover {
  text-decoration: none;
}


@media (max-width: 768px) {
  .cex-listings-title {
    text-align: center;
    display: block;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cex-listings-title {
    text-align: center;
    display: block;
    width: 100%;
  }
}
