/* Company Video Page Styles */

@font-face {
    font-family: 'Tuborg Grotesque';
    src: url("../fonts/TuborgGrotesque-Regular.6784460ca72f.otf") format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Tuborg Grotesque';
    src: url("../fonts/TuborgGrotesque-Bold.a08c63cefbeb.otf") format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Tuborg Grotesque';
    src: url("../fonts/TuborgGrotesque-Black.f9e2b13d59e6.otf") format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Tuborg Grotesque';
    src: url("../fonts/TuborgGrotesque-Light.e0bfb28c12e0.otf") format('opentype');
    font-weight: 300;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tuborg Grotesque', Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Verification Overlay with Animated Background */
.verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #f8f9fa, #e9ecef, #f8f9fa, #ffffff);
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
    display: none; /* Hidden by default, shown by JavaScript when needed */
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Forward Zoom Animation */
.verification-overlay.zoom-forward {
    animation: forwardZoom 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes forwardZoom {
    0% {
        transform: scale(1) translateZ(0);
        opacity: 1;
    }
    100% {
        transform: scale(1.2) translateZ(100px);
        opacity: 0;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.verification-popup {
    background: url("../images/background_form.cf53447e3e8b.png") no-repeat center center;
    background-size: cover;
    border-radius: 0;
    padding: 0;
    max-width: 450px;
    width: 90%;
    position: relative;
    z-index: 100000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.verification-form-container {
    background-color: transparent;
    padding: 40px 30px 0;
    border-radius: 8px;
    margin: 20px;
    position: relative;
}

.verification-logo {
    text-align: center;
    margin-bottom: 30px;
}

.verification-logo img {
    max-height: 80px;
    width: auto;
}

.form-section {
    margin-bottom: 25px;
}

.section-title {
    display: block;
    color: #000;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-group {
    position: relative;
}

.form-group select {
    width: 100%;
    padding: 12px 15px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    color: #333;
    font-size: 14px;
    font-family: 'Tuborg Grotesque', Arial, sans-serif;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
}

.form-group select:focus {
    outline: none;
    border-color: #FFC72C;
    box-shadow: 0 0 8px rgba(255, 199, 44, 0.3);
}

.date-inputs {
    display: flex;
    gap: 10px;
}

.date-inputs input {
    flex: 1;
    padding: 12px 15px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    color: #333;
    font-size: 14px;
    font-family: 'Tuborg Grotesque', Arial, sans-serif;
    text-align: center;
}

.date-inputs input:focus {
    outline: none;
    border-color: #FFC72C;
    box-shadow: 0 0 8px rgba(255, 199, 44, 0.3);
}

.date-inputs input::placeholder {
    color: #999;
    font-size: 12px;
}

.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #333;
    font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 3px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #000;
    border-color: #000;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-actions {
    margin: 25px 0;
}

.btn-submit {
    width: 100%;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Tuborg Grotesque', Arial, sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #333;
    transform: translateY(-1px);
}

.terms-text {
    text-align: center;
    color: #666;
    font-size: 12px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.terms-link {
    color: #666;
    text-decoration: underline;
}

.terms-link:hover {
    color: #000;
}

.age-warning {
    background-color: #FFC72C;
    color: #000;
    text-align: center;
    padding: 15px;
    margin: 0 -50px -50px -50px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 1.3;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Toast Notification - Top Right Corner */
.verification-message {
    position: fixed;
    top: 30px;
    right: 30px;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    display: none;
    z-index: 100001;
    min-width: 200px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: toastSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.verification-message.success {
    background: rgba(40, 167, 69, 0.95);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.verification-message.error {
    background: rgba(220, 53, 69, 0.95);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

/* Main Content */
.main-content {
    min-height: 100vh;
    background: url("../images/background_main.5465b020ef65.png") no-repeat center center fixed;
    background-size: cover;
    padding: 0;
    margin: 0;
    display: none; /* Hidden by default, shown by JavaScript after verification */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 4rem;
    font-weight: bold;
    color: #FFC72C;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.page-header p {
    font-size: 1.5rem;
    color: #ccc;
    font-weight: 300;
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.video-card {
    background-color: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 199, 44, 0.2);
}

.video-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.video-container iframe,
.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    pointer-events: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* Video koruma stilleri */
.video-container video::-webkit-media-controls-download-button {
    display: none !important;
}

.video-info {
    padding: 25px;
}

.video-info h3 {
    color: #FFC72C;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.video-info p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
}

.no-videos {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #333;
    margin-top: 60px;
}

.footer p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .verification-popup {
        max-width: 95%;
        margin: 10px;
    }

    .verification-form-container {
        padding: 30px 20px 0;
        margin: 15px;
    }

    .verification-logo img {
        max-height: 60px;
    }

    .section-title {
        font-size: 13px;
    }

    .form-group select,
    .date-inputs input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .date-inputs {
        gap: 8px;
    }

    .checkbox-label {
        font-size: 13px;
    }

    .btn-submit {
        padding: 12px;
        font-size: 15px;
    }

    .terms-text {
        font-size: 11px;
    }

    .age-warning {
        font-size: 13px;
        padding: 12px;
        margin: 0 -35px -35px -35px;
    }

    .page-header h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .page-header p {
        font-size: 1.2rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .video-container {
        height: 200px;
    }

    .container {
        padding: 0 15px;
    }

    /* Toast responsive */
    .verification-message {
        top: 20px;
        right: 20px;
        left: 20px;
        min-width: auto;
        font-size: 13px;
        padding: 12px 20px;
    }

    @keyframes toastSlideIn {
        from {
            opacity: 0;
            transform: translateY(-50px) scale(0.8);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
}

@media (max-width: 480px) {
    .verification-popup {
        max-width: 98%;
        margin: 5px;
    }

    .verification-form-container {
        padding: 25px 15px 0;
        margin: 10px;
    }

    .verification-logo img {
        max-height: 50px;
    }

    .section-title {
        font-size: 12px;
    }

    .form-group select,
    .date-inputs input {
        padding: 8px 10px;
        font-size: 12px;
    }

    .date-inputs {
        gap: 6px;
    }

    .checkbox-label {
        font-size: 12px;
    }

    .checkmark {
        width: 16px;
        height: 16px;
        margin-right: 8px;
    }

    .btn-submit {
        padding: 10px;
        font-size: 14px;
    }

    .terms-text {
        font-size: 10px;
    }

    .age-warning {
        font-size: 12px;
        padding: 10px;
        margin: 0 -15px -25px -15px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .video-info {
        padding: 20px;
    }

    .video-info h3 {
        font-size: 1.2rem;
    }

    /* Toast mobile */
    .verification-message {
        top: 15px;
        right: 15px;
        left: 15px;
        font-size: 12px;
        padding: 10px 15px;
    }
}

/* Sağ tık koruması */
.video-container,
.video-container * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Video Page Specific Styles */

/* Ek video koruma stilleri */
video::-webkit-media-controls-download-button {
  display: none !important;
}

video::-webkit-media-controls-picture-in-picture-button {
  display: none !important;
}

/* HTML ve Body için temel ayarlar */
html {
  height: 100%;
  background: url("../images/background_main.5465b020ef65.png") no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
}

/* Ana tasarım stilleri - body override */
body {
  background: url("../images/background_main.5465b020ef65.png") no-repeat center center fixed !important;
  background-size: cover !important;
  position: relative;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Tuborg Grotesque', Arial, sans-serif !important;
  color: #fff !important;
  line-height: 1.6 !important;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-section {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
  overflow: hidden;
}

.top-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  max-height: 100px;
  width: auto;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  margin-left: 40px;
  opacity: 1;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hero Content Animation */
.hero-content.animate-in {
  opacity: 1 !important;
  animation: heroSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes heroSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: 'Tuborg Grotesque', Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0;
  line-height: 0.8;
}

.hero-title .yellow-text {
  color: #ffc629;
  font-size: 5rem;
  display: block;
  margin-bottom: -25px;
  font-family: 'Tuborg Grotesque', Arial, sans-serif;
  font-weight: 900;
}

.hero-title .black-text {
  color: #000000;
  font-size: 3.7rem;
  display: block;
  margin-bottom: 0;
  font-family: 'Tuborg Grotesque', Arial, sans-serif;
  font-weight: 900;
}

.hero-subtitle {
  font-size: 1rem;
  color: #000000;
  font-family: 'Tuborg Grotesque', Arial, sans-serif;
  font-weight: normal;
  margin-top: 8px;
  margin-bottom: 10px;
  max-width: none;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-subtitle .black-word {
  color: #000000;
  font-weight: bold;
}

.beer-showcase {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
  gap: 80px;
  margin-top: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 40px;
  flex-shrink: 0;
  min-height: 460px;
  opacity: 1;
  transition: opacity 0.6s ease-out;
}

.beer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: all 0.4s ease;
  flex: 0 0 auto;
  justify-content: flex-end;
  height: 100%;
  min-width: 200px;
  max-width: 300px;
  opacity: 1;
}

/* Beer Item Animation */
.beer-item.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
  animation: beerSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes beerSlideIn {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.beer-item:hover {
  transform: translateY(-15px);
}

.beer-image {
  height: 380px;
  width: auto;
  margin-bottom: 15px;
  transition: all 0.4s ease;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.beer-item:hover .beer-image {
  transform: scale(1.05);
}

.beer-button {
  cursor: pointer;
  transition: all 0.4s ease;
  width: auto;
  height: 55px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  flex-shrink: 0;
}

.beer-item:hover .beer-button {
  transform: scale(1.1);
}

/* Video Modal Stilleri */
.video-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  transition: all 0.3s ease;
}

.video-modal.show {
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.video-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: #000;
  border-radius: 15px;
  padding: 30px;
  max-width: 85vw;
  max-height: 90vh;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.3s ease;
  overflow: hidden;
}

.video-modal.show .video-modal-content {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.video-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  color: white;
}

.video-modal-title {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: 'Tuborg Grotesque', Arial, sans-serif;
}

.video-modal-close {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.video-modal-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.video-modal-player {
  position: relative;
  width: 100%;
  height: 60vh;
  max-width: 800px;
  max-height: 450px;
  min-width: 400px;
  min-height: 225px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}

.video-modal-player iframe,
.video-modal-player video {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  display: block;
}

.video-modal-description {
  color: #ccc;
  margin-top: 15px;
  font-size: 1rem;
  line-height: 1.4;
}

/* Responsive Design Updates */
@media (max-width: 1200px) {
  .hero-title .yellow-text {
    font-size: 4rem;
  }

  .hero-title .black-text {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .beer-showcase {
    gap: 35px;
    padding: 0 20px;
  }

  .beer-image {
    height: 350px;
  }

  .beer-button {
    height: 50px;
  }

  /* Modal responsive */
  .video-modal-player {
    width: 60vw;
    height: 33.75vw;
    min-width: 450px;
    min-height: 253px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 10px 20px;
    min-height: 100vh;
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .top-section {
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }

  .hero-content {
    margin-left: 0;
    margin-top: 20px;
    align-items: center;
    text-align: center;
  }

  .hero-title .yellow-text {
    font-size: 2.5rem;
  }

  .hero-title .black-text {
    font-size: 1.9rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    white-space: normal;
  }

  .beer-showcase {
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 10px;
    height: auto;
    margin-bottom: 30px;
  }

  .beer-item {
    flex: none;
    min-width: 200px;
    height: auto;
    margin-bottom: 20px;
  }

  .beer-image {
    height: 280px;
  }

  .beer-button {
    height: 45px;
  }

  /* Video Modal responsive */
  .video-modal-content {
    padding: 15px;
    margin: 10px;
    max-width: 90vw;
    max-height: 85vh;
  }

  .video-modal-player {
    width: calc(90vw - 50px);
    height: calc((90vw - 50px) * 0.5625);
    min-width: 280px;
    min-height: 157px;
    max-width: none;
    max-height: 45vh;
  }

  .video-modal-title {
    font-size: 1.2rem;
  }

  .video-modal-close {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .video-modal-content {
    padding: 10px;
    margin: 5px;
    max-width: 95vw;
    max-height: 90vh;
  }

  .video-modal-player {
    width: calc(95vw - 40px);
    height: calc((95vw - 40px) * 0.5625);
    min-width: 250px;
    min-height: 140px;
    max-height: 40vh;
  }
}
