html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Hide the scrollbar... */
body::-webkit-scrollbar { 
    display: none; 
}

#slide-container { 
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100vw; 
    height: 100vh;
    background-color: #000;
    overflow: hidden;
}

#slides {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 0px;
    margin: 0px;
}

.slide {
    list-style: none;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 1.0;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    transition: all 1s linear; 
    -webkit-transition: all 1s linear;
    filter: blur(0px);
    transform: scale(1);
    background-color: #000; /* Dark background for better visibility */
}

/* Alternative sizing options - uncomment the one you prefer */
/* 
.slide {
    background-size: cover; 
}
*/

/* 
.slide {
    background-size: 100% 100%; 
}
*/

/* Responsive adjustments */
@media (max-width: 768px) {
    .slide {
        background-size: contain;
    }
}

.buried {
    opacity: 0.0;
    visibility: hidden;
}

.nav { 
    position: fixed; 
    z-index: 99; 
    top: 50%; 
    cursor: pointer; 
    color: #fff; 
    opacity: 0.7; 
    transition: all 0.66s ease; 
    -webkit-transition: all 0.66s ease; 
    transform: translateY(-50%);
}

.nav:hover { 
    opacity: 1.0; 
}

#left { 
    left: 3%; 
}

#right { 
    right: 3%; 
}



/* Image Info Overlay */
.image-info {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 101;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(10px);
    max-width: 300px;
}

.image-info h3 {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    margin: 0 0 10px 0;
    color: #333;
}

.image-info p {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    margin: 0;
    color: #666;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav {
        font-size: 2rem !important;
    }
    
    #left { 
        left: 5%; 
    }
    
    #right { 
        right: 5%; 
    }
    
    .image-info {
        max-width: 250px;
        padding: 15px 20px;
    }
    
    .image-info h3 {
        font-size: 20px;
    }
    
    .image-info p {
        font-size: 12px;
    }
}

/* Keyboard navigation indicator */
.slide-counter {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: white;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Booking Modal Styles */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-modal.show {
    opacity: 1;
}

.booking-modal-content {
    background: #fff;
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.booking-modal.show .booking-modal-content {
    transform: scale(1);
}

.booking-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px 15px 0 0;
}

.booking-modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
}

.booking-modal-body {
    padding: 30px;
}

.session-preview {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.session-preview img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
}

.session-info h3 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 18px;
}

.session-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-section {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    background: #fafafa;
}

.form-section h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #667eea;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.btn-primary,
.btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e0e0e0;
}

.btn-secondary:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

/* Booking Success Styles */
.booking-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #52c41a 0%, #73d13d 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
    animation: successPulse 2s ease-in-out;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.booking-success h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
}

.booking-success p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.booking-summary {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
    border-left: 4px solid #52c41a;
}

.booking-summary h4 {
    color: #333;
    margin: 0 0 15px 0;
    font-size: 18px;
}

.booking-summary p {
    margin: 8px 0;
    color: #666;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .booking-modal-header {
        padding: 20px;
    }
    
    .booking-modal-body {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .session-preview {
        flex-direction: column;
        text-align: center;
    }
    
    .session-preview img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .checkbox-group {
        flex-direction: column;
        gap: 10px;
    }
}

/* Scrollbar Styling */
.booking-modal-content::-webkit-scrollbar {
    width: 8px;
}

.booking-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.booking-modal-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.booking-modal-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Order Modal Styles */
.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.order-modal.show {
    opacity: 1;
}

.order-modal-content {
    background: #fff;
    border-radius: 15px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.order-modal.show .order-modal-content {
    transform: scale(1);
}

.order-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px 15px 0 0;
}

.order-modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.order-modal-body {
    padding: 30px;
}

.image-preview {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.image-preview img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
}

.image-info h3 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 18px;
}

.image-info p {
    margin: 0 0 10px 0;
    color: #666;
    font-size: 14px;
}

.category-tag {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Order Success Styles */
.order-success {
    text-align: center;
    padding: 40px 20px;
}

.order-success .success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #52c41a 0%, #73d13d 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
    animation: successPulse 2s ease-in-out;
}

.order-success h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
}

.order-success p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.order-summary {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
    border-left: 4px solid #52c41a;
}

.order-summary h4 {
    color: #333;
    margin: 0 0 15px 0;
    font-size: 18px;
}

.order-summary p {
    margin: 8px 0;
    color: #666;
    font-size: 14px;
}

/* Responsive Design for Order Modal */
@media (max-width: 768px) {
    .order-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .order-modal-header {
        padding: 20px;
    }
    
    .order-modal-body {
        padding: 20px;
    }
    
    .image-preview {
        flex-direction: column;
        text-align: center;
    }
    
    .image-preview img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .category-tag {
        margin-top: 10px;
    }
} 

/* Simple Like Button System */
.like-button {
  background-color: #212121;
  color: #fff;
  border: 0;
  font-size: 1.5rem;
  font-weight: 400;
  padding: 0.8em;
  border-radius: 50%;
  z-index: 999;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 60px;
  height: 60px;
  box-shadow:
    0px 1.7px 2.2px rgba(0, 0, 0, 0.02),
    0px 4px 5.3px rgba(0, 0, 0, 0.028),
    0px 7.5px 10px rgba(0, 0, 0, 0.035),
    0px 13.4px 17.9px rgba(0, 0, 0, 0.042),
    0px 25.1px 33.4px rgba(0, 0, 0, 0.05),
    0px 60px 80px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.like-button:active {
  transform: scale(1.01);
}

.like-button.liked {
  background-color: #ff4757;
}

.like-button-container {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
}

.like-counter {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 80px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.like-button-container:hover .like-counter {
  opacity: 1;
  visibility: visible;
}

.like-counter.updated {
  animation: counterPulse 0.5s ease;
}

@keyframes counterPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .like-button-container {
    top: 15px;
    left: 15px;
  }
  
  .like-button {
    font-size: 1.2rem;
    width: 50px;
    height: 50px;
    padding: 0.6em;
  }
  
  .like-counter {
    font-size: 11px;
    padding: 6px 10px;
    min-width: 70px;
  }
} 

 



 