/*

Tooplate 2126 Antique Cafe

https://www.tooplate.com/view/2126-antique-cafe

*/


body {
    font-family: 'Raleway', sans-serif;
    background-color: #666;
}

p a {
	color: #FF6;
}

p a:hover {
	color: #9FF;
}

#about p a { color: #066; }
#about p a:hover { color: #F36; }

#contact p a { color: #066; }

footer span a { color: #FFF; }

.tm-logo-font {
    font-family: 'Oswald', sans-serif;
}

.tm-container {
    max-width: 1200px;
}

.parallax-window {
    min-height: 1064px;
    background: transparent;
}

.tm-text-yellow {
    color: #FC6;
}

.tm-text-gold {
    color: #FFFFFF;
}

.tm-text-brown {
    color: #544639;
}
/* Room Section Background */
.room-gallery-container {
    background: url('../img/room-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 10px ;
}

/* Room Cards */
.room-card {
    background: rgba(0, 0, 0, 1);
    padding: 20px ;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(255, 255, 255, 0.2);
}

/* Room Thumbnails */
.room-thumbnail {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.room-thumbnail:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Responsive Grid */
@media (max-width: 768px) {
    .room-gallery {
        grid-template-columns: 1fr; /* Stack images on small screens */
    }
}

.tm-text-green {
    color: #006666;
}
.room-gallery {
    display: flex;
    justify-content: space-between;
}

.room-card img {
    width: 100%;
    height: auto;
    max-width: 350px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.room-card img:hover {
    transform: scale(1.05);
}
.date-picker {
    appearance: auto !important;
    -webkit-appearance: auto !important;
    -moz-appearance: auto !important;
    cursor: pointer;
}

/* Flatpickr custom styles */
.flatpickr-calendar {
    font-family: 'Raleway', sans-serif;
    background: white;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
a.tm-bg-green:hover {
    background-color: #0a8585;
}
.hidden {
    display: none;
}

.fade-in {
    animation: fadeIn 1.2s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.tm-bg-brown {
    background-color: #544639;
}

.tm-bg-green {
    background-color: #006666;
}

.tm-border-gold {
    border-color: #CC9966;
}

.tm-intro-width {
    max-width: 436px;
}

.tm-item-container {
    max-width: 520px;
}

.input:focus {
    outline: none !important;
    border:1px solid #CC9966;
    box-shadow: 0 0 10px #b67533;
}

input::placeholder,
textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgb(214, 212, 212);
    opacity: 1; /* Firefox */
}
  
input:-ms-input-placeholder,
textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: rgb(214, 212, 212);
}
  
input::-ms-input-placeholder,
textarea::-ms-input-placeholder { /* Microsoft Edge */
    color: rgb(214, 212, 212);
}

#tm-nav {
    z-index: 1000;
    transition: all 0.3s ease;
}

#tm-nav.scroll {
    background-color: rgba(0,0,0,0.7);
}

#tm-nav li a {
    border-bottom-color: transparent;
    transition: all 0.3s ease;
}

#tm-nav li a.current,
#tm-nav li a:hover {
      border-bottom: 4px solid #CC9966;
}

.tm-text-2xl {
    font-size: 1.2rem;
    line-height: 2rem;
}

@media (min-width: 768px) {
    #tm-nav.scroll .tm-container {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media (max-width: 767px) {
    #tm-nav {
        width: auto;
        right: 0;
        border-radius: 5px;
    }
}
.reservation-form {
    animation: fadeInUp 1s ease-out;
}

.reservation-btn {
    background: #CC9966;
    padding: 10px 20px;
    border-radius: 5px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.reservation-btn:hover {
    background: #b67533;
    transform: scale(1.05);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 639px) {
    .parallax-window {
        min-height: 600px;
    }
}

@media (max-width: 370px) {
    .tm-menu-item {
        flex-direction: column;
    }

    .tm-menu-item-2 {
        flex-direction: column-reverse;
    }

    .tm-menu-item img {
        margin-bottom: 10px;
    }

    .tm-menu-item-2 img {
        margin-bottom: 10px;
    }
}
/* 🔹 Ensure room section fits properly */
.room-gallery-container {
    padding: 60px 20px;
    text-align: center;
    max-width: 1200px;
    margin: auto;
}

/* 🔹 Responsive grid for 4 rooms */
.room-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 rooms in one row on large screens */
    gap: 20px;
    justify-content: center;
}

/* 🔹 Make images fit properly */
.room-thumbnail {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* 🔹 Responsive Adjustments */
@media (max-width: 1024px) {
    .room-gallery {
        grid-template-columns: repeat(2, 1fr); /* 2 rooms per row on tablets */
    }
}

@media (max-width: 768px) {
    .room-gallery {
        grid-template-columns: 1fr; /* Stack rooms vertically on mobile */
    }
}
