/* FONTS & BASE */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Montserrat:wght@200;300;400;500&display=swap');

input{
	outline: none !important;
}
textarea{
	resize: none;
}
.container{
	max-width: 1200px;
}
section{
	overflow: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* custom cursor */
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0a0a;
    color: #e0d6c6;
    overflow-x: hidden;
}

h1, h2, .section-title {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 2px;
}

/* CUSTOM CURSOR */
.custom-cursor {
    width: 10px;
    height: 10px;
    background: #d4af37;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.2s;
}
.custom-cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: 0.1s;
}

/* PRELOADER */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 1s, visibility 1s;
}
.preloader-spinner {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-top-color: #d4af37;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* GLASS HEADER */
.glass-header {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
}
.logo {
    line-height: 1;
}
.nav-link {
    color: #e0d6c6;
    font-weight: 300;
    position: relative;
    text-decoration: none;
    padding: 0 10px;
}
.nav-link::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background: #d4af37;
    transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }
.hamburger{
	width: 40px;
	height: 40px;
	background: #e0d6c6;
	border: none;
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.hamburger span{
	display: block;
	width: 80%;
	height: 2px;
	background: #000;
}
/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #1a1a1a;
    z-index: 2000;
    transition: right 0.4s;
    padding: 80px 30px;
    border-left: 1px solid #d4af37;
}
.mobile-menu.active { right: 0; }
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 40px;
    color: #d4af37;
}
.menu-links a {
    display: block;
    color: #e0d6c6;
    font-size: 24px;
    margin-bottom: 20px;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
}

/* HERO SECTION */
.hero-section {
	padding-top: 100px;
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-image: linear-gradient( rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5) ), url( 'https://cumdp.com.ua/wp-content/uploads/2025/02/931a7973847c6b82b217a7c3e2f930d6-png.webp' );
    background-attachment: fixed;
    background-size: cover;
}
.hero-bg-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 2;
    height: 100vh;
}
.subtitle-glow {
    font-size: 20px;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}
.btn-luxury {
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 15px 40px;
    font-size: 16px;
    letter-spacing: 2px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #d4af37;
    transition: left 0.3s;
    z-index: -1;
}
.btn-luxury:hover {
    color: #0a0a0a;
}
.btn-luxury:hover::before {
    left: 0;
}
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.scroll-indicator span {
    width: 20px;
    height: 20px;
    border-left: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
    transform: rotate(-45deg);
    animation: scrollDown 2s infinite;
}
@keyframes scrollDown { 0% { opacity: 0; } 50% { opacity: 1; } 100% { opacity: 0; } }

/* SECTION TITLES */
.section-padding {
    padding: 100px 0;
    position: relative;
}
.section-subtitle {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
}
.section-title {
    font-size: 64px;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, transparent);
}

/* LUXURY CARDS */
.luxury-card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.luxury-card:hover {
    border-color: #d4af37;
    transform: translateY(-10px);
}
.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}
.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 10px;
}
.card-text {
    color: #aaa;
}

/* ATLAS TABS */
.atlas-tabs .nav-link {
    background: transparent;
    border: none;
    color: #e0d6c6;
    font-size: 24px;
    font-family: 'Cormorant Garamond', serif;
    padding: 10px 30px;
}
.atlas-tabs .nav-link.active {
    color: #d4af37;
    border-bottom: 2px solid #d4af37;
    background: transparent;
}
.atlasSwiper {
    padding: 40px 0 60px;
}
.atlasSwiper .swiper-slide {
    text-align: center;
    background: #1a1a1a;
    height: 300px;
    overflow: hidden;
}
.atlasSwiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.atlasSwiper .swiper-slide:hover img {
    transform: scale(1.1);
}
.atlasSwiper p {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    margin: 0;
    padding: 15px;
    color: #d4af37;
}

/* STATS SECTION */
.stats-section {
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), url('https://images.pexels.com/photos/3184183/pexels-photo-3184183.jpeg?auto=compress&cs=tinysrgb&w=600');
    background-attachment: fixed;
    background-size: cover;
    padding: 80px 0;
}
.stat-number {
    font-size: 72px;
    font-family: 'Cormorant Garamond', serif;
    color: #d4af37;
    display: block;
    line-height: 1;
}

/* HORIZONTAL GALLERY */
.horizontal-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: #d4af37 #0a0a0a;
}
.horizontal-scroll-content {
    display: inline-flex;
    gap: 20px;
}
.gallery-item {
    width: 400px;
    height: 300px;
    position: relative;
    overflow: hidden;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-item .overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(212, 175, 55, 0.8);
    color: #0a0a0a;
    padding: 15px;
    text-align: center;
    transition: bottom 0.3s;
}
.gallery-item:hover .overlay {
    bottom: 0;
}

/* TESTIMONIALS WITH VIDEO */
.testimonials-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 80px 0;
}
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}
.video-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: -1;
}
.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px;
    color: #fff;
}
.author {
    color: #d4af37;
    margin-top: 20px;
}

/* CHEF SECTION */
.chef-section .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.accordion-button {
    background: transparent;
    color: #e0d6c6;
    font-size: 20px;
    padding: 20px 0;
}
.accordion-body{
	color: #fff;
}
.accordion-button{
	outline: none !important;
}
.accordion-button:not(.collapsed) {
    background: transparent;
    color: #d4af37;
}
.luxury-img {
    border: 1px solid #d4af37;
    padding: 20px;
    background: #0a0a0a;
}

/* RESERVATION FORM */
.reservation-section {
    background: linear-gradient(45deg, #0a0a0a, #1a1a1a);
}
.glass-form {
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
}
.form-control {
    background: rgba(0,0,0,0.5);
    border: 1px solid #333;
    color: #e0d6c6;
    padding: 15px;
    border-radius: 0;
}
.form-control::placeholder{
	color: #e0d6c6;
}
.form-control:focus {
    background: #0a0a0a;
    border-color: #d4af37;
    box-shadow: none;
    color: #fff;
}
/*contact*/
.contact {
	.form-control{
		max-width: 300px;
	}
}

/* MODAL */
.luxury-modal {
    background: #0a0a0a;
    border: 2px solid #d4af37;
    border-radius: 0;
    color: #e0d6c6;
}
.success-icon {
    width: 80px;
    height: 80px;
    border: 2px solid #d4af37;
    border-radius: 50%;
    margin: 20px auto;
    font-size: 48px;
    line-height: 80px;
    color: #d4af37;
}

/* FOOTER */
.footer {
    background: #050505;
    padding: 30px 0;
    border-top: 1px solid #d4af37;
}
.social-links a {
    color: #e0d6c6;
    text-decoration: none;
    margin: 0 10px;
}
.social-links a:hover {
    color: #d4af37;
}
.swiper-pagination-bullet{
	background: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px){
    .custom-cursor,
    .custom-cursor-follower{
    	display: none;
    }
    *{
    	cursor: default;
    }
}
@media (max-width: 768px) {
    .section-title {
        font-size: 42px;
    }
    .stat-number {
        font-size: 52px;
    }
    .gallery-item {
        width: 280px;
        height: 200px;
    }

}