body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  font-family: 'Arial', sans-serif;
}

header {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(30, 30, 30, 0.7));
  color: white;
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-logo {
  width: 60px;
  height: auto;
  transition: transform 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.1);
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 15px;
  border-radius: 20px;
  transition: background 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
}

main {
  margin-top: 80px;
  margin-bottom: 70px;
  height: calc(100vh - 150px);
  overflow: hidden;
}

.with-background {
  height: 100%;
  width: 100vw;
  background-image: url('/assets/arthouse.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.landing-page {
  height: 100%;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.overlay {
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  padding: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo {
  width: 150px;
  height: auto;
  position: absolute;
  top: 20px;
  left: 20px;
}

.company-name {
  width: 500px;
  height: auto;
  margin-bottom: 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 300px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

p {
  font-size: 1.2rem;
}

footer {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(30, 30, 30, 0.7));
  color: white;
  padding: 15px 0;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-container p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 0.9rem;
  padding: 5px 10px;
  border-radius: 15px;
  transition: background 0.3s ease, color 0.3s ease;
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
}

.content-page {
  height: calc(100vh - 150px);
  width: 100vw;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  color: #333;
  text-align: left;
  overflow-y: auto;
  padding: 20px 0;
}

.content-page .container {
  background: transparent;
  border-radius: 8px;
  box-shadow: none;
  padding: 30px;
  max-width: 800px;
  margin: 20px auto;
}

.content-page h1 {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}

.content-page h2 {
  font-size: 1.8rem;
  color: #34495e;
  margin-top: 30px;
  margin-bottom: 10px;
}

.content-page p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.content-page form {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.content-page label {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #34495e;
}

.content-page input, .content-page textarea {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.content-page button {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.content-page button:hover {
  background-color: #2980b9;
}

.contact-info {
  margin-top: 30px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
} 