/*FONTS*/
@font-face {
    font-style: normal;
    font-weight: normal;
    font-family: 'TT Knickerbockers Grotesk';
    src: url('fonts/TTKnickerbockersGrotesk.otf');
}

/*Cím*/
@font-face {
    font-style: normal;
    font-weight: normal;
    font-family: 'TAN MON CHERI';
    src: url('fonts/tanmoncheri/tan-mon-cheri.ttf') format('truetype');
}

html {
    scroll-behavior: smooth;
    font-family: 'TT Knickerbockers Grotesk';
    background-color: #D9C4B0;
}

body {
    scroll-behavior: smooth;
    font-family: 'TT Knickerbockers Grotesk';
    background-color: #D9C4B0;
}

/* NAVBAR */
.navbar-nav .nav-link {
    font-size: 1.5rem;
    transition: color 0.3s;
}

.navbar-nav .nav-link.custom-active {
    color: #ddd;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


nav ul,
nav li {
    list-style: none;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 1.5rem;
}

.nav-center {
    font-size: 1.5rem;
}

nav li {
    cursor: pointer;
    transition: color 0.3s;
}

nav li:hover {
    color: #ddd;
}

nav a {
    text-decoration: none;
    color: inherit;
}

nav.navbar {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Safari támogatás */
    background: rgba(255, 255, 255, 0.1);
    /* világos áttetsző háttér */
    z-index: 1000;
}

@media (max-width: 991.98px) {
    .navbar-collapse .navbar-nav {
        align-items: flex-start !important;
    }

    .navbar-nav .nav-item {
        width: 100%;
        text-align: left;
    }

    .navbar-collapse {
        text-align: right;
    }
}

/* FOOTER */
footer {
    background-color: #C39B7F;
    color: white;
    padding: 1rem;
    text-align: center;
}

footer span {
    font-size: 1.2rem;
}

footer .socials {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.socials a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.socials a:hover {
    color: #bbb;
}


h2 {
    font-size: 2.5rem;
}

p {
    font-size: 1.5rem;
}

button {
    background-color: #C39B7F;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #72483C;
}

.center-button {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1rem 2rem;
    font-size: 1rem;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 300px;
    /* Fix desktop méret */
    max-width: 80vw;
    /* Mobilon arányosodik */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsív méretezés mobilra */
@media (max-width: 768px) {
    .center-button {
        font-size: 1rem;
        width: 80vw;
    }
}

/*Contact*/

.contact-box-box {
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    text-align: left;
}

#simple-contact h2 {
    font-family: 'TT Knickerbockers Grotesk';
    font-size: 2rem;
}

#simple-contact p {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

#simple-contact .btn {
    font-size: 1rem;
    border-radius: 2rem;
    transition: background-color 0.3s ease;
}

#simple-contact .btn:hover {
    background-color: #333;
    color: #fff;
}

/*PRICE*/
.package {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.package.visible {
    opacity: 1;
    transform: translateY(0);
}

.package-text {
    flex: 1 1 300px;
    padding: 1rem;
    text-align: left !important;
}

.package-image-wrapper {
    position: relative;
    flex: 1 1 300px;
    padding: 1rem;
    width: 400px;
    height: 400px;
}

.package-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 2;
}

.package-background {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -30px;
    left: -30px;
    z-index: 1;
}

.bubble-top,
.bubble-bottom {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.6rem 1rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #333;
    z-index: 3;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.bubble-top {
    top: 12px;
    left: 12px;
}

.bubble-bottom {
    bottom: -12px;
    /* lefelé kilóg */
    right: -30px;
    /* jobbra kilóg */
}

.bubble-bottom-button {
    bottom: -14px;
    /* lefelé kilóg */
    right: -30px;
    /* jobbra kilóg */
    position: absolute;
    padding: 0rem;
    font-weight: bold;
    border: 0px solid #333;
    z-index: 3;
    font-size: 1.2rem;
    text-transform: uppercase;
}

body nav ul li a {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .package {
        flex-direction: column !important;
        text-align: left;
    }

    .package-text {
        text-align: left !important;
        order: 2;
        padding-top: 1rem;
    }

    .package-image-wrapper {
        width: 90vw;
        height: 90vw;
        margin: 0 auto;
        order: 1;
    }

    .bubble-top {
        top: 8px;
        left: 8px;
        font-size: 1rem;
    }

    .bubble-bottom {
        font-size: 1rem;
        bottom: -12px;
        /* lefelé kilóg */
        right: -12px;
        /* jobbra kilóg */
    }

    .package-background {
        bottom: -15px;
        left: -15px;
    }

    .bubble-bottom-button {
        right: -18px;
        bottom: -16px;
    }
}

.background-div {
    background-color: #EFE8DF;
}

.custom-btn {
    background-color: #C39B7F;
    color: white;
    transition: background-color 0.3s ease;
}

.custom-btn:hover {
    background-color: #72483C;
    color: white;
}

.custom-btn i,
.custom-btn label {
    color: white;
}