.kenburns {
  animation: kenburnsZoom 20s ease-in-out infinite;
  transform-origin: center;
}

@keyframes kenburnsZoom {
  0% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1.25) translate(-2%, -2%);
  }
  100% {
    transform: scale(1.1);
  }
}
/* ==============================
   Footer Newsletter Styling
============================== */

.footer-newsletter form{
  max-width: 420px;
  margin: 0 auto;
}

.footer-newsletter input[type="email"],
.footer-newsletter input[type="text"]{
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #ffffff;
  color: #111827;
  border: 1px solid #d1d5db;
  outline: none;
  transition: all 0.3s ease;
}

.footer-newsletter input::placeholder{
  color: #9ca3af;
}

.footer-newsletter input:focus{
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37,99,235,.4);
}

.footer-newsletter input[type="submit"],
.footer-newsletter button{
  width: 100%;
  padding: 12px 20px;
  border-radius: 8px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-newsletter input[type="submit"]:hover,
.footer-newsletter button:hover{
  background: #1d4ed8;
}
.mytheme-gallery-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mytheme-gallery-list li {
    position: relative;
}

.mytheme-gallery-list img {
    width: 100px;
}

.mytheme-gallery-list .remove {
    position: absolute;
    top: 3px;
    right: 5px;
    background: red;
    color: #fff;
    padding: 2px 6px;
    cursor: pointer;
}

.mytheme-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 15px;
}

.mytheme-item {
    position: relative;
}

.mytheme-plus {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: #fff;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: 0.3s;
}

.mytheme-item:hover .mytheme-plus {
    opacity: 1;
}
.mytheme-gallery-list img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    display: block;
}
/* ===============================
   CONTACT FORM 7 – MODERN STYLE
================================ */

/* Form spacing */
.wpcf7 form {
  width: 100%;
}

/* Inputs & Textarea */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  color: #1f2937;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

/* Placeholder */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: #9ca3af;
}

/* Focus state */
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

/* Textarea */
.wpcf7 textarea {
  min-height: 140px;
  resize: none;
}

/* Submit Button */
.wpcf7 input[type="submit"] {
  display: inline-block;
  width: 100%;
  padding: 14px 28px;
  background-color: #2563eb;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

/* Button Hover */
.wpcf7 input[type="submit"]:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.35);
}

/* Disabled */
.wpcf7 input[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Error Message */
.wpcf7-not-valid-tip {
  color: #dc2626;
  font-size: 13px;
  margin-top: 6px;
}

/* Response Messages */
.wpcf7-response-output {
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
}

/* Success */
.wpcf7-mail-sent-ok {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

/* Validation / Error */
.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
/* DASHICONS PERFECT CENTER FIX */
.dashicon-fix{
  font-size: 36px !important;
  width: auto !important;
  height: auto !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
#siteHeader .booknow a {
  background-color: #0225e1; /* orange */
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 9999px; /* full rounded */
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

#siteHeader .booknow a:hover {
  background-color: #021fbd;
}
.custom-logo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


