/* General Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

p {
  line-height: 1.7;
  margin-bottom: 15px;
}

h2 {
  margin-bottom: 20px;
}

img {
  max-width: 100%;
  height: auto;
}

.tm-black-bg {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 5px;
}

.tm-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1000;
}

.tm-row {
  display: flex;
  flex-direction: row;
}

/* Video Background */
.tm-video-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

#tm-video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

#tm-video-control-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  z-index: 1000;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

#tm-video-control-button:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Left Side - Menu */
.tm-left {
  width: 350px;
  position: fixed;
  height: 100%;
  z-index: 2;
}

.tm-left-inner {
  background-color: rgba(0, 0, 0, 0.8);
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.tm-site-header {
  margin-bottom: 60px;
}

.tm-site-name {
  font-size: 2.5rem;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
  position: relative;
}

.tm-site-name::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 40%;
  height: 3px;
  background: linear-gradient(to right, #e67e22, transparent);
}

.tm-site-nav {
  flex: 1;
}

.tm-site-nav-ul {
  list-style: none;
}

.tm-page-nav-item {
  margin-bottom: 25px;
}

.tm-page-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-left: 3px solid transparent;
  padding-left: 15px;
}

.tm-page-link:hover,
.tm-page-link.active {
  color: #e67e22;
  border-left: 3px solid #e67e22;
}

.tm-page-link-icon {
  margin-right: 15px;
}

/* Right Side - Content */
.tm-right {
  margin-left: 350px;
  width: calc(100% - 350px);
}

.tm-main {
  padding: 50px;
  min-height: 100vh;
}

/* Tab Content */
.tm-page-content {
  display: none;
  animation: fadeEffect 0.5s;
}

@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* Drinks Navigation */
.tm-drinks-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  border-radius: 5px;
}

.tm-drinks-nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
}

.tm-drinks-nav li {
  margin: 0 10px;
}

.tm-tab-link {
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.tm-tab-link:hover,
.tm-tab-link.active {
  color: #fff;
  background-color: #e67e22;
}

/* Menu Items */
.tm-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.tm-list-item {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  height: 100%;
}

.tm-list-item:hover {
  transform: translateY(-5px);
}

.tm-list-item-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tm-list-item-text {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  flex: 1;
}

.tm-list-item-name {
  font-size: 1.2rem;
  margin-bottom: 10px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tm-list-item-price {
  color: #e67e22;
  font-weight: 700;
}

.tm-list-item-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* About Page */
.tm-about-box-1, .tm-about-box-2 {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.tm-text-primary {
  color: #e67e22;
  margin-bottom: 20px;
}

.tm-list-item-2 {
  display: flex;
  gap: 30px;
}

.tm-list-item-img-big {
  width: 40%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}

.tm-list-item-text-2 {
  width: 60%;
}

.tm-img-right {
  order: 2;
}

/* Special Items */
.tm-special-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.tm-special-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.tm-special-item:hover {
  transform: translateY(-5px);
}

.tm-special-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tm-special-item-description {
  padding: 20px;
}

.tm-special-item-title {
  text-align: center;
  margin-bottom: 15px;
}

.tm-special-item-text {
  text-align: center;
  line-height: 1.6;
}

/* Contact Page */
.tm-contact-text-container, .tm-contact-form-container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 30px;
}

.tm-form-group {
  margin-bottom: 20px;
}

.tm-form-control {
  width: 100%;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.tm-btn-primary {
  background-color: #e67e22;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tm-btn-primary:hover {
  background-color: #d35400;
}

.tm-align-right {
  text-align: right;
}

/* Footer */
.tm-site-footer {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px 0;
  text-align: center;
  position: relative;
  z-index: 1000;
}

.tm-footer-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .tm-list-item-2 {
    flex-direction: column;
  }
  
  .tm-list-item-img-big, .tm-list-item-text-2 {
    width: 100%;
  }
  
  .tm-img-right {
    order: 1;
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .tm-row {
    flex-direction: column;
  }
  
  .tm-left {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  
  .tm-left-inner {
    height: auto;
  }
  
  .tm-site-header {
    margin-bottom: 30px;
  }
  
  .tm-site-nav-ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .tm-page-nav-item {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  
  .tm-right {
    margin-left: 0;
    width: 100%;
  }
  
  .tm-main {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .tm-site-nav-ul {
    flex-direction: column;
  }
  
  .tm-page-nav-item {
    margin-right: 0;
  }
  
  .tm-drinks-nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  .tm-drinks-nav li {
    margin: 5px 0;
    width: 100%;
    text-align: center;
  }
  
  .tm-tab-link {
    display: block;
    width: 100%;
  }
  
  .tm-list {
    grid-template-columns: 1fr;
  }
  
  .tm-special-items {
    grid-template-columns: 1fr;
  }
  
  .tm-main {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .tm-black-bg {
    padding: 20px;
  }
  
  .tm-site-name {
    font-size: 1.8rem;
  }
  
  .tm-page-link {
    font-size: 1rem;
  }
  
  .tm-list-item-name {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .tm-list-item-price {
    margin-top: 5px;
  }
}
