/* Custom styles for Real Estate Photography Website */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Image lazy loading fade-in effect */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-slow {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-down {
    animation: fadeInDown 0.8s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

.float {
    animation: float 3s ease-in-out infinite;
}

.pulse-slow {
    animation: pulse-slow 2s ease-in-out infinite;
}

/* Hero video overlay */
.hero-overlay {
    background: linear-gradient(135deg, rgba(113, 113, 111, 0.7) 0%, rgba(211, 79, 57, 0.3) 100%);
}

/* Image hover effects */
.portfolio-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0.75rem;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(211, 79, 57, 0.3);
}

.portfolio-card img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

.portfolio-card:hover img {
    transform: scale(1.15);
    filter: brightness(1.05);
}

.portfolio-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .overlay {
    transform: translateY(0);
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(211, 79, 57, 0.3), transparent);
    transition: left 0.6s ease;
}

.portfolio-card:hover::before {
    left: 100%;
}

/* 3D Tour Cards */
.portfolio-item iframe {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover iframe {
    transform: scale(1.02);
}

.portfolio-item .pointer-events-none {
    pointer-events: none;
}

/* 3D Tour Card Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.portfolio-item[data-category*="3d"] svg,
.portfolio-item .aspect-\[4\/3\] svg {
    animation: float 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.4); }
    50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.8); }
}

.portfolio-item:hover {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Service cards */
.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(211, 79, 57, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    border-color: #D34F39;
    box-shadow: 0 15px 40px rgba(211, 79, 57, 0.3);
    transform: translateY(-5px) scale(1.02);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card h3 {
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #D34F39;
}

/* Button styles */
.btn-primary {
    background: linear-gradient(135deg, #D34F39 0%, #B83F2E 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(211, 79, 57, 0.5);
    transform: translateY(-3px) scale(1.05);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

/* Form styles */
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #D34F39;
    box-shadow: 0 0 0 3px rgba(211, 79, 57, 0.1);
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    cursor: pointer;
    padding: 20px;
    user-select: none;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Loading spinner */
.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #D34F39;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Testimonial cards */
.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-left: 4px solid #D34F39;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    color: #D34F39;
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateX(10px);
    box-shadow: -5px 10px 30px rgba(211, 79, 57, 0.2);
    border-left-width: 6px;
}

/* Stats counter animation */
.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #D34F39;
    transition: all 0.3s ease;
}

.stat-number:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(211, 79, 57, 0.5);
}

/* Stats section improvements */
.animate-on-scroll .inline-flex {
    transition: all 0.3s ease;
}

.animate-on-scroll:hover .inline-flex {
    transform: scale(1.1) translateY(-5px);
    background: rgba(211, 79, 57, 0.15);
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax */
.parallax {
    transition: transform 0.1s ease-out;
}

/* Header shadow transition */
header {
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(135deg, #D34F39 0%, #E66951 50%, #D34F39 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* Icon animations */
.icon-bounce {
    display: inline-block;
    transition: transform 0.3s ease;
}

.icon-bounce:hover {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-10px); }
    50% { transform: translateY(0); }
    75% { transform: translateY(-5px); }
}

/* Rotating elements */
.rotate-on-hover {
    transition: transform 0.5s ease;
}

.rotate-on-hover:hover {
    transform: rotate(360deg);
}

/* Glow effect */
.glow {
    box-shadow: 0 0 20px rgba(211, 79, 57, 0.5);
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(211, 79, 57, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(211, 79, 57, 0.8), 0 0 40px rgba(211, 79, 57, 0.4);
    }
}

/* Image reveal effect */
.image-reveal {
    position: relative;
    overflow: hidden;
}

.image-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #D34F39, transparent);
    animation: reveal 2s ease-in-out;
}

@keyframes reveal {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Mobile menu animation */
#mobile-menu {
    transition: max-height 0.3s ease-in-out;
    max-height: 0;
    overflow: hidden;
}

#mobile-menu.active {
    max-height: 500px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stat-number {
        font-size: 1.8rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 10px;
    }
}

/* Stagger delays for animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Text typing effect */
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

.typing-effect {
    overflow: hidden;
    border-right: 3px solid #d4af37;
    white-space: nowrap;
    animation: typing 3s steps(40) 1s normal both, blink 0.7s step-end infinite;
}

/* Page loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow: hidden;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Camera lens container */
.camera-lens {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Camera body */
.camera-body {
    position: absolute;
    width: 180px;
    height: 120px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: camera-ready 0.3s ease-out;
}

/* Camera lens circle */
.lens-outer {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.lens-inner {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #1a1a1a 0%, #0a0a0a 70%);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Lens reflection */
.lens-reflection {
    position: absolute;
    top: 15%;
    left: 20%;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: lens-shine 0.6s ease-in-out infinite;
}

/* Camera flash effect */
.camera-flash {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(211, 79, 57, 0.4) 40%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: flash-effect 1.8s ease-out;
    pointer-events: none;
    z-index: 10;
}

/* Light rays */
.light-ray {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 100px;
    background: linear-gradient(to bottom, rgba(211, 79, 57, 1), rgba(255, 255, 255, 0.6), transparent);
    transform-origin: top center;
    margin-left: -3px;
    margin-top: 0;
    opacity: 0;
    animation: ray-shoot 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(1px);
}

.light-ray:nth-child(1) { transform: rotate(0deg); animation-delay: 0s; }
.light-ray:nth-child(2) { transform: rotate(45deg); animation-delay: 0.03s; }
.light-ray:nth-child(3) { transform: rotate(90deg); animation-delay: 0.06s; }
.light-ray:nth-child(4) { transform: rotate(135deg); animation-delay: 0.09s; }
.light-ray:nth-child(5) { transform: rotate(180deg); animation-delay: 0.12s; }
.light-ray:nth-child(6) { transform: rotate(225deg); animation-delay: 0.15s; }
.light-ray:nth-child(7) { transform: rotate(270deg); animation-delay: 0.18s; }
.light-ray:nth-child(8) { transform: rotate(315deg); animation-delay: 0.21s; }

/* Logo reveal */
.loader-logo {
    position: absolute;
    opacity: 0;
    transform: scale(0.3);
    animation: logo-reveal 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 1.0s forwards;
    z-index: 11;
}

.loader-logo img {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(211, 79, 57, 0.8));
}

/* Animations */
@keyframes camera-ready {
    0% {
        transform: scale(0.5) translateY(30px);
        opacity: 0;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes lens-shine {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes flash-effect {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.3);
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.8);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(3);
    }
}

@keyframes ray-shoot {
    0% {
        opacity: 0;
        height: 0;
    }
    15% {
        opacity: 1;
        height: 180px;
    }
    35% {
        opacity: 0.7;
        height: 250px;
    }
    60%, 100% {
        opacity: 0;
        height: 300px;
    }
}

@keyframes logo-reveal {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(30px);
        filter: blur(10px);
    }
    70% {
        opacity: 1;
        transform: scale(1.15) translateY(-5px);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

/* Progress bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #D34F39, #E66951);
    z-index: 9999;
    transform-origin: left;
    transition: transform 0.2s ease;
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: float 2s ease-in-out infinite;
    cursor: pointer;
    z-index: 40;
}

/* Ripple effect on click */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:active::after {
    width: 300px;
    height: 300px;
}

/* Card flip effect */
.flip-card {
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
}

/* Underline animation */
.underline-animate {
    position: relative;
}

.underline-animate::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D34F39;
    transition: width 0.3s ease;
}

.underline-animate:hover::after {
    width: 100%;
}

/* Number counter circle - deprecated, using icon badges instead */

/* Floating Camera CTA Button */
.floating-camera {
    position: fixed;
    bottom: 80px;
    right: 40px;
    z-index: 9999;
    animation: float-random 15s ease-in-out infinite;
}

.camera-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D34F39 0%, #b33d2b 100%);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 
        0 8px 25px rgba(211, 79, 57, 0.4),
        0 0 0 0 rgba(211, 79, 57, 0.7);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: visible;
    animation: pulse-glow 3s ease-in-out infinite;
}

.camera-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 35px rgba(211, 79, 57, 0.6),
        0 0 50px rgba(211, 79, 57, 0.4);
    width: 180px;
    border-radius: 50px;
}

/* Camera Icon SVG */
.camera-icon {
    position: relative;
    width: 35px;
    height: 35px;
    transition: all 0.4s ease;
}

.camera-btn:hover .camera-icon {
    transform: scale(0.85) translateX(-45px);
}

.camera-icon svg {
    width: 100%;
    height: 100%;
    fill: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Book Now Text */
.book-text {
    position: absolute;
    right: 25px;
    font-weight: 700;
    font-size: 16px;
    color: white;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.camera-btn:hover .book-text {
    opacity: 1;
    transform: translateX(0);
}

/* Floating Animation with Random Movement */
@keyframes float-random {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    10% {
        transform: translate(-15px, -20px) rotate(2deg);
    }
    20% {
        transform: translate(10px, -10px) rotate(-2deg);
    }
    30% {
        transform: translate(-8px, 15px) rotate(1deg);
    }
    40% {
        transform: translate(12px, 5px) rotate(-1deg);
    }
    50% {
        transform: translate(-10px, -15px) rotate(2deg);
    }
    60% {
        transform: translate(15px, 10px) rotate(-2deg);
    }
    70% {
        transform: translate(-12px, -5px) rotate(1deg);
    }
    80% {
        transform: translate(8px, -12px) rotate(-1deg);
    }
    90% {
        transform: translate(-15px, 8px) rotate(2deg);
    }
}

/* Pulsing Glow Effect */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(211, 79, 57, 0.4),
            0 0 0 0 rgba(211, 79, 57, 0.7);
    }
    50% {
        box-shadow: 
            0 8px 25px rgba(211, 79, 57, 0.4),
            0 0 0 15px rgba(211, 79, 57, 0);
    }
}

/* Sparkle Effect on Hover */
.camera-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.8) 50%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: sparkle 4s ease-in-out infinite;
}

.camera-btn:hover::before {
    border-radius: 50px;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: rotate(0deg);
    }
    50% {
        opacity: 0.3;
        transform: rotate(180deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-camera {
        bottom: 20px;
        right: 20px;
    }
    
    .camera-btn {
        width: 60px;
        height: 60px;
    }
    
    .camera-btn:hover {
        width: 150px;
    }
    
    .camera-icon {
        width: 30px;
        height: 30px;
    }
    
    .book-text {
        font-size: 14px;
    }
}

/* Instagram Embed Styling */
.instagram-embed-card {
    position: relative;
    backdrop-filter: blur(10px);
}

.instagram-embed-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #D34F39, #71716F, #D34F39);
    border-radius: 1rem;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.instagram-embed-card:hover::before {
    opacity: 0.3;
}

.instagram-media {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
}

/* Print styles */
@media print {
    header, footer, .no-print, .floating-camera {
        display: none;
    }
}
