/* Шрифти */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Cormorant+Infant:ital,wght@0,400;0,600;1,400&family=Mulish:wght@400;600&display=swap');

: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;
}

.inspiration-regular {
  font-family: "Inspiration", cursive;
  font-weight: 400;
  font-style: normal;
}

/* Fonts */

.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;
}

