/* 
Theme Name: R-Media Services
Theme URI: https://services.r-media.co.uk/
Description: Theme for R-Media Services based on Elementor
Author: Blue Ad
Author URI: https://bluead.ro/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*Ajax Loading CSS*/

/* Loading overlay */
.elementor-ajax-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,51,85, 0);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Spinner animation */
.elementor-ajax-loading-overlay:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    margin-left: -30px;
    border-radius: 50%;
    border: 3px solid #ff3355;
    border-top-color: #ff3355;
    animation: elementor-loading-spinner 0.8s linear infinite;
}

@keyframes elementor-loading-spinner {
    to {
        transform: rotate(360deg);
    }
}

/* Progress bar container */
.elementor-ajax-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 10000;
    background-color: #f1f1f1;
    overflow: hidden;
}

/* Progress bar */
.elementor-ajax-progress-bar {
    height: 100%;
    width: 0%;
    background-color: #FF3355; /* WordPress blue */
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Progress bar animation */
.elementor-ajax-progress-bar:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    animation: progress-shine 1.5s infinite;
}

@keyframes progress-shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Hide iframe during loading */
#elementor-content-iframe {
    opacity: 0;
    visibility: hidden;
}

.maincontainer {
  overflow: visible;
}

.landscape-column {
  position: relative;	
  overflow-x: visible;
  overflow-y: hidden;
  max-height: 100%;
}

.landscape-image {
  width: calc(100% + 50vw);
  max-width: none;
  position: relative;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}