/* Additional styles for /annonsere page - extends the inline styles in the template */

/* Enhanced 3D effects for package cards */
.package-card {
    transform-style: preserve-3d;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    background: rgba(0,0,0,0.1);
    border-radius: 20px;
    z-index: -1;
    transform: translateZ(-10px);
}

/* Enhanced hover effects */
.package-card:hover::before {
    background: rgba(0,0,0,0.15);
    transform: translateZ(-15px) translateY(5px);
}

/* Additional animations for elements */
.hero-decoration .emoji:nth-child(1) { --i: 0; }
.hero-decoration .emoji:nth-child(2) { --i: 1; }
.hero-decoration .emoji:nth-child(3) { --i: 2; }

/* Smooth transitions for form integration */
.embedded-form-container iframe {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Additional responsiveness */
@media (max-width: 480px) {
    .cogniads-annonsere-container {
        padding: 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}