/*PPP GLOBAL*/
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  background: #ffffff;
  color: #010000;
}
.container {
  width: 90%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 15px;
}
section {
  width: 100%;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/*HEADER + NAV*/
header {
  background: #000;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  height: 110px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.logo:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
.menu-toggle {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}
/*NAV*/
nav {
  display: flex;
  align-items: center;
  gap: 25px;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease;
}
nav a:hover {
  color: #E49411;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #E49411;
  transition: width 0.3s ease;
}
nav a:hover::after {
  width: 100%;
}
nav a.active {
  color: #E49411;
}
nav a.active::after {
  width: 100%;
}
/*HERO*/
.hero {
  background: url("img/ppp_hero.png") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}
/*BUTTONS*/
.button {
  display: inline-block;
  padding: 12px 20px;
  background-color: #E49411;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 15px;
  transition: all 0.3s ease;
}
.button:hover {
  background-color: #c97f0f;
  transform: translateY(-2px);
}
/*FEATURES*/
.features {
  padding: 60px 0;
  background: #f5f5f5;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}
.feature {
  background: #fff;
  padding: 20px;
  text-align: center;
  border: 2px solid #ccc;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature img {
  border-radius: 6px;
  margin-bottom: 15px;
  position: relative;
  transition: transform 0.4s ease;
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}
.feature:hover img {
  transform: scale(1.05);
}
/*LOGO ROW*/
.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding: 20px;
  border: 2px solid #ccc;
  border-radius: 6px;
  background: #fff;
}
.logo-row img {
  height: 60px;
  width: auto;
  display: inline-block;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.logo-row img:hover {
  transform: scale(1.08);
  opacity: 0.85;
}
/*GALLERY*/
.gallery-item {
  position: relative;
  border: 2px solid #ccc;
  border-radius: 6px;
  width: auto;
  display: inline-block;
  object-fit: contain;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}
.gallery-item img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  cursor: pointer;
}
/*BADGES*/
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: bold;
  color: #fff;
  border-radius: 4px;
}
.badge.new {
  background: rgba(0, 153, 0, 0.7);
}
.badge.featured {
  background: rgba(204, 0, 204, 0.7);
  top: 40px;
}
/*SIZE*/
.size {
  position: absolute;
  bottom: 42px;
  right: 10px;
  background: rgba(1, 0, 0, 0.7);
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
}
/*PRICE*/
.price {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(1, 0, 0, 0.7);
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
}
/*SOLD*/
.sold {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(204, 0, 0, 0.7);
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
}
/*LIGHTBOX*/
#lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}
#lightbox img {
  max-width: 90%;
  max-height: 90%;
}
#close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}
/*CONTACT INTRO*/
.contact-intro {
  max-width: 600px;
  margin: 0 auto 30px auto;
  text-align: center;
}
/*FORM*/
form {
  max-width: 600px;
  margin: 20px auto;
}
form input, form textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ccc;
  border-radius: 6px;
  margin-bottom: 15px;
}
/*CTA*/
.cta {
  width: 100%;
  background: #f5f5f5;
  padding: 50px 20px;
  text-align: center;
}
.cta .container {
  max-width: 800px;
  margin: 0 auto;
}
/*FOOTER*/
footer {
  width: 100%;
  background: #222;
  color: white;
  padding: 30px 0;
  margin-top: 40px;
}
footer .container {
  text-align: center;
}
/* ========================
MOBILE MENU (SLIDE + FADE)
======================== */

@media (max-width: 768px) {

.logo {
float: none;
display: block;
margin: auto;
}

.menu-toggle {
display: block;
}

/* NAV becomes dropdown */
nav {
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: #000;

opacity: 0;
transform: translateY(-10px);
max-height: 0;
overflow: hidden;

transition: all 0.4s ease;
}

nav.active {
opacity: 1;
transform: translateY(0);
max-height: 400px;
}

/* Links */
nav a {
display: block;
margin: 15px 0;
padding: 10px 0;
}

/* Mobile typography */
.hero h1 {
font-size: 26px;
}

.hero p {
font-size: 16px;
}

.button {
width: 50%;
text-align: center;
}

.container {
padding: 0 15px;
}

}
/* LOGO */
.logo {
transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover {
transform: scale(1.05);
opacity: 0.9;
}

.logo-row img {
height: 60px;
transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-row img:hover {
transform: scale(1.08);
opacity: 0.85;
filter: brightness(1.1);
}
/* CONTACT FORM INTRO */
.contact-intro {
text-align: center;
max-width: 600px;
margin: 0 auto 30px auto;
}

.contact-intro h2 {
margin-bottom: 10px;
}

.contact-intro p {
margin-bottom: 20px;
}

/* ===== FINAL FIXES ===== */

/* Ensure hero width consistency */
.hero {
max-width:100%;
}

/* Restore logo row layout */
.logo-row {
display:flex;
justify-content:center;
align-items:center;
gap:30px;
flex-wrap:wrap;
margin-top:30px;
padding:20px;
background:#fff;
border:2px solid #ccc;
border-radius:6px;
}

.logo-row img {
height:70px;
width:auto;
transition:transform 0.3s ease, opacity 0.3s ease;
}

.logo-row img:hover {
transform:scale(1.08);
opacity:0.85;
}

/* Fix feature hover */
.feature {
transition:all 0.3s ease;
}

.feature:hover {
transform:translateY(-5px);
box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

/* Fix footer width */
footer {
width:100%;
}

/* Fix contact intro centering */
.contact-intro {
max-width:600px;
margin:0 auto 30px auto;
text-align:center;
}

/* Gallery badge polish */
.price {
background:#000;
}

/* ========================
MOBILE NAV FIX
======================== */

.menu-toggle{
display:none;
font-size:28px;
color:#fff;
cursor:pointer;
}

/* MOBILE */
@media (max-width:768px){

header .container{
flex-wrap:wrap;
}

/* show hamburger */
.menu-toggle{
display:block;
}

/* NAV DROPDOWN */
nav{
width:100%;
flex-direction:column;
background:#000;

max-height:0;
overflow:hidden;

transition:max-height 0.4s ease;
}

/* OPEN STATE */
nav.active{
max-height:500px;
}

/* LINKS */
nav a{
display:block;
padding:12px 0;
margin:0;
border-top:1px solid rgba(255,255,255,0.1);
text-align:center;
}

}