/*
Theme Name: WP Websminder
Theme URI: https://websminder.com
Author: WP Websminder Team
Description: A minimal, fast, Elementor-ready theme.
Version: 1.0
License: GPLv2 or later
Text Domain: wp-websminder
*/

/* WP Websminder – Elementor Pro Style Animations */

/* Fade In Up */
.animate-fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade In Down */
.animate-fade-in-down {
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInDown 1s ease forwards;
}
@keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade In Left */
.animate-fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 1s ease forwards;
}
@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade In Right */
.animate-fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 1s ease forwards;
}
@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Zoom In */
.animate-zoom-in {
  opacity: 0;
  transform: scale(0.9);
  animation: zoomIn 1s ease forwards;
}
@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Zoom Out */
.animate-zoom-out {
  opacity: 0;
  transform: scale(1.1);
  animation: zoomOut 1s ease forwards;
}
@keyframes zoomOut {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Rotate In */
.animate-rotate-in {
  opacity: 0;
  transform: rotate(-90deg);
  animation: rotateIn 1s ease forwards;
}
@keyframes rotateIn {
  to {
    opacity: 1;
    transform: rotate(0);
  }
}

/* Flip In X */
.animate-flip-in-x {
  opacity: 0;
  transform: rotateX(-90deg);
  animation: flipInX 1s ease forwards;
}
@keyframes flipInX {
  to {
    opacity: 1;
    transform: rotateX(0);
  }
}

/* Bounce In */
.animate-bounce-in {
  opacity: 0;
  transform: scale(0.95);
  animation: bounceIn 1s ease forwards;
}
@keyframes bounceIn {
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hover Scale */
.hover-scale-up:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}

/* Hover Glow */
.hover-glow:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease-in-out;
}

/* Hover Rotate */
.hover-rotate:hover {
  transform: rotate(5deg);
  transition: transform 0.3s ease;
}

/* Hover Wiggle */
.hover-wiggle:hover {
  animation: wiggle 0.3s ease-in-out infinite;
}
@keyframes wiggle {
  0%, 100% { transform: rotate(-1deg); }
  50% { transform: rotate(1deg); }
}
/*checkout page*/
@media (min-width: 768px) {
#checkout_form_block .table_order_items_details{float: left;
    width: 55%;}
 #checkout_form_block h2:nth-of-type(2) {
    text-align: center;
        margin-top: -50px;
        margin-left: 31%;
}

 #checkout_form{float: right;
    width: 40%;
    border: 1px solid #ddd;
    padding: 15px;}   
 }
 
 /*button style*/
    .checkout_form_submit,.booking_form_submit {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #0073e6, #00b4d8);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 115, 230, 0.3);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Hover animation */
.checkout_form_submit:hover,.booking_form_submit:hover {
    background: linear-gradient(135deg, #00b4d8, #0073e6);
    box-shadow: 0 6px 20px rgba(0, 115, 230, 0.4);
    transform: translateY(-2px);
}

/* Ripple effect on click */
.checkout_form_submit::after,.booking_form_submit::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.checkout_form_submit:active::after,.booking_form_submit:active::after {
    width: 200%;
    height: 200%;
    transition: 0s;
}

.archive-header {
    background: linear-gradient(135deg, #0073e6, #00b8d4);
    padding: 50px 20px;
    margin-bottom:50px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.archive-header::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.05);
    transform: rotate(25deg);
    animation: moveBG 12s linear infinite;
}
@keyframes moveBG {
    0% { transform: rotate(25deg) translateY(0); }
    100% { transform: rotate(25deg) translateY(-50%); }
}
.archive-header-inner {
    position: relative;
    z-index: 2;
}
.archive-header .breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.archive-header .breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.archive-header .breadcrumb a:hover {
    opacity: 0.8;
}
.archive-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    animation: fadeInDown 0.8s ease;
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
    }
    
    .blog-single-container {
    display: flex;
    gap: 30px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-left {
    flex: 2;
}

.blog-right {
    flex: 1;
}

.blog-post-image img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.blog-post-title {
    font-size: 36px;
    margin-bottom: 15px;
    color: #111;
}

.blog-post-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
    display: flex;
    gap: 15px;
}

.blog-post-content {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.blog-comments h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.latest-posts h3 {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top:0px;
}

.latest-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.latest-post-thumb img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.latest-post-title {
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

.latest-post-meta {
    font-size: 12px;
    color: #999;
}