* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* font family  */

.onesetFont {
    font-family: 'Onest', sans-serif;
}

.romanFont {
    font-family: "Gideon Roman", serif;
}

.change_one {
    font-family: "Montserrat", sans-serif;
}

.cut-text::after {
    content: '';
    @apply absolute left-0 w-full h-1 bg-white top-1/2;
    /* Tailwind utilities */
    transform: rotate(-5deg);
    /* slight slant */
}

/* Hamburger */
.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    margin: 6px 0;
    transition: 0.3s ease;
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu - slide from right */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #1f2436;
    padding: 80px 20px;
    transition: right 0.4s ease;
    z-index: 999;
}

/* Active */
.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    display: block;
    color: #fff;
    padding: 14px 0;
    border-bottom: 1px dashed #6e7499;
    text-decoration: none;
}

.mobile-menu a:hover {
    color: #c084fc;
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
}

.menu-close:hover {
    color: #c084fc;
}

.word-space {
    word-spacing: 3px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.3s ease-out;
}

.themegold {
    color: #C6A75E;
}

.themeblack {
    color: #1C1C1C;
}

.themewhite {
    color: #F6F3EE;
}

.bg-theme-gold {
    background-color: #C6A75E;
}

.bg-theme-white {
    background-color: #F6F3EE;
}

.bg-theme-black {
    background-color: #1C1C1C;
}



.marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.marquee__content {
    display: flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
    animation: scroll 18s linear infinite;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
}

.icon {
    font-size: 26px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.line-height {
    line-height: 32px;
}