@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&family=Montserrat:wght@300;400;600&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #111;

  /* Base */
  background-color: #f5f5f5;

  /* Moving subtle stripes + soft glow */
  background-image:
    radial-gradient(circle at 20% 30%, rgba(57,255,20,0.12), transparent 320px),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,0.05), transparent 420px),
    linear-gradient(45deg, #f5f5f5 25%, #eeeeee 25%, #eeeeee 50%, #f5f5f5 50%, #f5f5f5 75%, #eeeeee 75%, #eeeeee);

  background-size:
    900px 900px,
    1100px 1100px,
    80px 80px;

  animation: moveBg 14s linear infinite;
}

/* Moves BOTH the glow + pattern */
@keyframes moveBg{
  0%{
    background-position: 0% 0%, 0% 0%, 0 0;
  }
  100%{
    background-position: 100% 100%, -80% -60%, 80px 0;
  }
}

}

/* NAV */

nav {
  padding: 20px 40px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
}
.hero::before{
  content:"";
  position:absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(57,255,20,0.10);
  top: 40px;
  right: 60px;
  filter: blur(2px);
  animation: floatBlob 6s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes floatBlob{
  from{ transform: translateY(0px); }
  to{ transform: translateY(22px); }
}

/* HERO */

.hero {
  padding: 60px 60px 80px;
  position: relative;
}

/* BIG TYPOGRAPHY */

.big-title {
  font-family: 'Oswald', sans-serif;
  font-size: 140px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 6px;
  color: #111;
}

.big-outline {
  font-family: 'Oswald', sans-serif;
  font-size: 140px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 6px;
  color: transparent;
  -webkit-text-stroke: 3px #111;
  margin-bottom: 40px;
}

/* CONTENT GRID */

.hero-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.hero-text {
  flex: 1;
}

.hero-text h2 {
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-text p {
  margin-bottom: 25px;
  line-height: 1.7;
}

/* IMAGE */

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* BUTTON */

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background: #111;
  color: white;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  position: relative;
}

.cta-button:hover {
  background: #39ff14; /* neon accent */
  color: #111;
}

/* FOOTER */

footer {
  padding: 40px;
  text-align: center;
  font-size: 14px;
  color: #666;
}
/* ===== PAGES (Gallery/About/Contact) ===== */

.page{
  padding: 40px 60px 80px;
}

.page-title{
  font-family: 'Oswald', sans-serif;
  font-size: 96px;
  letter-spacing: 6px;
  line-height: 1;
  margin-bottom: 10px;
}

.page-subtitle{
  max-width: 900px;
  margin-bottom: 30px;
  color: #555;
}

/* GRID */
.grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.tile{
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}
.tile{
  display:block;
  text-decoration:none;
  color: inherit;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tile:hover{
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.18);
}

.tile img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.2s ease;
}

.tile:hover img{
  transform: scale(1.08);
}

.tile-label{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.78), rgba(0,0,0,0));
}

.tile-label h3{
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  font-size: 18px;
  color: #fff;
}

.tile-label p{
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}

/* ABOUT split */
.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 900px){
  .hero{ padding: 40px 24px 70px; }
  .big-title, .big-outline{ font-size: 90px; }
  .hero-content{ flex-direction: column; }
  .page{ padding: 40px 24px 70px; }
  .page-title{ font-size: 64px; }
  .split{ grid-template-columns: 1fr; }
}

/* CARDS + FORM */
.card{
  background: #ffffff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}

.card h2{
  font-family: 'Oswald', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.form{
  display: grid;
  gap: 10px;
}

label{
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

input, textarea{
  width: 100%;
  padding: 12px;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  font-family: inherit;
}

.btn{
  background: #111;
  color: #fff;
  border: 0;
  padding: 12px 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
}

.btn:hover{
  background: #39ff14;
  color: #111;
}
.project-hero img{
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  display: block;
  margin-bottom: 18px;
}

.section-title{
  font-family: 'Oswald', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 26px 0 14px;
}

.project-grid{
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.project-grid img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.10);
}
.project-grid video{
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.10);
  background: #000;
}
/* ===== SENIOR PACKAGE SECTION ===== */

.senior-package{
  padding: 80px 40px;
  background: #111;
  color: #fff;
  text-align: center;
}

.senior-container{
  max-width: 900px;
  margin: 0 auto;
}

.senior-title{
  font-family: 'Oswald', sans-serif;
  font-size: 72px;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.senior-price{
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 26px;
  color: #39ff14;
  font-weight: 700;
  text-transform: uppercase;
}

.senior-description{
  font-size: 18px;
  line-height: 1.8;
  margin: 0 auto 26px;
  max-width: 820px;
  color: #ddd;
}

.senior-features{
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
}

.senior-features li{
  margin-bottom: 10px;
  font-size: 15px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.9);
}