@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&family=Great+Vibes&display=swap');


/*
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    display: grid;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}


/*  NAVİGATİON MENÜ START */


:root {

  /**
   * COLORS
   */

  --gold-crayola: hsl(38, 61%, 73%);
  --smoky-black-1: hsla(40, 12%, 5%, 1);
  --smoky-black-3: hsla(0, 3%, 7%, 1);
  --eerie-black-1: hsla(210, 4%, 9%, 1);
  --eerie-black-3: hsla(180, 2%, 8%, 1);
  --white: hsla(0, 0%, 100%, 1);
  --black: hsla(0, 0%, 0%, 1);
  
  --indian-yellow: hsl(36, 61%, 58%);
  --eerie-black-1: hsl(0, 0%, 14%);
  --eerie-black-2_85: hsla(0, 0%, 12%, 0.85);
  --sonic-silver: hsl(0, 0%, 44%);
  --davys-gray: hsl(210, 9%, 31%);
  --light-gray: hsl(0, 0%, 80%);
  --white: hsl(0, 0%, 100%);

  /**
   * GRADIENT COLOR
   */

  --loading-text-gradient: linear-gradient(90deg, transparent 0% 16.66%, var(--smoky-black-3) 33.33% 50%,  transparent 66.66% 75%);

  /**
   * TYPOGRAPHY
   */

  /* font-family */
  --fontFamily-forum: 'Forum', cursive;
  --fontFamily-dm_sans: 'DM Sans', sans-serif;

  --ff-oswald : 'Oswald', sans-serif;
  --ff-rubik: 'Rubik', sans-serif;


  /* font-size */
  --fontSize-title-2: 2.2rem;
  --fontSize-body-1: 2.4rem;
  --fontSize-body-2: 1.6rem;
  --fontSize-body-4: 1.6rem;
  --fontSize-label-2: 1.2rem;

  --fs-40: 4rem;
  --fs-30: 3rem;
  --fs-24: 2.4rem;
  --fs-14: 1.4rem;

  --fw-600: 600;

  /* font-weight */
  --weight-regular: 400;
  --weight-bold: 700;

  /* line-height */
  --lineHeight-2: 1.2em;
  --lineHeight-4: 1.6em;
  --lineHeight-5: 1.85em;

  /* letter-spacing */
  --letterSpacing-2: 0.4em;
  --letterSpacing-5: 3px;

  /**
   * SPACING
   */

  --section-space: 70px;
  --section-padding: 80px;

  /**
   * shadow
   */

   --shadow-1: 10px 0 60px hsla(0, 0%, 15%, 0.07);
   --shadow-2: 10px 0 60px hsla(0, 0%, 15%, 0.1);

  /**
   * radius
   */

  --radius-5: 5px;
  --radius-8: 8px;


  /**
   * BORDER RADIUS
   */

  --radius-circle: 50%;

  /**
   * TRANSITION
   */

  --transition-1: 250ms ease;
  --transition-2: 500ms ease;
  --transition-3: 1000ms ease;

}



*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 10px;
  scroll-behavior: smooth;
}


body{
  background-color: var(--white);
  color: var(--sonic-silver);
  font-size: 1.5rem;
  line-height: 2;
}

address { font-style: normal; }

data{ display: block; }


article {
  background-color: var(--eerie-black-1);
  color: var(--white);
  font-family: var(--fontFamily-dm_sans);
  font-weight: var(--weight-regular);
  line-height: var(--lineHeight-5);
  overflow: hidden;
  height: auto;
}

body.loaded { overflow: overlay; }

::-webkit-scrollbar { width: 8px; }

::-webkit-scrollbar-track { background-color: transparent; }

::-webkit-scrollbar-thumb { background-color: var(--gold-crayola); }


li { list-style: none; }

ion-icon { 
  pointer-events: none;
  display: block; 
}



/** SEÇİLEN METNİN ARKA PLANINI DEĞİŞTİRME   starts */


/* Seçili metnin arka plan rengini ve metin rengini değiştirme */
::selection {
  background: #e4c590; /* Seçili metnin arka plan rengi */
  color: #000000; /* Seçili metnin metin rengi */
}

/* WebKit tarayıcılar için (Chrome, Safari, vs.) */
::-webkit-selection {
  background: #e4c590; /* Seçili metnin arka plan rengi */
  color: #000000; /* Seçili metnin metin rengi */
}


/** SEÇİLEN METNİN ARKA PLANINI DEĞİŞTİRME   ends  */




.autovideoslide{
  height: 80.80px;
  /*
  border-bottom: #e4c590 solid 0.4rem;
*/
  z-index: 999;
  background-color: #b1986f;  /*  eskisi #242424 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 200px;
  transition: 0.5s ease;
}

.autovideoslide .brand span{
  color: #fff;
  font-family: 'Dancing Script', cursive;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
}

.autovideoslide .brand{
  color: #000;
  font-size: 2.1em;
  font-weight: 700;
  text-decoration: none;
}



.autovideoslide .navigation{
  position: relative;
}

.autovideoslide .navigation .navigation-items a{
  position: relative;
  color: #fff;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  margin-left: 30px;
  transition: 0.3s ease;
}

.autovideoslide .navigation .navigation-items a:before{
  content: '';
  position: absolute;
  background: #000;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  transition: 0.3s ease;
}

.autovideoslide .navigation .navigation-items a:hover:before{
  width: 100%;
}


@media (max-width: 1040px){
  .autovideoslide{
    padding: 12px 20px;
  }

  .autovideoslide .navigation{
    display: none;
  }

  .autovideoslide .navigation.active{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(1, 1, 1, 0.5);
  }

  .autovideoslide .navigation .navigation-items a{
    color: #222;
    font-size: 1.2em;
    margin: 20px;
  }

  .autovideoslide .navigation .navigation-items a:before{
    background: #222;
    height: 5px;
  }

  .autovideoslide .navigation.active .navigation-items{
    background: #fff;
    width: 600px;
    max-width: 600px;
    margin: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
  }

  .menu-btn{
    background: url(menu.png)no-repeat;
    background-size: 30px;
    background-position: center;
    width: 43px;
    height: 43px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .menu-btn.active{
    z-index: 999;
    background: url(close.png)no-repeat;
    background-size: 25px;
    background-position: center;
    transition: 0.3s ease;
  }
}




/*  NAVİGATİON MENU END */

/*-----------------------------------*\
  # YUKLENME ANIMASYONU DENEMESI
\*-----------------------------------*/

#yukanimasyon {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e4c590;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container {
  animation: fadeInOut 2s infinite;
}

.logo-container img {
  width: 195px; /* Adjust the size as needed */
  height: auto;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

/* 
****************
---------------------------   #CONTACT  START
****************
*/


.contact-wrap {
    margin-top: 1000px;                                  /* BURA */
    width: 80%;
    height: auto;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}

.contact-in {
    padding: 40px 30px;
}

.contact-in video{
  border-radius: 2% 0% 0% 1%;
}

.contact-in:nth-child(1) {
    flex: 30%;
    position: relative;
    color: #fff;
}

#saloonVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.9; /* Videonun saydamlığını ayarlayabilirsiniz */
}

.contact-in h1, .contact-in h2, .contact-in p, .contact-in ul {
    position: relative;
    z-index: 1;
}

.contact-in:nth-child(2) {
    flex: 45%;
    background: #242424;
}

.contact-in:nth-child(3) {
    flex: 25%;
    padding: 0;
}

.contact-in h1 {
    font-size: 24px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
}

.contact-in h2 {
	display: flex;
	align-items: center;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
}
/*bura */
.contact-in h2 ion-icon {
    background-image: var(--gradient2);
    color: var(--white);
    font-size: 18px;
    padding: 11px;
    border-radius: 50%;
}

.contact-in p {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 20px;
}

.contact-in a {
    color: inherit; /* Linklerin mevcut metin rengiyle aynı olmasını sağlar */
    text-decoration: none; /* Alt çizgiyi kaldırır */
}

.contact-in a:hover {
    text-decoration: underline; /* Üzerine gelindiğinde alt çizgi ekler */
}

.contact-in ul {
    padding: 0;
    margin: 0;
}

.contact-in ul li {
    list-style: none;
    display: inline-block;
    margin-right: 5px;
    margin-top: 5px;
}


:root {

	/**
	 * colors
	 */
  
	--gold-crayola: hsl(38, 61%, 73%);
	--white: hsl(0, 0%, 100%);
  
	/**
	 * gradient color
	 */
    
	--gradient2: linear-gradient( 90deg, var(--gold-crayola) 0%, var(--gold-crayola) 100%);

}

.contact-in .social-link ion-icon {
  padding: 11px;
  background-color: #242424;
  color: var(--white);
  font-size: 18px;
  border-radius: 50%;
}

.contact-in  .social-link ion-icon:is(:hover, :focus) { background-image: var(--gradient2); }



.contact-in form {
    width: 100%;
    height: auto;
}

.contact-in-input {
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
    border: 1px solid #fff;
    outline: none;
    padding-left: 5px;
    background: transparent;
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
}

.contact-in-input::placeholder {
    color: #fff;
}

.contact-in-textarea {
    width: 100%;
    height: 140px;
    margin-bottom: 20px;
    border: 1px solid #fff;
    outline: none;
    padding-top: 5px;
    padding-left: 5px;
    background: transparent;
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
}

.contact-in-textarea::placeholder {
    color: #fff;
}

.contact-in-btn {
	position: relative;
	display: flex;
	color: inherit;
	text-decoration: none;
	align-items: center;
	background: #111111;
	color: #fff;
	font-size: 1.1em;
	font-weight: 300;
	text-decoration: none;
	letter-spacing: var(--letterSpacing-5);
	width: 100%;
	border: 1px solid #333;
	border-radius: 2px;
	padding: 12px 45px;
	overflow: hidden;
	z-index: 1; 
}


.contact-in-btn:hover {
	background-color: #010100;
}


.contact-in iframe {
    width: 100%;
    height: 100%;
}

@media only screen and (max-width:480px) {
    .contact-in:nth-child(1) {
        flex: 50%;
    }

    .contact-in:nth-child(2) {
        flex: 50%;
    }

    .contact-in:nth-child(3) {
        flex: 100%;
    }
}

@media only screen and (max-width:360px) {
    .contact-in:nth-child(1) {
        flex: 50%;
    }

    .contact-in:nth-child(2) {
        flex: 50%;
    }

    .contact-in:nth-child(3) {
        flex: 100%;
    }
}



/*
     #FOOTER START
*/


/**                                                                 FOOTER STARTS       */


/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

    /**
     * colors
     */
  
    --light-steel-blue: hsl(218, 33%, 77%);
    --royal-blue-light: hsl(225, 68%, 53%);
    --carolina-blue: hsl(201, 92%, 47%);
    --flickr-blue_30: hsla(225, 68%, 53%, 0.3);
    --oxford-blue-2: hsl(217, 100%, 12%);
    --oxford-blue-3: hsl(218, 71%, 11%);
    --sonic-silver: hsl(0, 0%, 47%);
    --black_10: hsla(0, 0%, 0%, 0.1);
    --black_8: hsla(0, 0%, 0%, 0.08);
    --white: hsl(0, 0%, 100%);
  
    /**
     * gradient color
     */
  
    --gradient: linear-gradient( 90deg, var(--carolina-blue) 0%, var(--royal-blue-light) 100%);
  
    --gradient2: linear-gradient( 90deg, var(--gold-crayola) 0%, var(--gold-crayola) 100%);
    /**
     * typography
     */
  
    --ff-roboto: "Roboto", sans-serif;
    --ff-poppins: "Poppins", sans-serif;
  
    --fs-1: 4rem;
    --fs-2: 3.6rem;
    --fs-3: 3.2rem;
    --fs-4: 2.4rem;
    --fs-6: 1.8rem;
  
  
    --fw-700: 700;
  
  
    /**
     * spacing
     */
  
    --section-padding: 120px;
  
  
    /**
     * transition
     */
  
    --transition: 0.25s ease;
  
  }
  
  
  /*-----------------------------------*\
    #REUSED STYLE
  \*-----------------------------------*/
  
  
  .logo,
  .footer-link,
  .social-link,
  .back-top-btn{
    text-decoration: none;
    color: inherit;
    display: block;
  }
  
  .fcontainer { padding-inline: 25px; }
  
  .fsection { padding-block: var(--section-padding); }
  
  .fspan{
    display: block;
  }
  
  /*-----------------------------------*\
  #FOOTER
  \*-----------------------------------*/
  .footer {
    margin-top: 10em;
  }
  
  .footer-top {
    background-color: #242424;
    color: var(--sonic-silver);
  }
  
  .footer-top .fcontainer {
    display: grid;
    gap: 30px;
  }
  
  
   .footer-brand .logo span{
    color: #fff;
    font-family: 'Dancing Script', cursive;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
  }
  
  .footer-brand .logo{
    color: #000;
    font-size: 2.1em;
    font-weight: 700;
    text-decoration: none;
  }
  
  
  .footer-text {
    line-height: 1.6;
    margin-block: 15px;
  }
  
  .schedule {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .schedule-icon,
  .footer-item .item-icon {
    background-image: var(--gradient2);                     
    color: var(--white);
    font-size: 18px;
    padding: 11px;
    border-radius: 50%;
  }

  .schedule span{
    font-size: 14px;
  }
  
  .schedule .fspan,
  .footer-item .item-text { line-height: 1.6; }
  
  .footer-list-title {
    color: var(--white);
    font-family: var(--ff-poppins);
    font-size: var(--fs-4);
    font-weight: var(--fw-700);
    margin-block-end: 10px;
  }
  
  .footer-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-block: 10px;
    transition: var(--transition);
  }
  
  .footer-link ion-icon {
    color: var(--gold-crayola);
    --ionicon-stroke-width: 50px;
  }
  
  .footer-link:is(:hover, :focus) { color: var(--white); }
  
  .footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .footer-item:not(:first-child) { margin-block-start: 20px; }
  
  .footer-bottom {
    background-color: var(--black);
    padding-block: 50px;
    text-align: center;
  }
  
  .copyright {
    color: var(--white);
    line-height: 1.6;
    margin-block-end: 25px;
  }
  
  .copyright a{
    color: var(--gold-crayola);
  }
  
  .footer .social-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }
  
  .footer .social-link {
    padding: 11px;
    background-color: hsla(0, 0%, 100%, 0.2);
    color: var(--white);
    font-size: 18px;
    border-radius: 50%;
  }
  
  .footer .social-link:is(:hover, :focus) { background-image: var(--gradient2); }
  
  
  
  
  /*-----------------------------------*\
    #MEDIA QUERIES
  \*-----------------------------------*/
  
  /**
   * responsive for larger than 575px screen
   */
  
  @media (min-width: 575px) {
  
    /**
     * CUSTOM PROPERTY
     */
  
    :root {
  
      /**
       * typography
       */
  
      --fs-1: 4.2rem;
  
    }
  
  
    /**
     * REUSED STYLE
     */
  
    .fcontainer {
      max-width: 540px;
      width: 100%;
      margin-inline: auto;
    }
  
  
  
    /**
     * FOOTER
     */
  
    .footer-top .fcontainer { grid-template-columns: 1fr 1fr; }
  
  }
  
  
  
  
  
  /**
   * responsive for larger than 768px screen
   */
  
  @media (min-width: 768px) {
  
    /**
     * CUSTOM PROPERTY
     */
  
    :root {
  
      /**
       * typography
       */
  
      --fs-2: 4.8rem;
  
    }
  
  
    /**
     * RESET
     */
  
    body { font-size: 1.6rem; }
  
  
  
    /**
     * REUSED STYLE
     */
  
    .fcontainer { max-width: 750px; }
  
  
    /**
     * FOOTER
     */
  
    .footer-bottom { padding-block: 30px; }
  
    .footer-bottom .fcontainer {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
  
    .copyright { margin-block-end: 0; }
  
  
  }
  
  
  
  
  
  /**
   * responsive for larger than 992px screen
   */
  
  @media (min-width: 992px) {
  
    /**
     * CUSTOM PROPERTY
     */
  
    :root {
  
      /**
       * typography
       */
  
      --fs-2: 6rem;
      --fs-1: 4.6rem;
      --fs-3: 4.6rem;
  
    }
  
  
  
    /**
     * REUSED STYLE
     */
  
    .fcontainer { max-width: 980px; }
  
  
  
    /**
     * FOOTER
     */
  
    .footer-top .fcontainer { grid-template-columns: 1fr 0.5fr 0.6fr 0.75fr; }
  
  }
  
  
  
  /**
   * responsive for larger than 1200px screen
   */
  
  @media (min-width: 1200px) {
  
    /**
     * CUSTOM PROPERTY
     */
  
    :root {
  
      /**
       * typography
       */
  
      --fs-2: 8rem;
      --fs-1: 5.5rem;
      --fs-3: 4.8rem;
  
    }
  
  
  
    /**
     * REUSED STYLE
     */
  
    .fcontainer { max-width: 1180px; }
  
  
  }
  



/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

/*=============== SCROLL UP ===============*/

.back-top-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: #333333;
    color: #fff;
    font-size: 22px;
    width: 50px;
    height: 50px;
    border-radius: 5rem;
    display: grid;
    place-items: center;
    transition: var(--transition-1);
    opacity: 0;
    visibility: hidden;
    z-index: 4;
  }
  
  .back-top-btn:is(:hover, :focus-visible) {
    background-color: var(--gold-crayola);
    color: #333333;
  }
  
  .back-top-btn.active {
    opacity: 1;
    visibility: visible;
  }













