@font-face {
  font-family: "Adrianna Extended";
  src: url("/assets/fonts/adrianna-extended.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: "Adrianna Extended", "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.4em;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: "Adrianna Extended", "Times New Roman", serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 1em 0 0.3em;
}

h1 {
  font-size: 1.9em;
  line-height: 1.7em;
  letter-spacing: 1.03px;
  text-transform: none;
}

h2 {
  font-size: 1.8em;
  font-weight: 300;
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h3 {
  font-size: 1.1em;
  line-height: 1.6em;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.17px;
}

p {
  font-family: "Adrianna Extended", "Times New Roman", serif;
  font-size: 9px;
  font-weight: 400;
  line-height: 1.4em;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 1.4em;
}

a {
  color: #245959;
  text-decoration: none;
}
a:hover {
  color: #245959;
}

/* Header */
.site-header {
  background-color: #000;
  padding: 0;
}

.header-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-title {
  margin: 0;
}
.site-title a {
  text-decoration: none;
  display: block;
}
.site-title a:hover {
  opacity: 0.8;
}

.site-logo {
  height: 180px;
  width: auto;
  display: block;
  max-width: 600px;
}

/* Navigation */
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.site-nav a {
  color: #fff;
  font-family: "Adrianna Extended", "Times New Roman", serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.89px;
  text-decoration: none;
  padding: 13px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.site-nav a:hover, .site-nav a.active {
  color: #fff;
  border-bottom-color: #fff;
}

/* Hero Section */
.hero-section {
  background-color: #000;
  padding: 10px 0;
  text-align: center;
}
.hero-section img {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  display: block;
  margin: 0 auto;
}

/* Main Content */
.page-content {
  padding: 10px 0;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-content {
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 200px;
  padding: 10px 0;
}

.quote-section {
  flex: 2;
}
.quote-section h1 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
}

.cta-section {
  flex: 1;
  text-align: center;
}

.view-projects-btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid #fff;
}
.view-projects-btn:hover {
  background-color: #fff;
  color: #000;
}

/* Footer */
.site-footer {
  background-color: #000;
  padding: 40px 0;
  text-align: center;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
}
.social-icon.facebook {
  background-color: #3b5998;
  color: #fff;
}
.social-icon.facebook:hover {
  background-color: #2d4373;
  transform: scale(1.1);
}
.social-icon.instagram {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  color: #fff;
}
.social-icon.instagram:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(245, 133, 41, 0.4);
}
.social-icon.linkedin {
  background-color: #0A66C2;
  color: #fff;
}
.social-icon.linkedin:hover {
  background-color: #004182;
  transform: scale(1.1);
}
.social-icon.email {
  background-color: #34495e;
  color: #fff;
}
.social-icon.email:hover {
  background-color: #2c3e50;
  transform: scale(1.1);
}

/* Page Layouts */
.page-header {
  background-color: #000;
  padding: 60px 0;
  text-align: center;
}
.page-header h1 {
  font-size: 42px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}

.page-content-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}
.page-content-inner h1, .page-content-inner h2, .page-content-inner h3 {
  margin-bottom: 20px;
}
.page-content-inner p {
  margin-bottom: 20px;
  line-height: 1.8;
}
.page-content-inner ul, .page-content-inner ol {
  margin: 20px 0;
  padding-left: 30px;
}
.page-content-inner li {
  margin-bottom: 8px;
}

/* Override for about page */
.about-page-content .page-content-inner {
  max-width: none;
  padding: 0;
  margin: 0;
}

/* Portfolio Gallery */
.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin: 40px 0;
}

.portfolio-item {
  text-align: center;
}
.portfolio-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border: 1px solid #fff;
  transition: transform 0.3s ease;
}
.portfolio-item img:hover {
  transform: scale(1.05);
}
.portfolio-item h3 {
  margin: 20px 0 10px 0;
  font-size: 18px;
  color: #fff;
}
.portfolio-item p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  text-transform: none;
}

/* About Page Styles */
.about-page-content {
  background-color: #000;
  padding: 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.about-container {
  max-width: 95vw;
  margin: 0 auto;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  width: 100%;
  min-height: 80vh;
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image img {
  width: auto;
  height: auto;
  display: block;
  max-width: 600px;
  max-height: none;
  border: none;
}

.about-spacer {
  width: 100%;
}

.about-text {
  max-width: 800px;
  text-align: center;
}
.about-text h3 {
  font-family: "Adrianna Extended", "Times New Roman", serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6em;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.17px;
  margin: 0 0 1.5em 0;
  white-space: pre-wrap;
}
.about-text h3:first-child {
  margin-bottom: 2em;
}

/* Responsive Design */
@media screen and (max-width: 900px) {
  .header-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .site-nav ul {
    gap: 20px;
  }
  .main-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .quote-section h1 {
    font-size: 28px;
  }
  .hero-title {
    font-size: 36px;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-text {
    padding-left: 0;
  }
}
@media screen and (max-width: 600px) {
  .site-nav ul {
    flex-direction: column;
    gap: 10px;
  }
  .quote-section h1 {
    font-size: 24px;
  }
  .hero-section {
    padding: 60px 0;
  }
  .hero-title {
    font-size: 28px;
  }
  .view-projects-btn {
    padding: 15px 30px;
    font-size: 14px;
  }
  .about-container {
    padding: 20px 10px;
  }
  .about-text h3 {
    font-size: 10px;
  }
}

/*# sourceMappingURL=main.css.map */