/* General Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #1a1a1a; color: white; }

/* Hero Video Background */
.hero { position: relative; height: 100vh; overflow: hidden; }
#bg-video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; z-index: -1; transform: translate(-50%, -50%); object-fit: cover; }
.overlay { background: rgba(0, 0, 0, 0.5); height: 100%; display: flex; flex-direction: column; }

/* Navigation */
nav { display: flex; justify-content: space-between; padding: 2rem 5%; align-items: center; }
.logo { font-size: 1.5rem; font-weight: bold; letter-spacing: 2px; color: #ff9f43; }

/* Hero Content */
.hero-content { flex-grow: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.hero-content h1 { font-size: 4rem; margin-bottom: 1rem; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.btn { padding: 1rem 2rem; margin: 10px; border: 2px solid #ff9f43; color: white; text-decoration: none; transition: 0.3s; background: rgba(0,0,0,0.4); text-transform: uppercase; font-weight: bold; }
.btn:hover { background: #ff9f43; color: #000; }

/* Subpages */
.subpage { padding-top: 50px; background-size: cover; background-attachment: fixed; }
.atv-bg { background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://www.atvazuga.eu/atv/bg.jpg'); background-size: cover;}
.lodging-bg { background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://www.atvazuga.eu/casamela/10.jpg'); background-size: cover;}

header { text-align: center; margin-bottom: 3rem; }
.back-link { color: #ff9f43; text-decoration: none; display: block; margin-bottom: 10px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.description { text-align: center; font-size: 1.2rem; margin-bottom: 2rem; }

/* Gallery Grid */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; margin-bottom: 50px; }
.gallery img { width: 100%; height: 250px; object-fit: cover; border-radius: 5px; border: 2px solid transparent; transition: 0.3s; }
.gallery img:hover { border-color: #ff9f43; transform: scale(1.02); }

.contact-footer { text-align: center; padding: 40px; border-top: 1px solid #333;}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

