
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth; 
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #ffffff;
  color: #333333;
  line-height: 1.6;
}

.navbar {
  display: flex;
  justify-content: right;
  align-items: center;
  background-color: rgba(26, 26, 26, 0.7); 
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mainphoto{
  display: flex;
  justify-content: center;
  gap: 10px;
  border: 1px;
  border-color: #545454;
  padding: 10px;
  border-radius: 12px;
  max-width: 1000px;
  margin: 0 auto 20px auto;
}

.mainphoto img {
 width: 100%;                 
  max-width: calc(33.33% - 6.66px); 
  height: auto;                
  object-fit: cover;           
  border-radius: 8px;  
}

.mainphoto-section {
  text-align: center;      
  margin: 50px 0; 
}

.title {
  font-size: 3rem;
  font-weight: bold;
  color: #545454;
  margin-bottom: 0.25rem;
}

.subtitle {
  color: #545454;
  margin-top: 0;
  font-weight: 200;
  font-size: 1.25rem;
}

.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  max-width: 90%;
  border-radius: 12px;
}


.section {
  padding: 5rem 10%;
  min-height: 100vh;
  background-color: #f9f9f9;
  border-bottom: 1px solid #ddd;
}

.section h2 {
  color: #545454;
}

p {
  margin-bottom: 1.5em; 
  line-height: 1.6;    
}


