@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');

: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;
  }
}

                                /**                                    ABOUT SECTİON START                             */


.headline-1 {
  color: var(--white);
  font-family: var(--fontFamily-forum);
  font-weight: var(--weight-regular);
  line-height: var(--lineHeight-2);
}

.label-2 { font-size: var(--fontSize-label-2); }


/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 16px; }

.text-center { text-align: center; }
                                                                            /** .section-subtitle yi hakkımızda yazmadığım için silebilirim  */ 

                                                                       /** FONT SİZE 12 PX OLACAK   */ 
.section-subtitle {
  position: relative;
  color: var(--gold-crayola);
  font-size: 12px;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-2);
  margin-block-end: 12px;
}

.section-subtitle::after {            
  display: block;
  width: 100px;
  margin-inline: auto;
  margin-block-start: 5px;
}

                                                                       /** FONT SİZE 12 PX OLACAK   */ 
.aboutbtn {
  position: relative;
  display: flex;
  color: inherit;
  text-decoration: none;
  align-items: center;
  background: #111111;
  color: #fff;
  font-size: 1.1em;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: var(--letterSpacing-5);
  max-width: max-content;
  border: 1px solid #333;
  border-radius: 2px;
  padding: 12px 45px;
  overflow: hidden;
  z-index: 1; 
}

.aboutbtn:hover{
  background-color: #010100;
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.section {
  position: relative;
  padding-block: var(--section-space);
  overflow: hidden;
  z-index: 1;
}

.hover\:shine { position: relative; }

.hover\:shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: linear-gradient(to right, transparent 0%, #fff6 100%);
  transform: skewX(-0.08turn) translateX(-180%);
}

.hover\:shine:is(:hover, :focus-within)::after {
  transform: skewX(-0.08turn) translateX(275%);
  transition: var(--transition-3);
}


.w-100 { 
  display: block;
  width: 100%; 
  height: auto;
}

.w-200{
  display: block;
  height: auto;
}

@keyframes move {
  0%,
  100% { transform: translateY(0); }

  50% { transform: translateY(30px); }
}


/*-----------------------------------*\
  #PRELOAD  ESKİ
\*-----------------------------------*/


.preload {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #333;
  z-index: 1000;
  display: grid;
  place-content: center;
  justify-items: center;
  transition: var(--transition-2);
}

.preload > * { transition: var(--transition-1); }

.preload.loaded > * { opacity: 0; }

.preload.loaded {
  transition-delay: 250ms;
  transform: translateY(100%);
}

.circle {
  width: 112px;
  height: 112px;
  border-radius: var(--radius-circle);
  border: 3px solid var(--white);
  border-block-start-color: var(--smoky-black-3);
  margin-block-end: 45px;
  animation: rotate360 1s linear infinite;
}

@keyframes rotate360 {
  0% { transform: rotate(0); }
  100% { transform: rotate(1turn); }
}

.preload .text {
  background-image: var(--loading-text-gradient);
  background-size: 500%;
  font-size: calc(2rem + 3vw);
  font-weight: var(--weight-bold);
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 16px;
  padding-inline-start: 16px;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-stroke: 0.5px var(--eerie-black-3);
  animation: loadingText linear 2s infinite;
}

@keyframes loadingText {
  0% { background-position: 100%; }
  100% { background-position: 0%; }
}



/*-----------------------------------*\
  # 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; }
}


/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/
                                                                       /** FONT SİZE 16 PX OLACAK   */ 
.about .section-text { 
  font-size: 16px;
  margin-block: 10px 15px; 
  text-align: center;
  line-height: 1.6;
}

.about .aboutbtn {
  margin-inline: auto;
}

.about .container {
  display: grid;
  gap: 120px;
}
                                                                       /** FONT SİZE 42 PX OLACAK   */ 
.about-content h2{
  font-size: 42px;
  font-weight:bold;
  color: #000;
  font-family: "Poppins", sans-serif;
}
                                                                       /** FONT SİZE 38 PX OLACAK   */ 
.about-content h2 span{
  font-size: 38px;
  color: #fff;
  font-family: 'Dancing Script', cursive;
}

.about-banner {
  position: relative;
  margin-block-end: 120px;
}

.about-banner > .w-100 { padding-inline-start: 50px; }

.about .abs-img { position: absolute; }

.about .abs-img::before { z-index: -1; }

.about .abs-img-1 {
  bottom: -120px;
  left: 0;
  width: 150px;
  padding-block: 50px;
}

.about .abs-img-2 {
  top: -65px;
  right: 0;
  overflow: hidden;
}

.about .abs-img-1::before {
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  background-image: url('./images/img-pattern.jpg');
  background-repeat: repeat;
}

.about .abs-img-2::before {
  inset: 0;
  background-image: url('./images/badge-2-bg.png');
  background-repeat: no-repeat;
  background-size: contain;
  animation: rotate360 15s linear infinite;
}



/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/
@media (max-width: 330px){
  .aboutbtn{
    font-size: 14px;
  }
}
/**
 * responsive for larger than 575px screen
 */

@media (min-width: 575px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fontSize-body-2: 2rem;

  }


  /**
   * REUSED STYLE
   */

  :is(.service, .about) .section-text {
    max-width: 420px;
    margin-inline: auto;
  }

  /**
   * ABOUT
   */

  .about .container { gap: 80px; }

  .about-banner > .w-100 { padding-inline-start: 90px; }

  .about .abs-img-1 { width: 285px; }

  .about .contact-number { --fontSize-body-1: 2.4rem; }


}


/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  :is(.service, .event) .container { max-width: 820px; }

  :is(.service, .event) .grid-list li:last-child {
    grid-column: 1 / 3;
    width: calc(50% - 20px);
    margin-inline: auto;
  }
}


/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * spacing
     */
    --section-space: 100px;

  }

  /**
   * REUSED STYLE
   */

  :is(.service, .event) .container { max-width: unset; }

  /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: 0.7fr 1fr;
    gap: 30px;
  }
}

/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fontSize-title-2: 2.5rem;

  }

  /**
   * REUSED STYLE
   */

  .container,
  :is(.service, .event) .container {
    max-width: 1200px;
    width: 100%;
    margin-inline: auto;
  }

  /**
   * ABOUT
   */

  .about { padding-block: 170px 100px; }
}


/**
 * responsive for larger than 1400px screen
 */

@media (min-width: 1400px) {

  /**
   * ABOUT
   */

  .about-content { padding-inline-end: 90px; }

  .about .shape {
    display: block;
    top: 46%;
    left: 0;
  }

}

                                      /**                                    ABOUT SECTİON  ENDS                             */                      
                                      
                                      
                                      /**                                    ÖDÜLERİMİZ  START                             */                      

                                      /**                                    NEW START                            */

                                  
/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.ogcontainer { padding-inline: 15px; }

.section { padding-block: var(--section-padding); }

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  position: absolute;
  content: "";
}

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.h1,
.h2,
.h3 {
  font-family: var(--ff-oswald);
  line-height: 1.3;
}

.h1,
.h2 { text-transform: uppercase; }

.h1,
.h3 { font-weight: var(--fw-600); }

.h1 {
  color: var(--white);
  font-size: var(--fs-40);
}

.h2,
.h3 { color: var(--eerie-black-1); }

.h2 { font-size: 35px; }

.h3 { font-size: var(--fs-24); }

.span { 
  font-size: 14px;
  display: block; }

.sergalbtn {
 background: #111111;
 padding: 10px 25px;
 color: #fff;
 font-size: 1.1em;
 font-weight: 500;
 border: 1px solid #333;
 text-decoration: none;
 display: flex;
 justify-content: space-between;   /* yeni ekledim */
 align-items: center;
 overflow: hidden;
 border-radius: 2px;
 letter-spacing: var(--letterSpacing-5);
 transition: 0.3s ease;
}

.sergalbtn:hover {
  background-color: #010100;
}


.sergalbtn:is(:hover, :focus)::before { transform: skewY(-15deg) scaleY(2.5); }

.text-center { text-align: center; }

.grid-list {
  display: grid;
  gap: 30px;
}

  /** a lar burada /*/
.card-btn,
.card-title{
  display: block;
  color: inherit;
  text-decoration: none;
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
  overflow: hidden;
}

                                   
.img-cover {
  display: block;
  height: auto; 
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.gservice { text-align: center; }  

.service .gsection-text {
  font-size: 16px;
  margin-block: 15px 55px; }

.service-card {
  background-color: var(--white);
  padding: 60px 25px;
  box-shadow: var(--shadow-1);
  border-radius: var(--radius-8);
}

.service-card .card-icon {
  color: var(--gold-crayola);                            /* indian-yellowdu   cdb434 yaptım */
  font-size: 70px;
  line-height: 1;
}

.service-card .card-title {
  font-size: 24px;
  margin-block: 15px 12px;
  transition: var(--transition-1);
}

.service-card .card-title:is(:hover, :focus) { color: var(--gold-crayola); }    /* indian-yellowdu   cdb434 yaptım */


.service-card .card-text {
   font-size: 16px;
   margin-block-end: 30px; }

.service-card .card-btn {
  color: var(--gold-crayola);                                       /* indian-yellowdu   cdb434 yaptım */
  background-color: var(--white);
  max-width: max-content;
  margin-inline: auto;
  font-size: 20px;
  padding: 15px;
  box-shadow: var(--shadow-2);
  border-radius: var(--radius-5);
  transition: var(--transition-2);
}

.service-card:is(:hover, :focus-within) .card-btn {
  background-color: var(--gold-crayola);                                       /* indian-yellowdu   cdb434 yaptım */
  color: var(--white);
}



/*-----------------------------------*\
  #GALLERY
\*-----------------------------------*/

.title-wrapper { margin-block-end: 60px; }

.gallery .gsection-text
{ 
  font-size: 16px;
  margin-block: 12px 15px; 
}

.gallery-card { position: relative; }

.gallery-card .card-banner .img-cover { transition: var(--transition-2); }

.gallery-card:is(:hover, :focus-within) .card-banner .img-cover { transform: scale(1.1); }

.gallery-card .card-content {
  position: absolute;
  inset: 15px;
  background-color: var(--eerie-black-2_85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition-2);
}

.gallery-card:is(:hover, :focus-within) .card-content {
  opacity: 1;
  transform: scale(1);
}

.gallery-card :is(.card-title, .card-text) { color: var(--white); }

.gallery-card .card-btn {
  background-color: var(--white);
  color: var(--gold-crayola);
  font-size: 18px;
  padding: 16px;
  border-radius: var(--radius-5);
  margin-block-start: 12px;
  transition: var(--transition-1);
}

.gallery-card .card-btn:is(:hover, :focus) {
  background-color: var(--gold-crayola);
  color: var(--white);
}


/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 575px screen
 */

@media (min-width: 575px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-40: 6rem;

  }


  /**
   * REUSED STYLE
   */

  .ogcontainer,
  .header-top {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }

  .sergalbtn { padding: 13px 40px; }

  .h2 { --fs-30: 3.5rem; }


  /**
   * GALLERY
   */

  .gallery .grid-list { grid-template-columns: 1fr 1fr; }



}



/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-40: 8rem;

  }


  /**
   * REUSED STYLE
   */

  .ogcontainer { max-width: 720px; }

  .h2 { --fs-30: 4rem; }

  .gsection-text {
    max-width: 50ch;
    margin-inline: auto;
  }


  /**
   * SERVICE
   */

  .gservice .grid-list { grid-template-columns: 1fr 1fr; }               


  /**
   * GALLERY
   */

  .gallery .gsection-text { margin-inline: 0; }

  .gallery-card .card-content { inset: 30px; }



}


/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-40: 10rem;

  }



  /**
   * REUSED STYLE
   */

  .ogcontainer { max-width: 960px; }


  /**
   * SERVICE
   */

  .gservice .grid-list { grid-template-columns: repeat(3, 1fr); }                     


  /**
   * GALLERY
   */

  .gallery .title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

  .gallery .gsection-text { margin-block-end: 0; }


}


/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-40: 11rem;

    /**
     * spacing
     */

    --section-padding: 120px;

  }


  /**
   * REUSED STYLE
   */

  .ogcontainer { max-width: 1200px; }


  /**
   * GALLERY
   */

  .gallery .grid-list { grid-template-columns: repeat(4, 1fr); }

}









                                      /**                                    ÖDÜLERİMİZ  ENDS                             */                      



                                         
                                      /**                                    NEW START                            */

                                  
/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.ogcontainer { padding-inline: 15px; }

.section { padding-block: var(--section-padding); }

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  position: absolute;
  content: "";
}

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.h1,
.h2,
.h3 {
  font-family: var(--ff-oswald);
  line-height: 1.3;
}

.h1,
.h2 { text-transform: uppercase; }

.h1,
.h3 { font-weight: var(--fw-600); }

.h1 {
  color: var(--white);
  font-size: var(--fs-40);
}

.h2,
.h3 { color: var(--eerie-black-1); }

.h2 { font-size: 35px; }

.h3 { font-size: var(--fs-24); }

.span { 
  font-size: 14px;
  display: block; }

.sergalbtn {
 background: #111111;
 padding: 10px 25px;
 color: #fff;
 font-size: 1.1em;
 font-weight: 500;
 border: 1px solid #333;
 text-decoration: none;
 display: flex;
 justify-content: space-between;   /* yeni ekledim */
 align-items: center;
 overflow: hidden;
 border-radius: 2px;
 letter-spacing: var(--letterSpacing-5);
 transition: 0.3s ease;
}

.sergalbtn:hover {
  background-color: #010100;
}


.sergalbtn:is(:hover, :focus)::before { transform: skewY(-15deg) scaleY(2.5); }

.text-center { text-align: center; }

.grid-list {
  display: grid;
  gap: 30px;
}

  /** a lar burada /*/
.card-btn,
.card-title{
  display: block;
  color: inherit;
  text-decoration: none;
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
  overflow: hidden;
}

                                   
.img-cover {
  display: block;
  height: auto; 
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 575px screen
 */

@media (min-width: 575px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-40: 6rem;

  }


  /**
   * REUSED STYLE
   */

  .ogcontainer,
  .header-top {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }

  .sergalbtn { padding: 13px 40px; }

  .h2 { --fs-30: 3.5rem; }


  /**
   * GALLERY
   */

  .gallery .grid-list { grid-template-columns: 1fr 1fr; }



}



/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-40: 8rem;

  }


  /**
   * REUSED STYLE
   */

  .ogcontainer { max-width: 720px; }

  .h2 { --fs-30: 4rem; }

  .gsection-text {
    max-width: 50ch;
    margin-inline: auto;
  }


  /**
   * SERVICE
   */

  .gservice .grid-list { grid-template-columns: 1fr 1fr; }               


  /**
   * GALLERY
   */

  .gallery .gsection-text { margin-inline: 0; }

  .gallery-card .card-content { inset: 30px; }



}


/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-40: 10rem;

  }



  /**
   * REUSED STYLE
   */

  .ogcontainer { max-width: 960px; }


  /**
   * SERVICE
   */

  .gservice .grid-list { grid-template-columns: repeat(3, 1fr); }                     


  /**
   * GALLERY
   */

  .gallery .title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

  .gallery .gsection-text { margin-block-end: 0; }


}


/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-40: 11rem;

    /**
     * spacing
     */

    --section-padding: 120px;

  }


  /**
   * REUSED STYLE
   */

  .ogcontainer { max-width: 1200px; }


  /**
   * GALLERY
   */

  .gallery .grid-list { grid-template-columns: repeat(4, 1fr); }

}



/**                                                                 FOOTER STARTS       */


/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */
   --gold-crayola: hsl(38, 61%, 73%);

  --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-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);                     /* MAVİ İCON RENGİ */
  color: var(--white);
  font-size: 18px;
  padding: 11px;
  border-radius: 50%;
}

.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;
}
