
:root {
  --primary-color: #cc994d;
  --secondary-color: #745323;
  --text-color: #fff;
}
body {
  background: #000 !important;
  padding-top: 80px; /* Header yüksekliği için */
  scroll-behavior: smooth;
}


body.modal-open {
  overflow: hidden;
}

h2 {
  font-family: "din-condensed", sans-serif;
  font-style: normal;
  font-size: 3rem;
  font-weight: 100;
  color: var(--primary-color);
  text-decoration: none;
  padding: 10px 0px;
}


nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  }
  
  nav ul li a {
      font-family: 'Yanone Kaffeesatz', sans-serif;
      font-style: normal;
      font-size: 1.4rem;
      font-weight: 300;
      color: var(--primary-color);
      text-decoration: none;
      padding: 10px 20px;
      border-radius: 5px;
      transition: all 0.3s ease;
  }
  nav ul li a:hover {
    color: var(--secondary-color);
  }
  .kokteyl-list li b {
    color: var(--primary-color);
  }
  .kokteyl-list li {
    color: white;

  }

  
  .logo img{
    width: 150px;
  }
  
  .header {
    position: relative; 
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: black;
  }
  
  .fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
.header .container .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-right: 15px;
  }

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary-color);
  }

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
  }

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

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

.mobile-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 80%;
    max-width: 320px;
    background: #111;
    z-index: 1600;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

.mobile-menu-panel.active {
    transform: translateX(0);
  }

.mobile-menu-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    margin-left: auto;
  }

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0px;
  }

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
  }

.mobile-menu-panel .social-media {
    margin-top: auto;
  }

@media (max-width: 768px) {
  .logo img{
    width: 100px;
  }
  

  .tst-scroll-hint-frame {
    width: 50px !important;
    height: 50px !important;
}

.tst-scroll-hint-frame:after {
    width: 56px !important;
}

.tst-scroll-hint-frame .tst-scroll-hint {
    top: 0 !important;
    border: solid 2px white !important;
}

.tst-scroll-hint-frame .tst-scroll-hint:before {
    background: white !important;
}
  .footrow{
    flex-direction: column;
  }
  .footer{
    flex-direction: column;
  }
    .mobile-menu-toggle {
      display: inline-flex;
    }
  
    .main-nav ul {
      display: none !important;
    }
  
    .header .social-media.d-none.d-md-block {
      display: none !important;
    }
  }

.social-media a i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}
.social-media a i:hover {
    color: var(--secondary-color);
}
.social-media ul li a i {
    font-size: 1.5rem;
}
.reservation-link {
    color: var(--primary-color);
    text-decoration: none;
    margin-right: 10px;
}

.reservation-link i {
    margin-right: 7px;
}

/* Flip animasyonu sadece hover'da çalışsın */
.social-media a:hover .flip-on-hover {
    animation: fa-flip 1s ease-in-out;
    transform: scale(1.1);
}

/* Flip olmayan iconlar için sadece scale */
.social-media a:hover i:not(.flip-on-hover) {
    transform: scale(1.1);
}


@keyframes fa-flip {
    0% {
        transform: perspective(400px) rotateY(0) scale(1.1);
    }
    40% {
        transform: perspective(400px) rotateY(180deg) scale(1.1);
    }
    60% {
        transform: perspective(400px) rotateY(180deg) scale(1.1);
    }
    100% {
        transform: perspective(400px) rotateY(0) scale(1.1);
    }
}
.social-media a {
  margin-right: 10px;
}
.social-media a:last-child {
  margin-right: 0;
}



.full-page {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}



.product-device {
  content: '';
  position: absolute;
  right: 10%;
  bottom: -30%;
  width: 300px;
  height: 540px;
  background-color: url(assets/gregor_9.jpg);
  border-radius: 21px;
  transform: rotate(30deg);
}

.product-device::before {
  position: absolute;
  top: 10%;
  right: 10px;
  bottom: 10%;
  left: 10px;
  content: "";
  background: url(assets/gregor_9.jpg);
  border-radius: 21px;
}

  .vh70 {
    height: 70vh;
  }
  .vh80 {
    height: 80vh;
  }
  .vh90 {
    height: 90vh;
  }
  .full-height {
    height: 100vh;
  }
/* Hero Video Section */
.hero-video-section {
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: -80px; /* Fixed header için */
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    padding: 100px 0;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.9;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'Fjalla One', sans-serif;
    text-align: start;
}

.hero-title .title-line {
    display: block;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background: white;
    color: #000;
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-down {
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    display: block;
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: black;
    color: white;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 15px;
}

.section-title {
    font-size: 3rem;
    font-weight: 100;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    line-height: 1.3;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-weight: 300;
}

.about-buttons a {
    margin-top: 30px;
    text-align: center;
    background: var(--primary-color);
    padding: 10px 30px; 
    border-radius: 5px;
    border: none;
    animation: bounce 2s infinite;
}

.about-buttons a:hover {
  margin-top: 30px;
  text-align: center;
  background: var(--primary-color);
  border-radius: 10px;
  border: none;
  color: #000;
}

.about-buttons .btn-primary {
    color: white;
}
.about-section {
  background: radial-gradient(rgba(0, 0, 0, 1), rgba(255, 255, 255, 0)),
              url('../assets/gregor_9.jpg') no-repeat center center;
    background-size: cover; 
    background-attachment: fixed;
}
.about-section-2 {
  background: radial-gradient(rgba(0, 0, 0, 1), rgba(255, 255, 255, 0)),
              url('../assets/about.jpg') no-repeat center center;
              background-attachment: fixed;
}


.about-image {
    width: 100%;
    height: 70vh;
    background: #f5f5f5;
    border-radius: 10px;
    background-image: url('/assets/about.jpg');
    background-attachment: fixed;
    background-size: contain;
    background-position-x: -450px;
}

.program-section {
    color: #000;
    padding: 80px 0;
}

.program-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-weight: 300;
}

.program-carousel .program-slide {
    background: #111;
    color: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 220px;
}
.program-image img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
    object-fit: cover;
}

.program-carousel .program-slide h3 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.program-carousel .program-slide p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #e5e5e5;
}
.program-desc div {
    margin-bottom: 8px;
}

.program-carousel .program-slide .program-date {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.program-carousel .program-slide:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}


.gallery-carousel-section .owl-item:not(.center) {
    position: relative;
    z-index: 1;
}

.gallery-carousel-section .owl-item:not(.center) .item img:hover {
    opacity: 0.75;
}



.program-carousel .owl-dots {
    display: none;
}
.gallery-main-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}
.gallery-main-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 6px;
    background: rgba(255, 255, 255, 0.5);
}
.gallery-main-carousel .owl-dots .owl-dot.active span,
.gallery-main-carousel .owl-dots .owl-dot:hover span {
    background: #fff;
}

.program-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 6px;
    background: rgba(255, 255, 255, 0.5);
}

.program-carousel .owl-dots .owl-dot.active span,
.program-carousel .owl-dots .owl-dot:hover span {
    background: #fff;
}
.program-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.program-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 6px;
    background: rgba(255, 255, 255, 0.5);
}

.program-carousel .owl-dots .owl-dot.active span,
.program-carousel .owl-dots .owl-dot:hover span {
    background: #fff;
}

.owl-dots {
    text-align: center;
}
a.program-buttons {
    background: var(--primary-color);
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 1.3rem;
}

a.program-buttons a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

a.program-buttons:hover {
    background: white !important;
    transition: background 0.3s ease;
    color: black !important;
}

.program-buttons:hover a,
.program-buttons:hover i {
    color: black !important;
}

.program-placeholder {
    background: #111;
    color: #fff;
    border-radius: 20px;
    padding: 60px 30px;
}

.program-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.program-modal.open {
    display: flex;
}

.program-modal-dialog {
    background: #111;
    color: #fff;
    border-radius: 20px;
    max-width: 900px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.program-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

.program-modal-body {
    display: flex;
    flex-wrap: wrap;
}

.program-modal-image,
.program-modal-content {
    flex: 1 1 300px;
    padding: 30px;
}

.program-modal-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.program-modal-date {
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.program-modal-content h3 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.program-modal-location {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 20px;
}

.program-modal-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}
.program-modal-whatsapp:hover {
  color: #000;
}

.social-media ul {
    display: flex;
    flex-direction: row;
}

@media (max-width: 768px) {
    .program-modal-body {
        flex-direction: column;
    }
}

/* Responsive */
@media (max-width: 768px) {
  .tst-scroll-hint-frame{width: 50px; height: 50px;background-color: transparent;}

  .program-section h2{font-size: 2rem;}
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}









.tst-scroll-hint-frame {
    height: 74px;
    width: 74px;
    border-radius: 50%;
    position: absolute;
    bottom: 20px;
    left: calc(50% - 37px);
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: none !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--primary-color);
}

.tst-scroll-hint-frame:after {
    -webkit-transform: scaleX(1.25) scaleY(1.09);
    transform: scaleX(1.25) scaleY(1.09);
    content: '';
    width: 74px;
    height: 37px;
    opacity: .15;
    border-radius: 1000px 1000px 0 0;
    position: absolute;
    top: -11.6%;
    background-color: var(--primary-color);
    z-index: -2
}

.tst-scroll-hint-frame .tst-scroll-hint {
    -webkit-transform: scale(.8);
    transform: scale(.8);
    top: -5px;
    position: relative;
    height: 40px;
    width: 25px;
    border: solid 2px #1a2f33;
    border-radius: 20px
}

.tst-scroll-hint-frame .tst-scroll-hint:before {
    content: '';
    height: 4px;
    width: 4px;
    border-radius: 50%;
    background-color: #1a2f33;
    position: absolute;
    top: 7px;
    left: 50%;
    -webkit-animation: scroll 1s infinite;
    animation: scroll 1s infinite
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateY(0) translateX(-50%);
        transform: translateY(0) translateX(-50%)
    }

    50% {
        -webkit-transform: translateY(6px) translateX(-50%);
        transform: translateY(6px) translateX(-50%)
    }

    100% {
        -webkit-transform: translateY(0) translateX(-50%);
        transform: translateY(0) translateX(-50%)
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateY(0) translateX(-50%);
        transform: translateY(0) translateX(-50%)
    }

    50% {
        -webkit-transform: translateY(6px) translateX(-50%);
        transform: translateY(6px) translateX(-50%)
    }

    100% {
        -webkit-transform: translateY(0) translateX(-50%);
        transform: translateY(0) translateX(-50%)
    }
}

/* Gallery Carousel Section */
.gallery-carousel-section {
  padding: 80px 0;
  margin: 0 auto;
  overflow: hidden;
}

.gallery-empty {
  background: #f7f7f7;
  border-radius: 20px;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.05);
}



.owl-carousel {
  padding: 20px 0;
}

.gallery-main-carousel .item,
.gallery-kokteyl-carousel .item {
  padding: 10px;
  position: relative;
}

.gallery-main-carousel .item img,
.gallery-kokteyl-carousel .item img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  /*transition: all 0.4s ease;*/
  display: block;
  cursor: pointer;
  margin: 14% 16px;
  position: relative;
  z-index: 1;
}

.gallery-main-carousel .owl-item.center {
  position: relative;
  z-index: 100;
}

.gallery-main-carousel .owl-item.center .item {
  position: relative;
  z-index: 100;
}

.gallery-main-carousel .owl-item.center .item img {
  cursor: auto;
  margin: 0 12px;
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 100;
  border-radius: 30px;
}

.gallery-main-carousel .owl-item:not(.center) {
  position: relative;
  z-index: 1;
}

.gallery-main-carousel .owl-item:not(.center) .item img:hover {
  opacity: 0.75;
}

.gallery-kokteyl-carousel .item img {
  height: 500px;
  border-radius: 20px;
  margin: 0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.gallery-kokteyl-carousel .owl-item.center .item img {
  transform: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}

.gallery-lightbox.open {
  display: flex;
}

.gallery-lightbox img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.footrow{
  display: flex;
}

.gallery-lightbox-close {
  top: 30px;
  right: 40px;
}

.gallery-lightbox-prev {
  left: 40px;
}

.gallery-lightbox-next {
  right: 40px;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  background: rgba(255,255,255,0.4);
}