@charset "UTF-8";
html, body {
	margin: 0;
	padding: 0;
	scroll-padding-top: 120px;
	scroll-behavior: smooth;
}

* {
	box-sizing: border-box;
}

body {
	font-family: "Cormorant", serif;
	font-optical-sizing: auto;
	font-style: normal;
}

.container {
	background: url("Images/ariana bg.jpg") no-repeat center center fixed;
	background-size: cover;
	width: 100%;
	position: relative;
}

h1 {
	color: #F3F2EE;
	font-family: "Bodoni Moda", serif;
	font-size: auto;
	font-style: normal;
}

h2 {
	color:#F3F2EE; 
	font-family: "Cormorant", serif;
	font-size: 3em;
	font-style: normal;
}

header {
	padding-bottom: 1%;
	min-height: 120px;
	position: sticky;
	background-color: #1E151B;
	top: 0;
	left: 0;
	z-index: 100;
	border: 1px solid;
}

.navi {
	display: flex;
	list-style: none;
	justify-content: center;
	align-items: center;
	gap: 10%;
	margin: 0;
	padding: 0;
}

.navi a {
	font-size: 1.2em;
	color: #F3F2EE;
	text-decoration: none;
}

.navi a:hover {
	color: #C66F8C;
	text-decoration: underline;
}

.image-container{
	position: relative;
}

.button{
	position: absolute;
	top:81%;
	left: 10%; 
  	transform: translate(-50%, -50%);
 	background-color:#D7B9B5;
    margin: 20px;
	color: #1E151A;
	text-decoration: none;
    border-radius: 5px;
	border:#D7B9B5;
	padding: 10px 20px;
  	cursor: pointer;
	font-family: "Cormorant", serif;
	font-style: normal;
	font-weight: bold;
	font-size: 25px;
}

.button:hover{
    background-color: #1E151A;
	color: #F3F2EE;
}

.row {
	display: flex;
	margin: auto;
	justify-content: center;
	align-content: center;
	padding: 1%;
}

.box {
    position: relative;
    transition: transform 1s, box-shadow 1s;
    overflow: hidden;
}

.box:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px 2px rgba(0, 0, 0, .2);
    z-index: 2;
}

.f img{
    width: 100%;
    height: auto;
    display: block;
	padding: 28px;
}

.board{
	background: #ECE6DB;
	padding-top:3%;
	padding-left: 4%;
	padding-right: 4%;
	padding-bottom:9%;
	text-align:justify;
	width: 100%;
	margin:auto;
		
}

h3{
	color:#D7B9B5;
	font-family: "Tangerine", cursive;
  	font-weight: 700;
	font-size: 7.9em;
  	font-style: normal;
	text-align: center;
}

iframe {
    max-width: 100%;
    height: auto;
    border: none;
}
.box-container {
    width: 100%;
    position:relative;
    padding: 20px;
	cursor: pointer;
}

.profile {
    position: relative;
}

.profile img {
    width: 100%;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
    display:flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
    transition:opacity 0.3s ease;
}

.profile:hover .overlay {
    opacity: 1;
}

ul li{
	color:#D7B9B5; 
	font-family: "Cormorant", serif;
	font-size: 1.2em;
	font-style: normal;
}

.slider-container {
  	width: 100%;
	height:100vh; 
	background-color: #1E151B;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	overflow: hidden;
	align-items: center;
	justify-content: center;
	position: relative;
  
}

.slider-images {
 	display: flex;
	align-items: center;
	gap:20px;
}

.slider-images img{
	width:100%;
	height: 100%;
	object-fit: cover;
}

.slider-img {
  	width: 110px;
	height: auto;
  	cursor: pointer;
	position: relative;
	transition: 0.7s ease;
}

.slider-images .slider-img:nth-child(1), .slider-images .slider-img:nth-child(2), .slider-images .slider-img:nth-child(3), .slider-images .slider-img:nth-child(4), .slider-images .slider-img:nth-child(5),.slider-images .slider-img:nth-child(6), .slider-images .slider-img:nth-child(7){
	height: 465px;
}

.details{
	position: absolute;
	bottom: 2px;
	left: 10px;
}

.details h5{
	font-family: "Bodoni Moda", serif;
	font-size: 20px;
  	font-style: normal;
	text-align: left;
	line-height: 44px;
	color: #FFFFFF;
	transition: 0.7 ease;
	display: none;
	margin: 0;
}

.details p{
	font-weight: bolder;
	font-family: "Cormorant", serif;
  	font-optical-sizing: auto;
  	font-size:15px;
  	font-style: normal;
	text-align: left;
	line-height:33px;
	color: #FFFFFF;
	transition: 0.7 ease;
	display:none;
	margin: 5px 0 0;
}

.slider-img.active{
	width:480px;
	height: 480px;
}

.slider-img.active .details p, .slider-img.active .details h5{
	display: block;
}

form{
	background:#C66F8C;	
	height: 580px;
}

label{
	color:#F3F2EE;
	font-family: "Cormorant", serif;
	font-size: 1.2em;
	font-style: normal;
	
}

input[type="text"],textarea[name="subscribe"]{
			font-family: "Cormorant", serif;
			font-size: 0.9em;
			font-style: normal;
    		padding: 10px;
    		margin: 10px;
    		width: 300px;
			height: 50px;
    		display: block;
    		background-color: #F3F2EE;
    		border: 3px solid #D7A6A7;
}
		
input[type="reset"] {
			font-family: "Cormorant", serif;
			font-size: 1.2em;
			font-style: normal;
    		padding: 10px;
    		border-radius: 5px;
    		width: 150px;
    		background-color: #E6E6E6;
    		border: 1px solid #F3F2EE;
			text-align: center;
}

input[type="submit"] {
			font-family: "Cormorant", serif;
			font-size: 1.2em;
			font-style: normal;
    		padding: 10px;
    		border-radius: 5px;
    		width: 150px;
    		background-color: #FF9798;
    		border: 1px solid #F3F2EE;
			text-align: center;
}
		
input[type="reset"]:hover{
			background-color:aliceblue;
			color:brown;
			cursor: pointer;
}
input[type="submit"]:hover{
			background-color:blanchedalmond;
			color: brown;
			cursor: pointer;
}
			
input:focus, textarea:focus {
    		background: #FDFFE4;
}

footer{
	padding-top: 6px;
	text-align: center;
	color:#1E151A;
	font-family: "Cormorant", serif;
	font-size: 1em;
	font-style: normal;
	
}

.clickhere{
	font-family: "Cormorant", serif;
	font-style: normal;
	font-weight: bold;	
	color: #1E151A;
}

.cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

.cta-button {
    background-color: #1E151A;
    color: #F3F2EE;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
}
    
.cta-button:hover {
    background-color: #D7B9B5;
	color: #1E151A;
}

p{
	font-family: "Cormorant", serif;
	font-size: 1.2em;
	font-style: normal;
}

@media only screen and (max-width:996px){
	
html, body {
	margin: 0;
	padding: 0;
	scroll-padding-top: 120px;
	scroll-behavior: smooth;
}
	
header {
	padding-bottom: 0.7%;
	min-height: 80px;
	position: sticky;
	background-color: #1E151B;
	top: 0;
	left: 0;
	z-index: 100;
	border: 0.8px solid;
}
	
h1 {
	color: #F3F2EE;
	font-family: "Bodoni Moda", serif;
	font-size: 1em;
	font-style: normal;
}

h2 {
	color:#F3F2EE; 
	font-family: "Cormorant", serif;
	font-size: 55px;
	font-style: normal;
}

h3{
	color:#D7B9B5;
	font-family: "Tangerine", cursive;
  	font-weight: 700;
	font-size: 100px;
  	font-style: normal;
	text-align: center;
}
	
.column {
	min-width: 7%;
	min-height: 66px;
	padding: 1%;
}
	
 
p{
	font-size: 15px;
	font-family: "Cormorant", serif;
	font-style: normal;
}
	
.slider-img {
  	width: 60px;
	height: auto;
  	cursor: pointer;
	position: relative;
	transition: 0.7s ease;
}

	
form{
	background:#C66F8C;	
	height:780px;
}

label{
	color:#F3F2EE;
	font-family: "Cormorant", serif;
	font-size: 33px;
	font-style: normal;
}
	
input[type="text"],textarea[name="subscribe"]{
			font-family: "Cormorant", serif;
			font-size: 28px;
			font-style: normal;
    		padding: 4px;
    		margin: 4px;
    		width: 400px;
			height: 70px;
    		display: block;
    		background-color: #F3F2EE;
    		border: 1px solid #D7A6A7;
}
		
input[type="reset"] {
			font-family: "Cormorant", serif;
			font-size: 28px;
			font-style: normal;
    		padding: 25px;
    		border-radius: 5px;
    		width: 180px;
    		background-color: #58382C8;
    		border: 2px solid #160E62;
			text-align: center;
}

input[type="submit"] {
			font-family: "Cormorant", serif;
			font-size: 28px;
			font-style: normal;
    		padding: 25px;
    		border-radius: 5px;
    		width: 180px;
    		background-color: #FF9798;
    		border: 2px solid #160E62;
			text-align: center;
}
.slider-images {
 	display: flex;
	align-items: center;
	gap:5px;
}

.slider-container {
  	width: 100%;
	height:50vh; 
	background-color: #1E151B;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	overflow: hidden;
	align-items: center;
	justify-content: center;
	position: relative;
  
}

.clickhere{
	font-family: "Cormorant", serif;
	font-style: normal;
	font-weight: bold;	
	color: #1E151A;
}

.cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 35px;
}

.cta-button {
    background-color: #1E151A;
    color: #F3F2EE;
    padding: 20px 30px;
    text-decoration: none;
    font-size: 28px;
    border-radius: 5px;
}
    
.cta-button:hover {
    background-color: #D7B9B5;
	color: #1E151A;
}


}
	