:where([class^="ri-"])::before { content: "\f3c2"; }
body {
    font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.slider-dot.active {
    background-color: #c8a97e;
    transform: scale(1.2);
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background-color: #c8a97e;
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Gallery Slider */
.gallery-slider {
    position: relative;
    width: 100%;
    max-width: 70%;
    height: 500px;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 15px;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 5;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background-color: #c8a97e;
    transform: scale(1.2);
}

.gallery-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.gallery-arrow:hover {
    background-color: #c8a97e;
}

.gallery-arrow.prev {
    left: 15px;
}

.gallery-arrow.next {
    right: 15px;
}

/* Input styles */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Language selector */
.language-selector {
    position: relative;
}

.language-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 50;
    min-width: 120px;
}

.language-selector:hover .language-options {
    display: block;
}

/* Custom checkbox */
.custom-checkbox {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 2px solid #c8a97e;
    border-radius: 4px;
}

.custom-checkbox input:checked ~ .checkmark:after {
    content: "";
    position: absolute;
    display: block;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #c8a97e;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Restaurant section hover effects */
.restaurant-feature {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.restaurant-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Restaurant section images */
#Restaurant img {
    max-height: 350px;
    object-fit: cover;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

#Restaurant img:hover {
    border: 2px solid #c8a97e;
}

/* Menu item hover effects */
.menu-item {
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: scale(1.02);
}

/* Button hover effects */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Navigation hover effects */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #c8a97e;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Popup Styles */
#popup-overlay {
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

#popup-overlay.hidden {
    pointer-events: none;
    opacity: 0;
}

#popup-overlay:not(.hidden) {
    opacity: 1;
}

#popup-content {
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

#popup-overlay:not(.hidden) #popup-content {
    transform: scale(1);
}

#popup-close {
    transition: transform 0.3s ease, color 0.3s ease;
}

#popup-close:hover {
    transform: rotate(90deg);
    color: #c8a97e;
}

/* Social media buttons - square with rounded corners */
.social-icon {
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #c8a97e;
    transform: translateY(-3px);
}

/* Form inputs hover and focus effects */
.form-input {
    transition: all 0.3s ease;
}

.form-input:hover {
    border-color: #c8a97e;
}

.form-input:focus {
    border-color: #c8a97e;
    box-shadow: 0 0 0 2px rgba(200, 169, 126, 0.25);
}

/* Shadow effect for popup content in dark mode */
@media (prefers-color-scheme: dark) {
    #popup-content {
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }
}

/* Reservation Section */
.reservation-time-box {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.reservation-time-box:hover {
    transform: translateY(-5px);
    border: 2px solid #c8a97e;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background-color: #fef3c7;
} 