/* style.css */

/* Reset i thjeshtë */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #222;
}

/* Hero section */
.hero {
  background: url('images/hero.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.logo {
  width: 150px;
  margin-bottom: 20px;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #ff3333;
}

.hero-text h1 {
  font-size: 64px;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 24px;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 30px;
  background-color: #ff3333;
  color: white;
  text-decoration: none;
  font-size: 18px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #cc0000;
}

/* Footer */
footer {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}

/* Inner pages header */
.inner-header {
  background-color: #222;
  padding: 20px 0;
  text-align: center;
}

.inner-header .logo {
  width: 100px;
}

/* Content section */
.content {
  padding: 60px 20px;
}

.about-section h1 {
  font-size: 36px;
  color: #cc0000;
  margin-bottom: 20px;
  text-align: center;
}

.about-section p {
  max-width: 800px;
  margin: 10px auto;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  color: #333;
}
.photo-gallery {
  padding: 60px 20px;
  background-color: #f2f2f2;
  text-align: center;
}

.photo-gallery h2 {
  font-size: 32px;
  color: #cc0000;
  margin-bottom: 30px;
}

.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery img {
  width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}
.logo{
  width: 50px;
}
