body {
    font-family: 'Cinzel', Georgia, serif;
}
.section-title {
    @apply text-3xl md:text-4xl font-bold text-center mb-12 text-black;
}
.card {
    @apply bg-white rounded-xl shadow-lg overflow-hidden transition-transform duration-300 hover:scale-105 border border-gray-200;
}
.btn {
    @apply px-6 py-3 rounded-lg font-semibold text-white transition-colors duration-300;
}
.btn-primary {
    @apply bg-black hover:bg-gray-800 text-white;
}
.btn-secondary {
    @apply bg-gray-200 hover:bg-gray-300 text-black;
}
.icon-placeholder {
    @apply w-12 h-12 bg-gray-200 text-black rounded-full flex items-center justify-center mb-4;
    /* Placeholder for actual icons */
}

/* Styles for animated header changes */
#headerInnerContainer {
    transition: padding-top 0.3s ease-in-out, padding-bottom 0.3s ease-in-out;
}

#logoLink {
    transition: margin-bottom 0.3s ease-in-out;
}

#logoImage {
    transition: height 0.3s ease-in-out;
}

#heroVideo {
    filter: blur(2px) brightness(0.6); /* Add a blur effect and reduce brightness */
}

#propertySearchVideo {
    filter: blur(3px) brightness(0.5); /* Increased blur and darkness for readability */
}

/* Keyframes for the breathing animation (for white button) */
@keyframes breathe {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    100% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
}

/* New Hero Button Styles */
.hero-button {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    /* background-color: #ffffff; */ /* Replaced with gradient */
    background-image: linear-gradient(to bottom, #ffffff, #f0f0f0);
    border: none;
    border-radius: 9999px; /* Pill shape */
    cursor: pointer;
    outline: none;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); */ /* Static shadow removed, animation will handle it */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Adjusted transition */
    font-family: Arial, sans-serif; /* Sans-serif font */
    animation: breathe 2s ease-in-out infinite alternate; /* Added breathing animation */
    position: relative; /* For shine effect */
    overflow: hidden;   /* For shine effect */
}

.shine-effect {
    position: absolute;
    top: 0;
    left: -150%; /* Start off-screen */
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shine 4s infinite linear;
}

@keyframes shine {
    0% {
        left: -150%;
    }
    20% { /* Shine duration within the 3s cycle */
        left: 150%;
    }
    100% { /* Keep it off-screen until next cycle */
        left: 150%;
    }
}

.hero-button:hover {
    /* background-color: #f0f0f0; */ /* Replaced with gradient */
    background-image: linear-gradient(to bottom, #f5f5f5, #e0e0e0);
}

.hero-button:active {
    transform: translateY(1px);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2); /* Slightly reduced shadow when active */
}

/* OLD #callNowBtn CSS is removed from here */

/* About Section - Decorative Shapes */
.about-image-shapes-container {
    /* This container's size (max-w-sm) is the primary reference for shape % dimensions */
}

#about-shape-black-rect {
    width: 100%; 
    height: 65%; 
    bottom: -15%; 
    left: 25%;  
    z-index: 0;
}

#about-shape-grey-square {
    width: 110%;  
    padding-bottom: 30%; 
    height: 0; 
    bottom: -5%; 
    left: 25%; 
    z-index: 10;
    background-color: #B0B0B0; /* Darker grey */
}

#about-shape-grey-vline {
    width: 8px;
    height: 140px;
    bottom: -19.5%; /* User's value */
    left: 108%; /* User's value, may need re-eval if square position changed drastically */
    z-index: 10;
    background-image: linear-gradient(to bottom, black 50%, #B0B0B0 50%); /* Darker grey for bottom half */
    /* Remove Tailwind bg class from HTML if this doesn't override, or ensure this overrides */
}

/* End of About Section - Decorative Shapes */ 

.shadow-custom-stronger {
    box-shadow: 0 40px 75px -10px rgba(0, 0, 0, 0.4); /* Increased y-offset, blur, spread, and opacity */
} 

#getInTouchBtn {
    position: relative; /* Needed for the shine-effect span */
    overflow: hidden;   /* To clip the shine-effect span */
    animation: vibrate-every-4s 4s infinite linear;
}

@keyframes vibrate-every-4s {
    0%, 92.5% { transform: translate(0, 0); } /* Still for ~3.7s of 4s cycle */
    /* Vibrate phase for ~0.3s */
    93.4375% { transform: translate(-2px, 1px); }
    94.375%  { transform: translate(2px, -1px); }
    95.3125% { transform: translate(-2px, -1px); }
    96.25%   { transform: translate(2px, 1px); }
    97.1875% { transform: translate(-1px, 1px); }
    98.125%  { transform: translate(1px, -1px); }
    99.0625% { transform: translate(-1px, -1px); }
    100%     { transform: translate(0, 0); } /* End smoothly */
} 

/* New Keyframes and classes for Carousel Slide/Fade Effect */
@keyframes slideOutLeftFade {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%); /* Slide halfway out */
    }
}

.slide-out-left-fade-active {
    animation: slideOutLeftFade 0.5s ease-in-out forwards;
}

@keyframes slideInRightFade {
    from {
        opacity: 0;
        transform: translateX(50%); /* Start from halfway right */
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right-fade-active {
    animation: slideInRightFade 0.5s ease-in-out forwards;
}
/* End of Carousel Slide/Fade Effect */

.title-shine-effect {
    position: absolute;
    top: 0;
    left: -100%; /* Start off-screen, adjusted for 100% width */
    width: 100%; /* Wider shine for titles */
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-15deg); /* Less skew for titles */
    animation: title-shine-animation 4s infinite linear;
}

@keyframes title-shine-animation {
    0% {
        left: -100%;
    }
    20% { /* Shine duration */
        left: 100%;
    }
    100% { /* Keep it off-screen until next cycle */
        left: 100%;
    }
} 