/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --background-maroon: rgba(38, 8, 17, 1.0);
  --primary-color:              rgb(93, 30, 53);
  --gold-color:                 rgb(238, 173, 73);
    --body-color: #c2aeb6;
    

 --body-font-family:           'Inter', sans-serif;
    
/*    --body-font-family:           '.goldman-regular', */

  --h5-font-size:               24px;
  --p-font-size:                20px;
  --copyright-text-font-size:   16px;
  --product-link-font-size:     14px;
  --custom-link-font-size:      12px;

  --font-weight-thin:           100;
  --font-weight-light:          300;
  --font-weight-normal:         400;
  --font-weight-bold:           700;
  --font-weight-black:          900;
}






/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(38, 8, 17, 1.0);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 40px;
    height: 40px;
    position: relative;
}

.sk-inner-circle {
    width: 40px;
    height: 40px;
    border: 3px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ===== NAVIGATION ===== */
.navbar {
         font-family: "Lexend Deca", sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(38, 8, 17, 1.0);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.navbar-brand {
    color: #ffffff !important;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-decoration: none;
    margin-right: auto;
}

.navbar-brand span {
    font-weight: 600;
}

.navbar-collapse {
    justify-content: flex-end;
    flex-grow: 1;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    margin-left: 600px;
}

.nav-link {
         font-family: "Lexend Deca", sans-serif;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropbtn {
         font-family: "Lexend Deca", sans-serif;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: rgba(38, 8, 17, 1.0);
    min-width: 250px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    z-index: 1001;
    margin-top: 0.5rem;
}

.dropdown-content a {
    color: #ffffff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 20px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

/* ===== CAROUSEL STYLES ===== */
p {
     font-family: "Lexend Deca", sans-serif;
    max-width: 800px; 
  margin-left: auto;
    margin-right: auto;
}




body {
     font-family: "Lexend Deca", sans-serif;
    background-color: rgba(38, 8, 17, 1.0);
    color: rgb(237, 186, 84, 0.5);
    min-height: 100vh;
    padding-top: 80px;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
     font-family: "Bowlby One SC", sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.subtitle {
    color:   rgb(191, 209, 226, 0.75);
    font-size: 1.1rem;
}

.carousel-container {
    position: relative;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.carousel {
    position: relative;
    width: 100%;
    height: 70vh;
    max-height: 800px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgb(238, 173, 73);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    background: rgb(238, 173, 73, 0.5);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ffffff;
    transform: scale(1.2);
}

.image-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(38, 8, 17, 1.0);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.carousel-slide.loading {
    background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 0;
    }

    .navbar-toggler {
        display: block;
    }

    .collapse:not(.show) {
        display: none;
    }

    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        margin-top: 0.5rem;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    h1 {
        font-size: 2rem;
    }

    .carousel {
        height: 50vh;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    body {
        padding-top: 60px;
    }
}

@media (hover: none) {
    .carousel-btn {
        opacity: 1;
    }
}


/* === Dropdown: stays open while pointer is inside === */
.dropdown {
    position: relative;          /* containing block */
}

.dropdown-content {
    position: absolute;
    right: 0;
    top: 100%;
    background: rgba(38, 8, 17, 1.0);
    min-width: 250px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    z-index: 1001;
    margin-top: .5rem;

    /* hide by default */
    visibility: hidden;
    opacity: 0;
    transition: visibility .25s, opacity .25s;
}

/* show when hovering the whole dropdown area */
.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    visibility: visible;
    opacity: 1;
}

/* (optional) tiny invisible “bridge” so gap doesn’t break hover */
.dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: .5rem;
    background: transparent;
}


.navbar-nav,
.navbar-nav ul {
    list-style: none;   /* remove the bullets */
    margin: 0;          /* optional tidy-up */
    padding-left: 500px;
}

/* =====  MOBILE  PARAGRAPH  STYLE  ===== */
@media (max-width: 768px) {          /* adjust breakpoint if you like */
    p {
        font-size: 1rem;             /* smaller text */
        line-height: 1.7;
        color: #ccc;                 /* softer grey */
        padding: 0 1rem;             /* breathing space on sides */
        margin-bottom: 1.2rem;       /* looser vertical rhythm */
    }
    
    .dropdown-content {
        justify-content: center;
         margin-left: auto;
    margin-right: auto;
        
        
    }
}




.bowlby-one-sc-regular {
  font-family: "Bowlby One SC", sans-serif;
  font-weight: 400;
  font-style: normal;
}



.lexend-deca-<uniquifier> {
  font-family: "Lexend Deca", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}