/* Reset some defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Georgia', serif;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  text-shadow: 0 0 15px rgba(0,0,0,0.5);
  padding: 0 20px;
}

.hero-overlay h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
}

.hero-overlay p {
  font-size: 1.5em;
  margin-bottom: 1em;
}

.cta-button {
  background-color: rgba(255,255,255,0.9);
  color: #000;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

/* PHILOSOPHY SECTION */
.philosophy {
  padding: 80px 20px;
  text-align: center;
  font-size: 1.3em;
  line-height: 1.8em;
}

/* EXPERIENCES */
.experiences, .difference, .about, .enquiry {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.experiences ul, .difference ul {
  list-style-type: none;
  font-size: 1.2em;
  line-height: 1.8em;
}

.about-photo {
  width: 200px;
  border-radius: 50%;
  display: block;
  margin: 20px auto 0 auto;
}

/* ENQUIRY FORM */
.enquiry form {
  display: flex;
  flex-direction: column;
}

.enquiry input, .enquiry textarea {
  padding: 12px;
  margin-bottom: 15px;
  font-size: 1em;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.enquiry button {
  padding: 15px;
  font-size: 1em;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.enquiry button:hover {
  background-color: #333;
}

/* RESPONSIVE */
@media(max-width: 768px){
  .hero-overlay h1 { font-size: 2em; }
  .hero-overlay p { font-size: 1.2em; }
}