:root {
    --navbar-height: 100px;
    --footer-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

.navbar {
    background: white;
    height: var(--navbar-height);
    box-shadow: 0 0 8px #ddd;
}

.navbar-collapse {
    background: white;
    display: flex;
}

.navbar-brand {
    font-size: 24px;
}

.navbar-nav .nav-link {
    color: black;
    font-weight: bold;
    font-size: large;
}

.navbar-toggler {
    border-color: #F7E7CE;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}

.logo {
    max-height: 60px;
}

footer {
    background: white;
}

.footer-logo {
    max-height: var(--footer-height);
}

.home {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    background: url("../img/full/image00021.webp") no-repeat center center/cover;
}

.section {
    scroll-margin-top: var(--navbar-height);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.section:nth-child(odd) {
    background: white;
    color: black;
}

.section:nth-child(even) {
    color: white;
}

.pointer {
    cursor: pointer;
}

.no-outline {
    outline: none !important;
}

.image-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.2);
    filter: brightness(0.3);
}

.zoom-icon {
    cursor: pointer;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .zoom-icon {
    opacity: 1;
}

.carousel-item {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.text-justify {
    text-align: justify;
}

.text-center-last {
    text-align-last: center;
}

.text-champagne {
    color: #F7E7CE;
}

.text-gray {
    color: gray;
}

.bg-champagne {
    background: #F7E7CE;
}

.border-champagne {
    border-color: #F7E7CE !important;
}

.mb--25 {
    margin-bottom: -25px;
}

.z-index-10 {
    z-index: 10;
}

.blured-background {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.blured-background-more {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.heading-margin {
    margin-bottom: 80px;
    margin-top: -180px;
}

@media (max-width: 480px) {
    .name-logo-wrapper {
        display: none;
    }
}
