/* ===================================
   3 STEEL STUDIO AND DESIGN
   Complete Stylesheet
   =================================== */

/* Base Styles */
body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  color: #222;
  background: #f9f7f4;
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  background: #1a1a1a;
  color: white;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
}

nav a.active {
  color: #d4af37;
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 40px;
}

.hero-title {
  font-size: 3.9rem;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 
    0 0 10px rgba(0,0,0,0.9),
    0 0 20px rgba(0,0,0,0.8),
    3px 3px 8px rgba(0,0,0,0.95);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: #ffffff;
  text-shadow: 
    0 0 8px rgba(0,0,0,0.9),
    2px 2px 6px rgba(0,0,0,0.9);
  margin-bottom: 35px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  margin: 10px;
  font-size: 1rem;
}

.btn-primary {
  background: #d4af37;
  color: #1a1a1a;
}

.btn-secondary {
  border: 2px solid white;
  color: white;
}

/* Intro Section */
.intro {
  padding: 80px 40px;
  background: #f9f7f4;
}

.intro .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro h2 {
  font-size: 2.4rem;
  margin-bottom: 25px;
}

.intro p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 20px;
}

/* Page Headers */
.page-header {
  text-align: center;
  padding: 70px 20px 50px;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.2rem;
  color: #555;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  padding: 50px 60px;
  max-width: 1500px;
  margin: 0 auto;
}

.portfolio-item {
  padding: 10px;
}

.portfolio-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.portfolio-item h3 {
  margin-top: 18px;
  font-size: 1.2rem;
  padding: 0 5px;
}

/* About Page */
.about-content {
  max-width: 850px;
  margin: 0 auto;
  padding: 60px 40px;
  font-size: 1.15rem;
  line-height: 1.8;
}

.about-content p {
  margin-bottom: 25px;
}

/* Contact Page */
.contact-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 40px;
  text-align: center;
}

.contact-info h3 {
  margin-top: 30px;
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.contact-info p {
  font-size: 1.15rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 35px 20px;
  background: #1a1a1a;
  color: #aaa;
  font-size: 0.95rem;
}
