/* assets/css/accomodation_details.css */

/* General styles */
#top {
    text-decoration: none;
    color: white;
}
#top:hover {
    color: black;
}
.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.rounded {
    border-radius: .78rem !important;
}
@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}

/* Image animation */
.fade-in-zoom {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    animation: fadeInZoom 1s forwards;
}
@keyframes fadeInZoom {
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.img-hover-tilt:hover {
    transform: scale(1.05) rotate(-1deg);
    transition: transform 0.5s ease;
}

/* Content animation */
.content-slide {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideFade 1s forwards;
}
@keyframes slideFade {
    to { opacity: 1; transform: translateX(0); }
}
.content-slide:hover {
    transform: translateX(0) scale(1.02);
    transition: transform 0.3s ease;
}

/* Buttons */
.custom-btn-primary {
    background-color: #eb5f2d;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.6rem 1.8rem;
    font-weight: 700;
    font-family: 'Merienda', cursive;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: btnPulse 2s infinite alternate;
}
.custom-btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 1rem 2rem rgba(235,95,45,0.4);
}
@keyframes btnPulse {
    0% { box-shadow: 0 0.5rem 1rem rgba(235,95,45,0.2); }
    100% { box-shadow: 0 1rem 1.8rem rgba(235,95,45,0.4); }
}
.custom-btn-outline {
    color: #eb5f2d;
    border: 2px solid #eb5f2d;
    border-radius: 30px;
    padding: 0.6rem 1.8rem;
    font-weight: 700;
    font-family: 'Merienda', cursive;
    transition: all 0.3s;
}
.custom-btn-outline:hover {
    background-color: #eb5f2d;
    color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 1rem 2rem rgba(235,95,45,0.4);
}

/* Badge */
.badge-pop {
    transform: scale(0);
    animation: popIn 0.6s forwards;
    animation-delay: 0.5s;
}
@keyframes popIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
.badge-pop:hover {
    text-shadow: 0 0 8px #eb5f2d;
    transform: scale(1.1);
    transition: all 0.3s;
}

/* Quote animation */
.quote-animate {
    opacity: 0;
    transform: translateX(-30px);
    animation: quoteSlide 1s forwards;
    animation-delay: 0.7s;
}
@keyframes quoteSlide {
    to { opacity: 1; transform: translateX(0); }
}
.quote-animate p {
    position: relative;
}
.quote-animate p::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #eb5f2d;
    left: 0;
    bottom: -5px;
    animation: underline 1s forwards;
    animation-delay: 1s;
}
@keyframes underline {
    to { width: 100%; }
}

/* Headings and content */
h2.custom-heading {
    color: #eb5f2d;
}
p.accomodation-description {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 1rem;
}
p.accomodation-contact {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 1rem;
}
p.accomodation-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff6b5c;
    margin-bottom: 1rem;
}
