/* Fonts */

:root {
    --main-color: #1C2D57;
    --secondary-color: #BC9869;
    --accent-color: #2E6F6D;
}

/* Text colors */

.text-main {
    color: var(--main-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

/* Background main colors (from presentation) */
.bg-accent {
    background-color: #D4AF37;
}

.bg-back {
    background-color: #E6D5B8;
}

/* Fonts */

.inspiration-regular {
    font-family: "Inspiration", cursive;
    font-weight: 400;
    font-style: normal;
}

.playfair-display {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-style: normal;
}

.cormorant-infant {
    font-family: "Cormorant Infant", serif;
    font-weight: 600;
    font-style: normal;
}

.mulish {
    font-family: "Mulish", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Navbar */

.navbar img {
    /* height: 20px; */
}

.custom-navbar {
    /* position: fixed !important; */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link,
.navbar-brand {
    color: var(--main-color) !important;

}

.nav-link:hover,
.navbar-brand:hover {
    color: var(--secondary-color) !important;

}

/* Animation apper from bottom */
.appear-from-bottom {
    opacity: 0;
    transform: translateY(50px);
    /* Initially below the screen */
    transition: transform 1s ease-out, opacity 1s ease-out;
}

/* Class to trigger animation when element comes into view */
.appear-from-bottom.in-view {
    opacity: 1;
    transform: translateY(0);
    /* Move to normal position */
}

/* Additional classes */
.gold-link {
    text-decoration: none;
    background-color: var(--secondary-color);
    font-weight: bold;
    padding: 0 5px;
}

.custom-btn:hover {
    background-color: transparent !important;
    border-color: white !important;
    color: white !important;
}

.tracking-widest {
    letter-spacing: 0.2em;
}

/* Контейнер для фрейму */
.iframe-wrapper {
    width: 100%;
    width: 100%;
    margin: 0 auto 40px auto;
    /* Центрування і відступ знизу */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eaeaea;
    overflow: hidden;
    position: relative;
}
