
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  background-color: #0d0d0d;
  color: #f2f2f2;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 16px 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  background-color: #0d0d0d;
  color: #f2f2f2;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #bb0a1e;
  transition: color 0.3s ease;
}

a:hover {
  color: #f54242;
}


.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 16px 0;
}

header {
  background-color: #1a1a1a;
  border-bottom: 2px solid #bb0a1e;
  padding: 16px 0;
  text-align: center;
}

header h1 {
  color: #bb0a1e;
  font-size: 32px;
  margin-bottom: 5px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
  gap: 24px;
  background-color: #1a1a1a;
  padding: 16px 0;
}

nav ul li a {
  color: #f2f2f2;
  font-weight: bold;
  font-size: 17.6px;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #f54242;
}


.about-section {
  padding: 48px 0;
  text-align: center;
}

.about-section h2 {
  color: #bb0a1e;
  font-size: 35.2px;
  margin-bottom: 24px;
}

.about-section p {
  max-width: 800px;
  margin: 16px auto;
  font-size: 17.6px;
  line-height: 1.7;
  color: #f2f2f2;
}

.about-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

.image-placeholder {
  width: 30%;
  height: 300px; 
  background-color: #333;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 30, 30, 0.3);
  overflow: hidden; 
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.image-placeholder:hover {
  transform: scale(1.05); 
  box-shadow: 0 0 20px rgba(255, 30, 30, 0.6); 
}

.image-placeholder img {
  width: 100%;  
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.3s ease, filter 0.3s ease; 
}

.image-placeholder img:hover {
  transform: scale(1.05); 
  filter: brightness(1.2); 
}


footer {
  background-color: #1a1a1a;
  padding: 24px 0;
  text-align: center;
  font-size: 14.4px;
  border-top: 1px solid #333;
  color: #aaa;
  margin-top: 32px;
}


body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: url('YARA.jpg') no-repeat center center / cover;
  filter: blur(8px) brightness(0.4);
  z-index: -1;
}
