/* ----------------------------------------------------------------------------------------------------------------------- */
/*                                                          FONTS                                                         */
/* ----------------------------------------------------------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');


/* ----------------------------------------------------------------------------------------------------------------------- */
/*                                                          BASIC                                                         */
/* ----------------------------------------------------------------------------------------------------------------------- */

html, body {
  font-family: "Michroma", serif;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: "Michroma", serif;
    background-color:#141414;
    color: #dcddde;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
  }
  
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/*                                                                   HEADER                                                                        */
/* ----------------------------------------------------------------------------------------------------------------------- */

header {
    width: 40%;
    justify-content: center;
    text-align: center;
    background-color: transparent;
    position: relative;
    padding: 15px 0;
    margin: 0 auto;
    display: none;
}

.header-logo {
    height: 40px;
    margin-right: 10px;
    width: auto;
    align-items: center;
    transition: transform 0.3s;
}

.header-logo:hover {
    transform: scale(1.1);
}

h1 {
    color: #ffffff;
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}


.header-container {
    border-radius: 5;
}
.header-buttons {
     justify-content: center;
}

.nav-item {
    margin-right: 20px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background-color: rgba(12, 12, 12, 0.5) !important;
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(102, 102, 102, 0.2);
}

.welcome-text {
    color:#fff;
}

.navbar-brand {
    color: #fff;
    font-weight: 500;
}

.navbar-brand:hover {
    color: #fff;
    font-weight: 500;
}

.navbar-brand:active {
    color: #ddc272;
    font-weight: 500;
}

.navbar-brand:visited {
    color: #fff;
    font-weight: 500;
}

.header-logo {
    height: 40px;
    width: auto;
    align-items: center;
    transition: transform 0.2s;
}

.header-logo:hover {
    transform: scale(1.1);
}

.nav-link {
    padding: 2px 14px;
    margin: 0 5px;
    color: #dfdfdf;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: "Michroma", serif;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 2px;
    width: 0%;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover{
    background-color: #2c2c2c;
    color: #fff;
    transform: scale(1.05);
}

.nav-link:visited {
    padding: 3px 8px;
    margin: 0 5px;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.8rem;
    background-color: #282828;
}

.nav-link2 {
    padding: 3px 8px;
    margin: 0 5px;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    background-color: #282828;
}

.nav-link2:hover{
    color:#000 !important;
    background: linear-gradient(165deg, rgba(232,85,85,1) 30%, rgba(243,122,122,1) 100%) !important;
    transform: scale(1.2);
}

.nav-link-login {
    padding: 3px 8px;
    margin: 0 5px;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    background-color: #282828;
}

.nav-link-login:hover{
    color:#000 !important;
    background: linear-gradient(165deg, rgba(62,182,137,1) 30%, rgb(72, 179, 157, 1) 100%) !important;
    transform: scale(1.2);
}

.nav-link-logoff {
    padding: 3px 8px;
    margin: 0 5px;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    background-color: #282828;
}

.nav-link-logoff:hover{
    color:#000 !important;
    background: linear-gradient(165deg, rgba(243,92,95,1) 30%, rgb(250, 112, 103, 1) 100%) !important;
    transform: scale(1.2);
}

.nav-link-rent {
    background-color:#D8B03D;
    border-radius: 5;
    color: #000;
}

.nav-link-rent:hover {
    border-radius: 5;
    color: #000;
    box-shadow: 0 0px 10px rgba(255, 255, 255, 0.6);
    background: linear-gradient(165deg, rgba(216, 176, 61,1) 30%, rgb(102, 88, 45) 100%) !important;
}

.nav-link-rent:visited {
    background-color:#D8B03D;
    border-radius: 5;
    color: #000;
}

.nav-link-rent::after {
    display: none !important;
}

@media (max-width: 768px) {
    .nav-link, 
    .nav-link2, 
    .nav-link-login, 
    .nav-link-logoff, 
    .nav-link-rent {
        display: block; 
        width: 90%;   
        margin: 10px auto;  
        padding: 8px 20px;  
        text-align: center;  
        font-size: 0.8rem; 
    }
}
/* ----------------------------------------------------------------------------------------------------------------------- */
/*                                                                   PAGE                                                                        */
/* ----------------------------------------------------------------------------------------------------------------------- */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.welcome-text1 {
    font-size: 4rem !important;
    text-align: center;
    font-weight: 800 !important;
  font-family: "Michroma", serif;
}

.welcome-text2 {
    font-size: 2rem !important;
    text-align: center;
    font-weight: 50 !important;
     font-family: "Michroma", serif;
}

@media (max-width: 768px) {
    .welcome-text1 {
        font-size: 1.3rem !important;
        margin-left: 0px;
    }

    .welcome-text2 {
        font-size: 0.8rem !important;
        margin-left: 0px;
    }

    .welcome-section {
        align-items: center !important;
    }
}

.background-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.5);
}

.welcome-section {
    position: relative;
    height: 100vh;
    color: white;
    text-align: left;
    overflow: hidden;
}

.welcome-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.welcome-section::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.welcome-section h1 {
    position: relative;
    z-index: 3;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    opacity: 0;
    animation: fadeInUp 1.2s ease forwards;
}

.welcome-section h1.welcome-text2 {
    animation-delay: 0.4s;
}

.content-section {
    background-color: #fff;
    color: #0a0a09;
    padding-top: 50px;
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/*                                                                   BEATS                                                                         */
/* ----------------------------------------------------------------------------------------------------------------------- */

.beat-section {
    background-color: rgba(10, 10, 9, 1) !important;
    backdrop-filter: blur(8px);
}

.beatstars-store {
    display: flex;
    justify-content: center;
}
.beatstars-store iframe {
    width: 100%;
    max-width: 1024px;
    border: none; /* opcionális */
}

h1#brandLogo span.logo-text.ng-binding {
    display: none !important;
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/*                                                                   PRICING                                                                         */
/* ----------------------------------------------------------------------------------------------------------------------- */

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem !important;
}

.section-title .line {
  height: 1px;
  width: 120px;
  background-color: rgba(255,255,255,0.4);
  border-radius: 1px;
}
.section-title h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.price-process-box {
    background-color: rgba(12, 12, 12, 0.5) !important;
    backdrop-filter: blur(4px);
    box-shadow: 0 0px 10px rgba(255, 253, 253, 0.0) !important;
    border: 1px solid rgba(102, 102, 102, 0.2);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-type {
    font-weight: 400 !important;
    font-size: clamp(1rem, 4vw, 1.2rem);
}

.price-amount {
    font-weight: 800 !important;
    font-size: clamp(2rem, 8vw, 3rem) !important;
}

@media (max-width: 1920px) and (min-width: 750px) {
    .price-amount {
        font-size: clamp(2rem, 4vw, 3rem) !important;
    }
}

.price-description {
    font-weight: 400 !important;
    font-size: clamp(0.7rem, 2.5vw, 0.8rem);
}

.price-process-section {
    opacity: 0;
    transform: translateY(20px);
    border: 1px solid rgba(102, 102, 102, 0.2);
    transition: all 1s ease;
    background-image: url("../assets/bgpattern.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.price-process-section.show {
    opacity: 1;
    transform: translateY(0);
}

.price-process-section h2 {
    font-weight: 700;
}

.price-process-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

.price-process-section p {
    font-size: 1rem;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/*                                                           CONTACT                                                        */
/* ----------------------------------------------------------------------------------------------------------------------- */
.contact-section {
    background-color: rgba(10, 10, 9, 1) !important;
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-box {
  background: rgba(20, 20, 20, 1);
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-section h2 {
  font-weight: 700;
  color: #fff;
}

.form-label {
  color: #ddd;
}

.form-control {
  background: rgba(20, 20, 20, 1);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, .75);
  color: #fff;
}

.form-control:focus {
  background: rgba(40, 40, 40, 0.9);
  border-color: #0d6efd;
  box-shadow: 0 0 8px rgba(13, 110, 253, 0.6);
  color: #fff;
}

.btn-primary {
    background: linear-gradient(135deg, #df0000, #a50000);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff1a1a, #df0000);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(223, 0, 0, 0.5);
    color: #fff;
}

#contactAlert {
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    font-family: "Michroma", serif;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.alert-success {
    background: linear-gradient(135deg, #3cb371, #2e8b57);
    color: #fff;
}

.alert-danger {
    background: linear-gradient(135deg, #ff4d4d, #cc0000);
    color: #fff;
}
/* ----------------------------------------------------------------------------------------------------------------------- */
/*                                                           FOOTER                                                        */
/* ----------------------------------------------------------------------------------------------------------------------- */
.site-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
    color: #ccc;
    padding: 50px 20px 20px;
    font-family: 'Michroma', sans-serif;
    box-shadow: inset 0 2px 10px rgba(255,255,255,0.05);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.2));
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-info .brand {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.footer-info .tagline {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 10px;
}

.footer-info .contact a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-info h1 {
    font-size: 1.4rem;
}

.footer-info h2 {
    font-size: 1rem;
}
.footer-info .contact a:hover {
    color: #fff;
}

.footer-socials {
    margin-top: 15px;
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s, transform 0.2s;
}

.footer-socials a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 25px;
    border-top: 1px solid #222;
    padding-top: 15px;
    font-size: 12px;
    color: #666;
}