/* ArtSpaceIT.ink - Location Studios per Produzioni Cinematografiche
   Design completamente unico con font moderni */

/* Import Google Fonts - Combinazione unica */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;600&display=swap');

:root {
  --gold-primary: #E8B923;
  --gold-dark: #D4AF37;
  --gold-darker: #B8941C;
  --dark-bg: #1A1A1A;
  --dark-secondary: #2C2C2C;
  --light-gray: #F5F5F5;
  --medium-gray: #666666;
  --white: #FFFFFF;
  --accent-blue: #0f3460;
  
  --font-heading: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-accent: 'Playfair Display', serif;
  --font-modern: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-elegant: 0 10px 40px rgba(0, 0, 0, 0.15);
  --shadow-hover: 0 15px 60px rgba(232, 185, 35, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--dark-bg);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

/* HEADER & NAVIGATION - Design Cinematografico */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(44, 44, 44, 0.95) 100%);
  backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 1.2rem 0;
  border-bottom: 2px solid var(--gold-primary);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  padding: 0.8rem 0;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.site-logo:hover {
  transform: scale(1.05);
}

.logo-image {
  height: 55px;
  width: auto;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.main-navigation a {
  color: var(--light-gray);
  text-decoration: none;
  font-family: var(--font-modern);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-smooth);
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  transform: translateX(-50%);
  transition: var(--transition-smooth);
}

.main-navigation a:hover {
  color: var(--gold-primary);
}

.main-navigation a:hover::after {
  width: 100%;
}

.cta-button {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--dark-bg) !important;
  padding: 0.8rem 2rem !important;
  border-radius: 30px;
  font-weight: 700 !important;
  box-shadow: 0 5px 20px rgba(232, 185, 35, 0.4);
  transition: var(--transition-smooth);
}

.cta-button::after {
  display: none;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(232, 185, 35, 0.6);
  color: var(--dark-bg) !important;
}

/* HERO SECTION - Cinematic & Dramatic */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(232, 185, 35, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(15, 52, 96, 0.3) 0%, transparent 50%);
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.hero-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  opacity: 0.15;
  z-index: 1;
  animation: floatImage 20s ease-in-out infinite;
}

@keyframes floatImage {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -48%) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeInUp 1.2s ease-out;
}

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

.hero-subtitle {
  font-family: var(--font-modern);
  font-size: 0.95rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  font-weight: 600;
  animation: fadeInUp 1.2s ease-out 0.2s both;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2rem;
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(232, 185, 35, 0.3);
  animation: fadeInUp 1.2s ease-out 0.4s both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-description {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  font-style: italic;
  animation: fadeInUp 1.2s ease-out 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease-out 0.8s both;
}

.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  font-family: var(--font-modern);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
}

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

.btn:hover::before {
  width: 400px;
  height: 400px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--dark-bg);
  box-shadow: 0 10px 30px rgba(232, 185, 35, 0.4);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(232, 185, 35, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  background: rgba(232, 185, 35, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(232, 185, 35, 0.3);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 5rem;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease-out 1s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold-primary);
  display: block;
  line-height: 1;
  text-shadow: 0 0 20px rgba(232, 185, 35, 0.5);
}

.stat-label {
  font-family: var(--font-modern);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.5rem;
}

/* SECTION STYLING */
.section {
  padding: 6rem 2rem;
  position: relative;
}

.section-dark {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
  color: var(--white);
}

.section-light {
  background: var(--light-gray);
}

.section-white {
  background: var(--white);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-subtitle {
  font-family: var(--font-modern);
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-description {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--medium-gray);
}

.section-dark .section-description {
  color: rgba(255, 255, 255, 0.7);
}

/* LOCATION GRID - Unique Layout */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.location-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(232, 185, 35, 0.1) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 1;
  pointer-events: none;
}

.location-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.location-card:hover::before {
  opacity: 1;
}

.location-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.location-card:hover .location-image {
  transform: scale(1.1);
}

.location-info {
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.location-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 0.8rem;
}

.location-description {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--medium-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.location-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--dark-bg);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.location-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-dark);
  font-family: var(--font-modern);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.location-link:hover {
  gap: 1rem;
  color: var(--gold-darker);
}

/* SERVICES SECTION */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid rgba(232, 185, 35, 0.2);
  transition: var(--transition-smooth);
  text-align: center;
}

.service-item:hover {
  background: rgba(232, 185, 35, 0.1);
  border-color: var(--gold-primary);
  transform: translateY(-5px);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.service-description {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* BOOKING FORM - Innovative Design */
.booking-section {
  background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 185, 35, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.booking-form-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.98);
  padding: 3rem;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.form-group {
  position: relative;
}

.form-label {
  font-family: var(--font-modern);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-bg);
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid #E0E0E0;
  border-radius: 12px;
  background: var(--white);
  transition: var(--transition-smooth);
  color: var(--dark-bg);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 4px rgba(232, 185, 35, 0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
  grid-column: 1 / -1;
}

.form-submit {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--dark-bg);
  padding: 1.3rem 3rem;
  font-family: var(--font-modern);
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(232, 185, 35, 0.4);
  margin-top: 1rem;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(232, 185, 35, 0.6);
}

/* FOOTER */
.site-footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 2rem 2rem;
  border-top: 3px solid var(--gold-primary);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: var(--gold-primary);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* RESPONSIVE DESIGN */
@media (max-width: 968px) {
  .header-container {
    padding: 0 2rem;
  }
  
  .main-navigation ul {
    gap: 1.5rem;
  }
  
  .main-navigation a {
    font-size: 0.85rem;
  }
  
  .hero-section {
    padding: 6rem 1.5rem 3rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .section {
    padding: 4rem 1.5rem;
  }
  
  .locations-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .main-navigation ul {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ANIMATIONS & EFFECTS */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.loading-shimmer {
  animation: shimmer 2s infinite;
  background: linear-gradient(to right, #f0f0f0 0%, #e0e0e0 20%, #f0f0f0 40%, #f0f0f0 100%);
  background-size: 1000px 100%;
}

/* Scroll animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-primary), var(--gold-dark));
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-darker);
}
