@font-face {
	font-family: raleway_c;
	src: url(../fonts/raleway-v22-cyrillic-100.woff2);
	font-weight: 100;
}
@font-face {
	font-family: raleway_c;
	src: url(../fonts/raleway-v22-cyrillic-300.woff2);
	font-weight: 300;
}
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
:root {
/*градиенты и цвета*/
	--light_gold:#fcd49d;
	--dark_gold:#d16c0d;
	--gray_color:#606060;
	--light_color:#fff;
	--dark_color:#000;
	--light_red:#680000;
}
html {
	font-size: 10px;
	font-family: raleway_c, sans-serif;	
	scroll-behavior: smooth;
}
body {
	background-image: linear-gradient(90deg, var(--light_red) 0%, var(--dark_color) 100%);  
	color: var(--light_color);
}
a {
	color: var(--light_color);
	text-decoration: none;
}
a:hover {
    color: var(--light_gold);
	text-decoration: underline;
}
h1 {
	font-size: 4rem;
}
h2 {
	font-size: 3rem;
}
h3 {
	font-size: 2rem;
}
h1, h2, h3 {
	font-weight: 100;
	letter-spacing: 0.2rem;	
	margin-bottom: 10px;	
}
p {
	font-size: 1.4rem;
	margin-top: 5px;
	line-height: 2.5rem;
	font-weight: 300;
	letter-spacing: 0.05rem;
}
.container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center; 
	justify-content: center;
}
img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
.section-title {
	color: var(--light_color);
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	text-align: center;
}
.section-title span {
	color: var(--light_gold);
}
/*стиль кнопок*/
.cta {
	display: inline-block;
	padding: 8px 25px;
	color: var(--light_color);
	text-align: center;
	min-width: 250px;
	background-color: rgba(0, 0, 0, 0.4);	
	border: 2px solid var(--light_gold);
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	margin-top: 10px;
	opacity:0;	
	transition: 0.3s ease;
	transition-property: background-color, color;
}
.cta:hover {
	background-color: rgba(104, 0, 0, 0.65);
	color: var(--light_color);
	text-decoration: underline;
}

/* Header section */
#header {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	height: auto;
}
#header .header {
	min-height: 8vh;
	background-color: rgba(31, 30, 30, 0.24);
	transition: 0.3s ease background-color;
}
#header .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1300px;
	padding: 0 10px;
}
#header .nav-list ul {
	list-style: none;
	position: absolute;
	background-color: rgb(31, 30, 30, 0.9);
	width: 100vw;
	height: 100vh;
	left: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: 0.5s ease left;
}
#header .nav-list ul.active {
	left: 0%;
}
#header .nav-list ul a {
	font-size: 2.5rem;
	font-weight: 300;
	letter-spacing: 0.2rem;
	text-decoration: none;
	color: var(--light_color);
	text-transform: uppercase;
	padding: 20px;
	display: block;
}
#header .nav-list ul a::after {
	content: '';	
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	color: rgba(240, 248, 255, 0.021);
	font-size: 13rem;
	letter-spacing: 50px;
	z-index: -1;
	transition: 0.3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after {
	transform: translate(-50%, -50%) scale(1);
	letter-spacing: initial; 
}
#header .nav-list ul li:hover a {
	color: var(--light_gold);
}
#header .hamburger {
	height: 70px;
	width: 70px;
	display: inline-block;
	border: 3px solid var(--light_color);
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	transform: scale(0.8);
	margin-right: 20px;	
}
#header .hamburger::after {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	border-radius: 50%;
	border: 3px solid var(--light_color);
}
#header .hamburger .bar {
	height: 2px;
	width: 35px;
	position: relative;
	background-color: var(--light_color);
	z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: var(--light_color);
	transition: 0.3s ease;
	transition-property: top, bottom;
}
#header .hamburger .bar::after {
	top: 10px;
}
#header .hamburger .bar::before {
	bottom: 10px;
}
#header .hamburger.active .bar {
	background: transparent;	
}
#header .hamburger.active .bar::before {
	bottom: 0;
	transform: rotate(45deg);
}
#header .hamburger.active .bar::after {
	top: 0;
	transform: rotate(-45deg);
}
/* End Header section */

/* taya Section */
#taya {
    background-image: url(../img/wallp/bgr_taya_mini.png), url(../img/wallp/bgr_far.jpg);
    background-position: bottom right, top center;
    background-repeat: no-repeat, no-repeat;
	/*background-size: ширина высота */    
	-webkit-background-size: 400px auto, cover;
	background-size: 400px auto, cover;
	position: relative;
	z-index: 1;	
}
#taya .taya {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 50px;
	justify-content: flex-start;
}
#taya h1 {
/*основной заголовок Гюльчатай - пекинесса домашняя принцесса*/
	display: block;
	width: fit-content;
	margin-bottom: 0;
	text-transform: uppercase;	
	position: relative;
	color: transparent;
	animation: text_reveal 0.3s ease forwards;
	animation-delay: 0.6s;
}
#taya h1:nth-child(1) {
	animation: text_reveal_name 0.6s ease forwards;
	animation-delay: 0.6s;
}
#taya h1:nth-child(2) {
	animation-delay: 1.2s;
}
#taya h1:nth-child(3) {
	animation-delay: 1.8s;
}
#taya h1:nth-child(4) {
	animation-delay: 2.4s;	
}
#taya h1 span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
/*заливка градиентом*/
	background: linear-gradient(to right, var(--dark_color) 0%, var(--light_red) 100%); 
	animation: text_reveal_box 0.6s ease;
	animation-delay: 0.3s;		
}
#taya h1:nth-child(1) span {
	animation-delay: 0.3s;
}
#taya h1:nth-child(2) span {
	animation-delay: 0.9s;		
}
#taya h1:nth-child(3) span {
	animation-delay: 1.5s;
}
#taya h1:nth-child(4) span {
	animation-delay: 2.1s;	
}
/* End taya Section */

/* Albums Section */
#albums .albums {
	flex-direction: column;
	text-align: center;
	max-width: 1500px; 
	margin: 0 auto;
 	padding: 100px 0;
}
#albums .album-top {
	max-width: 500px;
	margin: 0 auto;
}
#albums .album-bottom {
	display: flex;
    align-items:flex-start;	
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 50px;
}
#albums .album-item1, .album-item2,
		.album-item3 {
	flex-basis: 80%;
	min-height: 320px;
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 30px;
	border-radius: 10px;
	background-size: cover;
	margin: 10px 5%;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
#albums .album-item1 {
	background-image: url(../img/albums/alb1.jpg);
}
#albums .album-item2 {
	background-image: url(../img/albums/alb2.jpg);
}
#albums .album-item3 {
	background-image: url(../img/albums/alb3.jpg);
}
#albums .album-item1::after, .album-item2::after,
		.album-item3::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(90deg, #000 0%, var(--gray_color) 100%);
	opacity: 0.75;
	z-index: -1;
}
#albums .album-bottom .icon {
	height: 100px;
	width: 150px;
	margin-bottom: 20px;
}
#albums .album-item1 .icon img, .album-item2 .icon img,
		.album-item3 .icon img {
	border: 1px solid var(--light_gold);
	box-shadow: 4px 4px 10px rgba(0, 0, 0, .75);	
}
#albums .album-item1:hover .icon img, .album-item2:hover .icon img,
		.album-item3:hover .icon img {
	transform: scale(1.1);
	transition: 0.3s ease transform;
}
#albums .album-item1 p, .album-item2 p,
		.album-item3 p {
	color: var(--light_color);
	text-align: center;
}
/* End Albums Section */

/* Fotos section */
#fotos .fotos {
	flex-direction: column;
	max-width: 900px;
	margin: 0 auto;
	padding: 100px 0;
}
#fotos .foto-header p {
	text-align: center;
	margin-bottom: 20px;	
}
#fotos .gallery {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
#fotos .foto-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 80%;
	margin: 20px auto;
	overflow: hidden;
	border-radius: 10px;
}
#fotos .foto-info {
	padding: 30px;
	flex-basis: 50%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-direction: column;
	background-color: transparent;
	color: var(--light_color);
}
#fotos .foto-info h2 {
	font-weight: 300;
}
#fotos .foto-info p {
	color: var(--light_color);
}
#fotos .foto-img {
	display: flex;
	flex-basis: 50%;
	flex-direction: column;
	align-items: center;
	height: 300px;
	overflow: hidden;
	position: relative;
}
#fotos .foto-img img {
	transition: 0.3s ease transform;
}
#fotos .foto-item:hover .foto-img img {
	transform: scale(1.1);
}
#fotos .foto-info .venz {
	width: 75%;
	height: auto;
}
/* End Fotos section */

/* Videos Section */
#videos .videos {
	flex-direction: column;
	text-align: left;
	max-width: 1500px; 
	margin: 0 auto;
 	padding: 100px 0;
}
/* End Videos section */

/* About Section */
#about .about {
	flex-direction: column-reverse;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 20px;
}
#about .col-left {
	width: 250px;
	height: 360px;
}
#about .col-right {
	width: 100%;
}
#about .col-right p {
	margin-bottom: 20px;
}
#about .col-right h2 {
	font-weight: 300;	
/*блок заливка текста градиентом*/
	background: linear-gradient(to right, var(--light_gold) 0%, var(--dark_gold) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
/*блок заливка текста градиентом*/	
}
#about .col-right .cta {
	margin-bottom: 20px;
	padding: 10px 20px;
	font-size: 2rem;
}
#about .col-left .about-img {
	height: 100%;
	width: 100%;
	position: relative;
	border: 10px solid var(--light_color);
}
#about .col-left .about-img img {
        object-fit: cover;
        width: 100%;
        height: 100%;
  }
#about .col-left .about-img::after {
	content: '';
	position: absolute;
	left: -33px;
	top: 19px;
	height: 98%;
	width: 98%;
	border: 7px solid var(--light_gold);
	z-index: -1;
}
/* End About Section */

/* Footer */
#footer {
	background-image: linear-gradient(90deg, #000 0%, var(--gray_color) 100%);
}
#footer .footer {
	min-height: 20px;
	flex-direction: column;
	padding-top: 2px;
	padding-bottom: 5px;
}
#footer p {
	color: var(--light_color);
	font-size: 1.3rem;
}
/* End Footer */

@keyframes text_reveal_box {
	50% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}
@keyframes text_reveal_name {
	100% {
		color: var(--light_gold);
	}
}
@keyframes text_reveal {
	100% {
		color: var(--light_color); 
		font-weight: 100;
	}
}

/* Media Query For Tablet */
@media only screen and (min-width: 992px) {
	.cta {
		font-size: 2.5rem;
		padding: 15px 30px;
		min-width: 275px;		
	}
	h1 {
		font-size: 5rem;
	}
	#albums .album-bottom .album-item1,
		.album-item2, .album-item3 {
		flex-basis: 50%; 
		margin: 2.5%; 
	}	
	#fotos .fotos {
	max-width: 900px;
	}
	#fotos .foto-item {
		flex-direction: row;
	}
	#fotos .foto-item:nth-child(even) {
		flex-direction: row-reverse;
	}
	#fotos .foto-item {
		height: 300px; 
		margin: 0;
		width: 100%;		
		border-radius: 0;
	}
	#fotos .foto-info {
		height: 100%;		
	}
	#fotos .foto-img {		
		height: 100%;
	}	
	#about .about {
		flex-direction: row;
	}
	#about .col-left {
		width: 600px;
		height: 400px;
		padding-left: 60px;
	}
	#about .about .col-left .about-img::after {
		left: -45px;
		top: 34px;
		height: 98%;
		width: 98%;
		border: 10px solid var(--light_gold);
	}
	#about .col-right {
		text-align: left;
		padding: 30px;
	}
	#about .col-right h1 {
		text-align: left;
	}
}
/* End Media Query For Tablet */

/* Media Query For Desktop */
@media only screen and (min-width: 1200px) {
	.cta {
		margin-top: 20px;
		min-width: 285px;
	}
	h1 {
		font-size: 6rem;
	}
	#header .hamburger {
		display: none;
	}
	#header .nav-list ul {
		position: initial;
		display: block;
		height: auto;
		width: fit-content;
		background-color: transparent;
	}
	#header .nav-list ul li {
		display: inline-block;
	}
	#header .nav-list ul li a {
		font-size: 1.8rem;
	}
	#header .nav-list ul a::after {
		display: none;
	}
	#taya {
		background-size: 600px auto, cover;	
	}
	#albums .album-bottom .album-item1,
		.album-item2, .album-item3 {
		flex-basis: 22%;
		margin: 1.5%;
	}
	#fotos .fotos {
		max-width: 1176px;
	}
	#fotos .foto-item {
		height: 392px; 		
	}	
}
/* End  Media Query For Desktop */
