/* Variables */
:root {
  --font-sans: "Inter", Helvetica, sans-serif;
  --font-serif: Iowan Old Style, Apple Garamond, Baskerville, Times New Roman,
    Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji,
    Segoe UI Emoji, Segoe UI Symbol;
  --font-size: 18px;
  --color-green: #27ae60;
  --color-yellow: #ffda00;
  --color-dark: #333;
  --color-light: #f2f2f2;
  --transition-dur: 0.3s;
}


/* Custom Styles */
body {
  font-family: var(--font-sans);
  font-size: var(--font-size);
  line-height: 1.5;
  background-color: #121212;
  color: #f0f0f0;
}


/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/img/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 150px 20px;
  position: relative;
}

.btn-custom {
  border-radius: 50px;
  padding: 10px 30px;
  font-size: 1.2rem;
  margin-top: 20px;
}


/* About Section */
.about .row {
  padding-bottom: 70px;
  padding-top: 50px;
}


/* Portfolio Section */
.portfolio .row {
  padding-bottom: 70px;
  padding-top: 50px;
}

.portfolio-item {
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.portfolio-item:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}


/* Contact Section */
.contact .row {
  padding-bottom: 70px;
  padding-top: 50px;
}

/* Footer Section */

footer {
  background-color: #000;
  color: #bbb;
  text-align: center;
  padding: 30px 0;
}


/* Custom CSS */

.section-title {
  color: #ffd700
}