/* Global Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: white;
  color: black;
  padding-top: 100px; /* Prevents content from being hidden under navbar */
  background-color: white;

  overflow-x: hidden; /* Prevents horizontal scroll */
}
.container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}
h1, h2 {
  text-align: center;
}
p {
  line-height: 1.6;
  text-align: justify;
}

/* Navbar Styling */
.navbar {
  position: fixed; /* Keeps it locked to the top */
  top: 0;
  width: 100%;
  background: black;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  z-index: 1000;
  box-sizing: border-box;
  height: 100px; /* Ensures proper spacing */
}

/* Fixing Page Content Being Hidden Behind Navbar */


/* Logo */
.logo img {
  height: 100px;
  max-width: 100%;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  padding: 10px 15px;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a:active {
  background: white;
  color: black;
  border-radius: 5px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
  padding: 10px 20px;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 350px; /* Adjust height as needed */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1; /* Puts image in the background */
}

/* Search Bar Styling */
.search-container {
  position: relative;
  display: flex;
  width: 60%;
  max-width: 600px;
  background: white;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(220%);
  box-shadow: 0 0 15px rgb(255, 255, 255);
}

.search-container input {
  flex: 1;
  padding: 10px;
  font-size: 16px;
  border: none;
  outline: none;
}

.search-container button {
  background: black;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgb(0, 0, 0);
}

.search-container button:hover {
  background: white;
  color: black;
}

.license-btn {

  background: black;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgb(0, 0, 0);
  
}

.license-btn:hover {
  background: white;
  color: black;
}

/* Responsive Search */
@media screen and (max-width: 768px) {
  .search-container {
      width: 80%;
  }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background: black;
      text-align: center;
      padding: 10px 0;
  }

  .nav-links.active {
      display: flex;
  }

  .nav-links li {
      padding: 10px 0;
      width: 100%;
  }

  .nav-links a {
      display: block;
      width: 100%;
      padding: 15px 0;
  }

  .menu-toggle {
      display: block;
  }
}

/* Beat Listing Styles */
.beat-grid {
  display: flex;
  flex-direction: column; /* Ensures beats are displayed line by line */
  align-items: center; /* Centers items horizontally */
  gap: 20px;
  margin-top: 20px;
  width: 100%; /* Ensures it takes the full width of its container */
}

/* Beat Cards */
.beat-card {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.321);
  width: 100%;
  max-width: 1000px;
  text-align: center;
}

.beat-card audio {
  width: 100%;
}

.beat-card button {
  margin-top: 10px;
  padding: 10px;
  font-size: 16px;
  background: black;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 0 10px rgb(0, 0, 0);
  transition: all 0.3s ease;
}

.beat-card button:hover {
  background: white;
  color: black;
  transform: scale(1.05);
}

.beat-card button:active {
  transform: scale(0.95);
  opacity: 0.8;
}

/* Return Button */
.return-btn {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  font-size: 16px;
  background: black;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
    transform: scale(0.95);

  box-shadow: 0 0 10px rgb(0, 0, 0);

}

.return-btn:hover {
  background: white;
  color: black;
}

.return-btn:active {
  transform: scale(0.95);
  opacity: 0.8;
}

/* Checkout Page Styles */
#beatDetails {
  text-align: center;
  margin-bottom: 20px;
}

.audio-preview {
  margin-top: 10px;
}

#orderForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: auto;
}

#orderForm label {
  font-weight: bold;
}

#orderForm input,
#orderForm select,
#orderForm button {
  padding: 10px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

#orderForm button {
  background: black;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgb(0, 0, 0);

}

#orderForm button:hover {
  background: white;
  color: black;
  transform: scale(1.05);
}

#orderForm button:active {
  transform: scale(0.95);
  opacity: 0.8;
}

/* Offer Container */
#offerContainer {
  display: none;
}

/* License Cards Grid */
.license-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Four columns */
  gap: 20px;
  padding: 20px;
  text-align: center;
}

.license-card {
  background: #111;
  color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.license-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.license-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.license-card ul li {
  margin: 5px 0;
  font-size: 14px;
}

/* Buttons: White Background, Black Text, Inverted Hover Effect */
.license-card button {
  background: white;
  color: black;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Hover Effect */
.license-card button:hover {
  background: black;
  color: white;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
  transform: scale(1.05);
}

/* Click (Active) Effect */
.license-card button:active {
  transform: scale(0.95);
  opacity: 0.8;
}

/* Hover Animation on License Card */
.license-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

/* Responsive Design: Adjusts to 2 Columns on Medium Screens */
@media screen and (max-width: 1024px) {
  .license-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive Design: Adjusts to 1 Column on Small Screens */
@media screen and (max-width: 768px) {
  .license-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Modal Content */
.modal-content {
  background: black;
  color: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  animation: fadeIn 0.3s ease-in-out;
}

/* Close Button */
.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
}

/* Close Button Hover */
.close:hover {
  color: red;
}

/* Fade-In Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Style inside the modal */
#modalText {
  white-space: pre-line;
  text-align: left;
  font-family: Arial, sans-serif;
  font-size: 14px;
  padding: 10px;
  line-height: 1.6;
}

/* LICENSE SECTION STYLES */
.license-section {
  margin-bottom: 40px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

.license-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #222;
}

.license-date {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 5px;
}

.license-note {
  font-size: 0.9em;
  color: #900; /* emphasize preview note */
  margin-bottom: 15px;
}

/* LICENSE BODY & HEADINGS */
.license-body {
  background: #fafafa;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 5px;

}

.license-heading {
  font-size: 1.1em;
  margin: 1em 0 0.5em 0;
  color: black;
  text-align: left;
}

.bold-num {
  font-weight: bold;
  margin-right: 5px;
}

/* PARAGRAPHS & KEYWORDS */
.license-body p {
  margin: 0.5em 0;
  line-height: 1.5;
}

.keyword {
  font-weight: bold;
  color: #000; /* or #444 for subtlety */
}

/* MAKE HEADINGS & TEXT NICER */
.license-section h1,
.license-section h2 {
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* OPTIONAL: TABLET & MOBILE RESPONSIVENESS */
@media (max-width: 768px) {


  .license-title {
    font-size: 1.3em;
  }

  .license-heading {
    font-size: 1em;
  }
}

.terms {

  padding-bottom: 20px;

}






/* Basic container styling */
.social-container {
  display: flex;
  gap: 20px;
  justify-content: center; /* center them horizontally */
  margin: 30px 0;
}

/* General button styles */
.social-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;   /* Button size */
  height: 70px;  /* Button size */
  border-radius: 50%; 
  font-size: 32px; /* Icon size */
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* On hover, enlarge slightly & add a shadow */
.social-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* Individual brand color backgrounds */
/* Twitter button */
.twitter {
  background-color: #1da1f2; /* Twitter Blue */
}

/* Facebook button */
.facebook {
  background-color: #1877f2; 
}

/* Instagram button */
.instagram {
  background: radial-gradient(circle at 30% 107%, 
      #fdf497 0%, #fdf497 5%, 
      #fd5949 45%, #d6249f 60%, 
      #285AEB 90%);
}

/* YouTube button */
.youtube {
  background-color: #ff0000;
}

.tiktok {
  background-color: black;
}





        /* Contact Section */
        .contact-container {
          max-width: 600px;
          margin: auto;
          background: #fff;
          padding: 20px;
          border-radius: 10px;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          margin-top: 100px;
      }

      
      @media (max-width: 768px) {
        .contact-container {
            margin-top: 10px;
        }

      }


      /* Email List */
      .email-list {
          list-style: none;
          padding: 0;
      }

      .email-item {
          display: flex;
          align-items: center;
          justify-content: space-between;
          background: #f8f8f8;
          margin: 10px 0;
          padding: 12px 15px;
          border-radius: 8px;
          transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      /* Hover Effect */
      .email-item:hover {
          transform: scale(1.05);
          box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
      }

      /* Icon Styling */
      .email-icon {
          font-size: 22px;
          color: #007bff;
      }

      /* Email Text */
      .email-text {
          flex-grow: 1;
          text-align: left;
          padding-left: 10px;
      }

      .email-title {
          font-weight: bold;
          color: #333;
      }

      .email-link {
          text-decoration: none;
          color: #007bff;
          font-weight: bold;
      }

      .email-link:hover {
          text-decoration: underline;
      }

              /* Footer Styling */
              .footer {
                background: #000000;
                color: #ffffff;
                padding: 30px 15px;
                text-align: center;
                font-family: Arial, sans-serif;
                margin-top: 10px;
            }
    
            .footer-container {
                max-width: 1000px;
                margin: auto;
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
                text-align: left;
            }
    
            /* Social Media Icons */
            .social-icons {
                display: flex;
                justify-content: center;
                gap: 15px;
                margin-bottom: 20px;
            }
    
            .social-icons a {
                text-decoration: none;
                color: #fff;
                font-size: 24px;
                width: 45px;
                height: 45px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: 0.3s;
            }
    
            /* Social Colors */
            .social-icons .fa-facebook { background: #3b5998; }
            .social-icons .fa-x-twitter { background: #1da1f2; }
            .social-icons .fa-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
            .social-icons .fa-youtube { background: #ff0000; }
    
            .social-icons a:hover {
                opacity: 0.7;
            }
    
            /* License Section */
            .footer-section h3 {
                color: #ffffff;
                font-size: 18px;
                margin-bottom: 10px;
            }
    
            .footer-section ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }
    
            .footer-section ul li {
                margin-bottom: 8px;
            }
    
            .footer-section ul li a {
                color: #ccc;
                text-decoration: none;
                transition: 0.3s;
            }
    
            .footer-section ul li a:hover {
                color: #6a6a6a;
            }
    
            /* Email Section */
            .email-container {
                margin-top: 20px;
            }
    
            .email-item {
                display: flex;
                align-items: center;
                margin-bottom: 8px;
            }
    
            .email-item i {
                font-size: 18px;
                margin-right: 10px;
                color: black;
            }
    
            .email-item a {
                color: black;
                text-decoration: none;
                transition: 0.3s;
            }
    
            .email-item a:hover {
                color: #7d7d7d;
            }
    
            /* Copyright */
            .footer-bottom {
                margin-top: 20px;
                font-size: 14px;
                color: #aaa;
            }
    
            /* Responsive */
            @media (max-width: 768px) {
                .footer-container {
                    flex-direction: column;
                    text-align: center;
                }
    
                .footer-section {
                    margin-bottom: 20px;
                }
            }
        

