/* Additional styles specific to Frilenseri template
   Awwwards-style: cinematic, bold, high-contrast
*/

/* Hero: deep gradient overlay to enhance cinematic feel */
.hero {
  background:
    radial-gradient(circle at top left, rgba(131, 56, 236, 0.35) 0%, transparent 60%),
    radial-gradient(circle at bottom right, rgba(255, 0, 110, 0.35) 0%, transparent 60%),
    linear-gradient(135deg, #020617 0%, #0b1120 40%, #020617 100%);
}

.gallery-item {
  position: relative;
}

.gallery-item:hover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(37, 99, 235, 0.1);
  pointer-events: none;
}

/* Social media buttons */
.btn[style*="background: #E4405F"],
.btn[style*="background: #0077B5"],
.btn[style*="background: #1769FF"] {
  transition: transform 0.3s ease;
}

.btn[style*="background: #E4405F"]:hover,
.btn[style*="background: #0077B5"]:hover,
.btn[style*="background: #1769FF"]:hover {
  transform: translateY(-2px);
}

