* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #070707;
  color: white;
  font-family: Arial, sans-serif;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 22px 60px;
  display: flex;
  justify-content: space-between;
  background: rgba(0,0,0,0.75);
  z-index: 10;
}

.logo img{
    height:60px;
}

nav a {
  color: white;
  margin-left: 25px;
  text-decoration: none;
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.9)),
    url("banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 120px 70px 60px;
}

.hero-content {
  max-width: 750px;
  margin-left: 0;
}

.tag {
  color: #ff9f00;
  font-weight: bold;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

h1 {
  font-size: 70px;
  color: #ff9f00;
  text-transform: uppercase;
}

.subtitle {
  font-size: 22px;
  margin: 20px 0 30px;
  color: #dddddd;
}

button {
  background: #ff9f00;
  color: #111;
  border: none;
  padding: 16px 28px;
  margin-right: 15px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
}

.outline {
  background: transparent;
  color: #ff9f00;
  border: 2px solid #ff9f00;
}

.section{
padding:120px 60px;
text-align:center;
}

.section h2, .founder h2 {
  color: #ff9f00;
  font-size: 40px;
  margin-bottom: 30px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cards div {
  background: #151515;
  padding: 35px;
  border-radius: 14px;
  font-size: 22px;
  border: 1px solid #333;
}

.founder {
  padding: 80px 60px;
  text-align: center;
  background: #111;
}

.founder p {
  font-size: 22px;
  margin-bottom: 30px;
}

footer {
  padding: 30px;
  text-align: center;
  background: #000;
  color: #aaa;
}

.cards{
display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;
}

.card{
background:#111;
padding:30px;
border-radius:15px;
width:220px;
border:1px solid orange;
transition:0.3s;
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 0 20px orange;
}
form {
  margin-top: 25px;
}

input {
  padding: 16px;
  width: 320px;
  max-width: 90%;
  border-radius: 10px;
  border: 2px solid #ff9f00;
  background: #111;
  color: white;
  font-size: 18px;
  margin-right: 10px;
}
.cards{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-top:40px;
}

.card{
background:#111;
padding:30px;
width:250px;
border-radius:15px;
border:1px solid orange;
font-size:22px;
transition:0.3s;
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 0 20px orange;
}   
.gallery{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:30px;
}

.shot img{
width:350px;
height:220px;
object-fit:cover;
border-radius:15px;
border:2px solid orange;
transition:0.3s;
}

.shot img:hover{
transform:scale(1.05);
}

.shot{
width:300px;
height:180px;
background:#151515;
border:1px solid orange;
border-radius:15px;

display:flex;
justify-content:center;
align-items:center;

font-size:24px;

margin-top:20px;
overflow:hidden;
}
.logo img {
  height: 60px;
  width: auto;
}
.shot{
  background: none;
  border: none;
  width: auto;
  height: auto;
  padding: 0;
}

.shot img{
  width: 350px;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  border: 2px solid orange;
  display: block;
}