/* Regular */
@font-face {
  font-family: 'Evolventa';
  src: url('../font/Evolventa-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Oblique (наклонный) */
@font-face {
  font-family: 'Evolventa';
  src: url('../font/Evolventa-Oblique.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

/* Bold (жирный) */
@font-face {
  font-family: 'Evolventa';
  src: url('../font/Evolventa-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* Bold Oblique (жирный наклонный) */
@font-face {
  font-family: 'Evolventa';
  src: url('../font/Evolventa-BoldOblique.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

 


/* ============================================ */
/* БАЗОВЫЕ СТИЛИ */
/* ============================================ */
:root {
    --orange-color: #ed6618;
    --orange-hover: #b44a0c;
    //--bg-dark: #172533;
	--bg-dark: #141e29;
	--bg-updrak: #202d3b;
    --bg-light: #f8fafc;
	--text-light: #ffffff;
    --text-dark: #264465;
    --text-gray: #94a3b8;
	--text-link: #bcc5cf;
    --border-color: rgba(255,255,255,0.1);
}
 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
   font-family: 'Inter', sans-serif;
	font-family: 'Evolventa', sans-serif;
    color: #ffffff;
    line-height: 1.5;
    background-color: var(--bg-dark);
    width: 100%;
    overflow-x: hidden;
}

/* Компенсация скроллбара */
html {
    scrollbar-gutter: stable;
}

/* Когда меню открыто — блокируем прокрутку и компенсируем отступ */
body.menu-open {
    overflow: hidden;
    padding-right: var(--scrollbar-width, 0px);
}

/* ============================================ */
/* ШАПКА (FIXED) */
/* ============================================ */
.header {
    background: rgba(32, 45, 59, 0.7);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 0px solid rgba(255,255,255,0.1);
	color: var(--text-link);
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.left-group {
    display: flex;
    align-items: center;
    gap: 16px;
} 

.logo {
    //flex: 1;
	//background: rgba(32, 45, 59, 0.7); 
	// margin-left: 0 ;
} 
 

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange-color);
	//width:100px;
} 

.logo-link {
    text-decoration: none;
    display: inline-block;
	transition: all 0.4s ease;
}

.logo h1:hover {
     color: #ffa16b;
	  cursor: pointer;
}



 .nav-menu { 
	   padding: 0;
    }

@media (max-width: 1022px) {
    .nav-menu {
        display: none; 
    }
}

.nav-menu a {
   display: inline-block;
	padding: 5px 20px;
	//background: #223445;
	background: rgba(255,255,255,0.00);
	color: var(--text-link);
	text-decoration: none;
	border-radius: 40px;
	font-weight: 500;
	transition: all 0.2s;
	font-size: 1.0rem;
	//backdrop-filter: blur(10px);
}

.nav-menu a:hover {
    color: var(--orange-color);
	//background: var(--orange-color);
    //color: white;
    //transform: translateY(-2px);
}





/* --- ПАНОРАМА НА ВЕСЬ ЭКРАН --- */
.panorama-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.panorama-fullscreen iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}




/* ============================================ */
/* БУРГЕР-МЕНЮ */
/* ============================================ */
.burger-menu {
    cursor: pointer;
    z-index: 1001;
}

.burger-icon {
    width: 28px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger-icon span {
    width: 100%;
    height: 1px;
    background: white;
    transition: all 0.3s ease;
}

.burger-menu.active .burger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active .burger-icon span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================ */
/* ПОЛНОЭКРАННОЕ МЕНЮ */
/* ============================================ */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 26, 36, 0.6);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-nav {
    list-style: none;
    text-align: center;
    padding: 0;
}

.fullscreen-nav li {
    margin: 24px 0;
}

.fullscreen-nav a {
    font-size: 2.5rem;
    font-weight: 100;
    color: white;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
    padding: 8px 0;
	 border-bottom: 1px solid rgba(0,0,0,0);
}

.fullscreen-nav a:hover {
    color: var(--orange-color);
    //border-bottom: 1px solid var(--orange-color);
}

 
.fullscreen-nav a.active {
    color: var(--orange-color);
    border-bottom: 1px solid var(--orange-color);
}



/* ============================================ */
/* КОНТАКТЫ В ШАПКЕ */
/* ============================================ */
.header-contacts {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.header-contacts a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 100;
    transition: color 0.2s;
}

.header-contacts a:hover {
    color: var(--orange-color);
}

.phone {
    font-weight: 500;
    font-size: 1rem;
}


	
/* ============================================ */
/* ГРАДИЕНТНЫЙ ФОН НА ПАНОРАМУ */
/* ============================================ */

	.gradyent{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, #141e29 60%, rgba(112, 65, 38,0.8) 100%);
		backdrop-filter: blur(5px);
	}
	
	
	
/* ============================================ */
/* ОСНОВНОЙ КОНТЕНТ */
/* ============================================ */
.main-content {
    padding-top: 80px;
    min-height: calc(100vh - 200px);
}

 
/* ============================================ */
/* КНОПКИ */
/* ============================================ */
.btn {
    display: inline-block;
    background-color: var(--orange-color);
    color: white;
	//font-size: 1.4rem; 
    font-weight: 600;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn:hover {
    background-color: var(--orange-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--orange-color);
    color: #ffffff;
}

.btn-outline:hover {
    background: var(--orange-color);
    color: white;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.4rem;
	 font-weight: 300;
	 margin: 20px 10px;
}


.btn-head{
	width: 22px; 
	height: 22px; 
	vertical-align: middle; 
	margin-right: 8px; 
}




/* ============================================ */
/* КОНТЕЙНЕР И СЕТКИ */
/* ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 24px;
}

.light-section {
    //background: #6c7a84;
	background: rgba(32, 45, 59,0.3);
	//background: radial-gradient(circle at 80% 10%, rgba(237,102,24,0.15) 0%, #141e29 70%);
	//background: linear-gradient(90deg, #141e29 20%, rgba(138, 75, 39,0.8) 100%);
	backdrop-filter: blur(20px);
    color: var(--text-link); 
    padding: 64px 0;
}

.dark-section {
    //background: var(--bg-dark);
	background: radial-gradient(circle at 80% 10%, rgba(237,102,24,0.15) 0%, #141e29 70%);
	backdrop-filter: blur(20px);
    color: #ffffff;
    padding: 64px 0;
}

.section-title {
    font-size: 2.1rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 48px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
	//grid-template-columns: 1fr;  /* Всегда одна колонка */
    gap: 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}



/* КАРТОЧКИ */

.card {
    margin: 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 32px 32px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.light-section .card {
    background:  rgba(255,255,255,0.8);
    //border: 1px solid #eef2ff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    //color: #172533;
}

.card:hover {
    transform: translateY(-5px);
	 border-color: rgba(237, 102, 24, 0.5);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.4rem; 
	font-white:500;
    margin-bottom: 12px;
}

.card p {
    font-size: 1.2rem; 
   
}

 .contactst{
	cursor: pointer;
    transition: all 0.2s ease; 
 }
	
	
/* ============================================ */
/* ВОЗМОЖНОСТИ */
/* ============================================ */
	
	.tour-block {
    position: relative;
    z-index: 3;
    //background: var(--bg-dark);
	//background: radial-gradient(circle at 80% 10%, rgba(237,102,24,0.15) 0%, #141e29 70%);
	//backdrop-filter: blur(20px);
    padding: 0px 0;
   // border-top: 1px solid rgba(255,255,255,0.1);
}






/* ============================================ */
/* ГАЛЕРЕЯ */
/* ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

  /* Убираем эффект Play на карточках */
	.gallery-card {
		cursor: pointer;
		transition: transform 0.3s, box-shadow 0.3s;
		background: rgba(23, 37, 51,1);
		//background: radial-gradient(circle at 80% 10%, rgba(237,102,24,0.15) 0%, #141e29 70%);
		border-radius: 20px;
		overflow: hidden;
		box-shadow: 0 10px 25px -12px rgba(0,0,0,0.15);
	}
	
	.gallery-card:hover {
		transform: translateY(-8px);
		box-shadow: 0 20px 35px -12px rgba(0,0,0,0.25);
	}
	
	.gallery-card p {
		padding: 16px;
		font-weight: 300;
		text-align: center;
		color: #ffffff;
		background: rgba(34, 52, 69, 1);
		backdrop-filter: blur(10px);
	} 
	.thumbnail {
		aspect-ratio: 16 / 9;
		overflow: hidden;  
	}
	
	.thumbnail img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.5s;
	}
	

	 .gallery-card:hover .thumbnail img {
		transform: scale(1.05);
	}

        

 

/* ============================================ */
/* ФОРМА */
/* ============================================ */
.form-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 25px 40px -12px rgba(0,0,0,0.15);
    color: #1a2a3a;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: inherit;
    font-size: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 28px;
    transition: 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange-color);
    box-shadow: 0 0 0 3px rgba(237, 102, 24, 0.2);
}

/* ============================================ */
/* ПОДВАЛ */
/* ============================================ */
.footer {
	position: relative;
    background: rgba(32, 45, 59, 0.7);
    backdrop-filter: blur(10px);
    color: #94a3b8;
    text-align: center;
    padding: 32px 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
	 z-index: 10;
	 font-size: 0.9rem; 
}

.footer p {
	 padding: 5px 20px;
}

.footer a {
    color: #cbd5e1;  /* светлее, чем обычный текст (#94a3b8) */
    text-decoration: none;
    border-bottom: 1px dotted #5a6e8a; /* тонкое пунктирное подчёркивание */
}

.footer a:hover {
    color: white;
    border-bottom-color: white;
}
 
 
 .footer img {
    height: 16px; 
	vertical-align: middle; 
	margin: 0;
	margin-right: 8px;
}

.footer p {
	display: inline-flex;  /* меняем с inline-block на inline-flex */
    align-items: center;   /* центрируем иконку и текст по вертикали */
    gap: 5px;             /* отступ 5px между иконкой и текстом */
}

/* ============================================ */
/* КНОПКА "НАВЕРХ" */
/* ============================================ */
.to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--orange-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 2px;
}

.to-top-btn:hover {
    background: var(--orange-hover);
    transform: scale(1.05);
}

.to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

/* ============================================ */
/* АДАПТАВНОСТЬ */
/* ============================================ */
@media (max-width: 768px) {
    .header-content {
        padding: 8px 16px;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .header-contacts a {
        font-size: 0.75rem;
    }
    
    .phone {
        font-size: 0.85rem;
    }
    
    .main-content {
        padding-top: 70px;
    }
    
    .hero-fullscreen {
        min-height: calc(100vh - 70px);
        padding: 80px 16px 40px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .grid-3, .grid-2, .gallery-grid {
        gap: 20px;
    }
    

    
    .fullscreen-nav a {
        font-size: 1.5rem;
    }
    
    .to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.4rem;
    }
    
    .btn-large {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .fullscreen-nav a {
        font-size: 1.2rem;
    }
    
    .fullscreen-nav li {
        margin: 16px 0;
    }
}

@media (max-width: 550px) {
.header-contacts a::before {
    //content: "✉";
    margin-right: 6px;
}

.header-contacts a:last-child::before {
    //content: "📞";
}

@media (max-width: 550px) {
    .header-contacts a {
        font-size: 0;
    }
    .header-contacts a::before {
        font-size: 1.2rem;
        margin-right: 0;
    }
}
}

/* стрелка */
.to-top-btn svg {
    width: 24px;
    height: 24px;
    display: block;
    margin: 0 auto;
}









/* слайдер */

.screenshot-wrapper2 {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-track img {
    width: 100%; 
    flex-shrink: 0;
    border-radius: 16px;
    display: block;
}

/* Стрелки навигации */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;          /* Фиксированная ширина */
    height: 40px;         /* Фиксированная высота (равна ширине для круга) */
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;   /* 50% делает элемент круглым */
    transition: all 0.3s;
    display: flex;        /* Используем flex для центрирования */
    align-items: center;  /* Вертикальное выравнивание */
    justify-content: center; /* Горизонтальное выравнивание */
    line-height: 1;       /* Убираем лишние отступы */
    padding: 0;           /* Убираем padding */
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1); /* Увеличение при наведении */
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Индикаторы текущего слайда */
.slider-dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: rgba(255, 255, 255, 0.9);
}

.feature-screenshot {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}


/* иконки */

.icn {
	height: 30px;
	margin-right: 15px;
}

/* Один класс для всех трёх заголовков с иконками */
.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-header img {
  height: 50px;
  width: auto;
  margin-right: 10px;
  margin-top: 0px;
}

.section-header h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
}


 

 
 