/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  caret-color: transparent;      /* Hide caret */
  user-select: none;             /* Prevent text selection */
  -webkit-user-select: none;     /* Safari/Chrome */
  -ms-user-select: none;         /* IE/Edge */
  height: 100%;
  width: 100%;
  font-family: 'Open Sans', sans-serif; /* Default body font */
  background-color: #000;
  color: #fff;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.logo a {
  text-decoration: none;   
  color: inherit;          
  font-weight: bold;       
  font-size: 1.5rem;       
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffcc00;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  background: url('../images/paoreel.png') no-repeat center center/cover;
  position: relative;
  padding: 3rem;
  color: #fff;
}

/* Dark overlay for readability */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

/* Hero Fonts */
.hero-content h1 {
  font-family: 'Playfair Display', serif; /* Elegant title */
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  font-family: 'Open Sans', sans-serif; /* Readable description */
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Hero Button */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #000; /* Black */
  color: #fff;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.btn:hover {
  background-color: #d3d3d3; /* Light gray */
  color: #000; 
}

/* Portfolio */
.portfolio {
  padding: 6rem 3rem 3rem;
  background-color: #111;
  text-align: center;
}

.portfolio h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #ffcc00;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.grid-item {
  overflow: hidden;
  border-radius: 8px;
}

.grid-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.grid-item img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    text-align: center;
    justify-content: center;
    padding: 2rem;
  }
  .hero-content {
    max-width: 100%;
  }
}