/* Fonts are already loaded in head */

/* Main container */
.place-details-container {
    font-family: Arial, sans-serif;
    padding: 40px 0;
}

/* Important notice */
.blink-text {
    animation: blinker 1.5s linear infinite;
    font-size: 18px;
    font-weight: bold;
    color: #d60000;
    text-align: center;
    margin-top: 20px;
}

@keyframes blinker {
    50% { opacity: 0; }
}

/* Image and layout */
.place-image {
    float: left;
    width: 50%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 20px;
    margin-bottom: 20px;
    transition: transform 0.5s ease;
}

.place-image:hover {
    transform: scale(1.05) ;
}

/* Special badge */
.place-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
}

/* Heading */
.place-title {
    font-family: 'Merienda', cursive;
    font-size: 2.5rem;
    font-weight: 700;
}

/* Subtitle */
.place-subtitle {
    font-size: 1rem;
    color: #6c757d;
}

/* Description */
.place-description {
    text-align: justify;
    line-height: 1.7;
}

/* 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);
}

/* Awards row */
.place-awards .col-6 {
    margin-bottom: 10px;
}

/* Blockquote */
.place-quote {
    border-left: 4px solid #eb5f2d;
    padding-left: 15px;
    font-style: italic;
    margin-top: 20px;
}

.place-quote footer {
    font-style: normal;
    font-weight: 500;
}
