/*
Theme Name: Maria
Theme URI: https://example.com/maria
Author: Your Name
Author URI: https://example.com
Description: A clean lightweight base theme for Elementor.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: maria
*/



.snap-section {
  scroll-snap-align: start; /* snap at the start of each section */
}


@font-face {
    font-family: 'PF Marlet Display';
    src: url('fonts/fonnts.com-PF_Marlet_Display_Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'PF Marlet Display';
    src: url('fonts/fonnts.com-PF_Marlet_Display_Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'PF Marlet Display';
    src: url('fonts/fonnts.com-PF_Marlet_Display_Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Bold.otf') format('opentype'),
         url('fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Medium_2.otf') format('opentype'),
         url('fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular_2.otf') format('opentype'),
         url('fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* container that scrolls (use body/html for page) */
html, body {
  height: 100%;
  margin: 0;
}

body {
  overflow-y: auto;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  /* offset snapping for the fixed header */
  scroll-padding-top: var(--header-h, 0px);
}



h1,h2,h3 {
    font-family: "PF Marlet Display";
}

a.maria-video-slide-button {
    font-family: "Montserrat";
    font-weight: 600;
}

.feature-text {
    font-family: 'Montserrat';
    font-weight: 300;
}

.primary-navigation {
    font-family: 'Montserrat';
}


p.property-types-subtitle {
    font-family: 'Montserrat';
}

button.tab-button {
    font-family: 'PF Marlet Display';
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 50%, #1a365d 100%);
    color: #ffffff;
    padding: 40px 0 20px;
    position: relative;
    overflow: hidden;
}

/* Add subtle texture overlay */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Main footer content */
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr auto auto;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

/* Brand section */
.footer-brand {
    text-align: left;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-tagline {
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: italic;
}

/* Contact section */
.footer-contact {
    text-align: left;
}

.contact-text {
    font-size: 0.9rem;
    margin-bottom: 5px;
    opacity: 0.9;
}

.contact-number {
    font-size: 2.0rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

a.menu-link-contact {
    display: inline-block !important;
    text-decoration: none !important;
    padding: 12px 30px !important;
    border-radius: 50px; /* pill shape */
    background: linear-gradient(
174deg, #fefb97, #cba845); /* gold gradient */
    color: #111; /* dark text */
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

a.menu-link-contact:hover {
    background: linear-gradient(180deg, #FFE066, #FFD700); /* brighter gold on hover */
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
}


/* Social media section */
.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-link i {
    font-size: 1.1rem;
}

/* Legal links section */
.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.legal-link {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    margin-top: 15px;
}

.legal-link:hover {
    opacity: 0.8;
   
}

.separator {
    opacity: 0.6;
     margin-top: 15px;
}



.footer-disclaimer p {
    font-size: 0.8rem;
    line-height: 1.5;
    opacity: 0.8;
    text-align: justify;
}

/* Copyright section */
.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-brand img {
    width: 240px;
}

@media (max-width: 1366px){
.maria-video-slide-overlay {
    margin-top: 75px;
}

}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-social {
        justify-self: end;
    }
    
    .footer-legal {
        justify-self: start;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-brand,
    .footer-contact {
        text-align: center;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .contact-number {
        font-size: 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .footer-disclaimer {
        padding: 15px;
    }
    
    .footer-disclaimer p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .brand-name {
        font-size: 1.8rem;
    }
    
    .contact-number {
        font-size: 1.3rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
    
    .footer-social {
        gap: 12px;
    }
}


