/* Fonts */
body{
  margin: 0;
  font-family: 'Verdana', sans-serif;
  line-height: 1.6;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2{
  text-align: center;
  margin: 20px 0;
}

.btn{
  display: inline-block;
  background-color: #2575fc;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn:hover{
  background-color: #1b5cb8;
}

iframe {
  display: block;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #333;
  padding: 15px 20px;
  color: white;
  position: relative;
  z-index: 1000;
}

.nav-links {
  list-style: none;
  display: none; /* Hidden by default for mobile */
  flex-direction: column;
  background: #333;
  position: absolute;
  top: 60px;
  right: 20px;
  width: 200px;
  padding: 10px;
  border-radius: 5px;
}

.nav-links.active {
  display: flex; /* Show when active class is added */
}

.nav-links a {
  color: white;
  padding: 5px 10px;
  transition: background 0.3s;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}

.menu-toggle {
  display: block;
  color: white;
  font-size: 1.8em;
  cursor: pointer;
  padding: 0;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* Home Banner */
.banner{
  background: url('banner-darkened.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 180px 20px;
}

.banner h1{
  font-size: 2.5em;
  margin-bottom: 20px;
  padding: 10px;
}

/* About Section */
.about{
  padding: 50px 20px;
  text-align: center;
}

.about-content{
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}

.about-content img{
  object-fit: cover;
  width: 500px;
  height: 500px;
}

.about-content .text{
  display: block;
}

.about-content p{
  margin: 0;
  margin-bottom: 15px;
  text-align: left;
}

/* About Home */
.abouth{
  padding: 50px 20px;
  text-align: center;
}

.abouth-content{
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  margin-left: 200px;
  margin-right: 200px;
}

.abouth-content img{
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
}

.abouth-content p{
  flex-grow: 1;
}

/* Portfolio Section */
.portfolio{
  background: #f9f9f9;
  padding: 50px 20px;
}

.portfolio-grid{
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
}

.portfolio-item{
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
}

.portfolio-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover img{
  transform: scale(1.05);
}

.portfolio-item:hover{
  background: rgba(66, 100, 128, 0.7);
}

.portfolio-item:hover img{
  opacity: 0.3;
}

.portfolio-item p{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(20px);
  color: white;
  font-size: 3em;
  font-weight: bold;
  opacity: 0;
  transition: all 0.3s ease;
}

.portfolio-item:hover p{
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

/* Gallery */
.gallery{
  background: white;
  padding: 20px 20px;
}

* {
  box-sizing: border-box;
}

.row {
  display: -ms-flexbox; /* IE 10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE 10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

.column {
  -ms-flex: 50%; /* IE 10 */
  flex: 50%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
}

.video{
  background: white;
  padding: 20px 20px;
}

/* Contact */
.contact{
  padding: 20px 20px;
  text-align: center;
}

.contact form{
  max-width: 600px;
  margin: auto;
}

.contact input, .contact textarea, .contact select{
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

/* Links */
.links{
  background: #f9f9f9;
  padding: 20px 20px;
  text-align: center
}

.links img{
  width: 150px;
  height: 150px;
  padding: 30px;
}

/* Footer */
footer{
  text-align: right;
  padding: 20px;
  background-color:hsl(0, 0%, 25%);
  color: white;
}
