/* ======================================
   MICROSITE ENGINE CUSTOM STYLES
   Built on top of Skeleton CSS
====================================== */

/* Override Skeleton defaults for dark theme */
body {
  background: #000;
  color: #fff;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", "HelveticaNeue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #fff;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  color: #ccc;
}

/* ======================================
   NAVIGATION BAR
   Row 1: 12 columns total
   - Brand: left side
   - Menu: right side
====================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .row {
  display: flex;
  align-items: center;
  position: relative;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #fff;
}

.navbar-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  position: relative;
}

.navbar-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.navbar-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.navbar-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.navbar-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  justify-content: flex-end;
}

.navbar-menu li {
  margin: 0;
}

.navbar-menu a {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}

.navbar-menu a:hover {
  opacity: 0.7;
}

.navbar-menu a.active {
  font-weight: bold;
}

@media (max-width: 549px) {
  .navbar {
    padding: 1rem 0;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .navbar .eight.columns {
    position: relative;
  }
  
  .navbar-toggle {
    display: flex;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .navbar-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 4rem 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    font-size: 1.5rem;
  }
  
  .navbar-menu.is-open {
    transform: translateX(0);
  }
  
  .navbar-menu li {
    width: 100%;
    text-align: center;
  }
  
  .navbar-menu a {
    display: block;
    padding: 1rem 0;
    font-size: 1.5rem;
    width: 100%;
  }
}

/* ======================================
   HERO SECTION
   Row 2: 3x3 grid = 4-4-4 columns (12 total)
   - Left: 4 columns (empty)
   - Center: 4 columns (title/tagline centered)
   - Right: 4 columns (empty)
====================================== */

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background slideshow images */
.hero-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}

.hero-images img.active {
  opacity: 1;
}

.hero-images img:first-child {
  opacity: 1;
}

/* Hero content overlay - using Skeleton grid */
.hero-content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  padding-top: 80px; /* Account for fixed navbar */
  display: flex;
  align-items: center;
}

/* Override container max-width for full-width hero */
.hero-content-wrapper .container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
}

/* Ensure hero grid row has no extra spacing and clears floats */
.hero-content-wrapper .row {
  margin-left: 0;
  margin-right: 0;
}

/* Ensure hero columns have no padding */
.hero-content-wrapper .columns {
  padding-left: 0;
  padding-right: 0;
}

/* Middle cell (8 columns) - contains title/tagline */
.hero-center-cell {
  text-align: center;
}

.hero-title {
  font-family: "Inter", "HelveticaNeue", Helvetica, Arial, sans-serif;
  font-size: 5rem;
  font-weight: 300;
  letter-spacing: -0.1rem;
  margin: 0 auto 1.5rem auto;
  line-height: 1.2;
  color: #ccc;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.8);
  display: inline-block;
  border-radius: 4px;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #ccc;
  margin: 1.5rem auto;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.8);
  display: inline-block;
  border-radius: 4px;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-logo {
  margin: 1.5rem 0 2rem 0;
  text-align: center;
}

.hero-logo-img {
  max-width: 200px;
  width: 200px;
  height: 200px;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
}

.hero-ctas {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-ctas a {
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: 1.2rem 2.4rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: #fff;
  background: #000;
  text-transform: uppercase;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.hero-ctas a:hover {
  background: #000;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6),
              0 0 40px rgba(255, 255, 255, 0.4),
              0 0 60px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

@media (max-width: 549px) {
  .hero-title {
    font-size: 3.6rem;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-ctas a {
    width: 200px;
    text-align: center;
  }
  
  .hero-logo-img {
    width: 150px;
    height: 150px;
    max-width: 150px;
  }
  
  .footer-logo-img {
    max-width: 120px;
  }
}

/* ======================================
   SECTION 2: HEADLINE WITH BACKGROUND
   Full-height section with background image
====================================== */

.section-headline {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-headline-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.section-headline-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-headline-content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Override container for full-width */
.section-headline-content .container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
}

.section-headline-content .row {
  margin-left: 0;
  margin-right: 0;
}

.section-headline-content .columns {
  padding-left: 0;
  padding-right: 0;
}

.section-headline-cell {
  text-align: center;
}

.section-headline h2 {
  font-size: 5rem;
  font-weight: 300;
  letter-spacing: -0.1rem;
  margin: 0 auto 1.5rem auto;
  line-height: 1.2;
  color: #ccc;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.8);
  display: inline-block;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.section-headline p {
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #ccc;
  margin: 1.5rem auto;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.8);
  display: inline-block;
  border-radius: 4px;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

@media (max-width: 549px) {
  .section-headline h2 {
    font-size: 3.6rem;
  }
  
  .section-headline p {
    font-size: 1.1rem;
  }
}

/* ======================================
   SECTION 3: FEATURED WORK
   Full-height section with 3-column grid
====================================== */

.section-featured {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 6rem 0;
  background: #000;
}

.section-featured .container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
}

.section-featured .row {
  margin-left: 0;
  margin-right: 0;
}

.section-featured .columns {
  padding-left: 0;
  padding-right: 0;
}

.section-featured-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-featured-title h2 {
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1rem;
}

.featured-item {
  position: relative;
  margin-bottom: 3rem;
  text-align: center;
}

.featured-item-image {
  width: 100%;
  height: 0;
  padding-bottom: 125%; /* 4:5 portrait ratio */
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.featured-item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.featured-item-title {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 1rem;
}

.featured-item-button {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 0.8rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #fff;
  background: transparent;
}

.featured-item-button:hover {
  background: #fff;
  color: #000;
}

@media (max-width: 549px) {
  .section-featured-title h2 {
    font-size: 2.5rem;
  }
  
  .featured-item {
    margin-bottom: 4rem;
  }
}

/* ======================================
   TEXT SECTION
   For About page and other text content
   Uses 2-8-2 Skeleton grid layout
====================================== */

.section-text {
  padding: 6rem 0;
  background: #000;
}

.section-text .row {
  display: flex;
  align-items: center;
  min-height: 40vh;
}

.section-text .eight.columns {
  text-align: center;
}

.section-text h2 {
  font-family: "Inter", "HelveticaNeue", Helvetica, Arial, sans-serif;
  font-size: 3.6rem;
  font-weight: 300;
  letter-spacing: -0.1rem;
  margin-bottom: 2rem;
  color: #fff;
  text-align: center;
}

.section-text p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #ccc;
  text-align: center;
  margin-bottom: 0;
}

@media (max-width: 549px) {
  .section-text {
    padding: 4rem 0;
  }
  
  .section-text .row {
    min-height: 30vh;
  }
  
  .section-text h2 {
    font-size: 2.4rem;
  }
  
  .section-text p {
    font-size: 1.4rem;
  }
}

/* ======================================
   SECTION 4: CTA SECTION
   Full-height section with title/subheading and 3 big CTA buttons
====================================== */

.section-cta {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.section-cta .container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
}

.section-cta .row {
  margin-left: 0;
  margin-right: 0;
}

.section-cta .columns {
  padding-left: 0;
  padding-right: 0;
}

.section-cta-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-cta-header h2 {
  font-size: 5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  line-height: 1.2;
  color: #fff;
}

.section-cta-header p {
  font-size: 1.8rem;
  font-weight: 300;
  opacity: 0.9;
  letter-spacing: 0.05em;
  color: #fff;
}

.section-cta-button {
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: 1.5rem 3rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #fff;
  background: transparent;
  text-align: center;
  min-width: 200px;
  text-decoration: none;
}

.section-cta-button:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

@media (max-width: 549px) {
  .section-cta-header h2 {
    font-size: 3rem;
  }
  
  .section-cta-header p {
    font-size: 1.4rem;
  }
  
  .section-cta-button {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 0 auto 1.5rem;
  }
}

/* ======================================
   SECTION: GALLERY
   Gallery grid layout (similar to featured work)
====================================== */

.section-gallery {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 6rem 0;
  background: #000;
}

.section-gallery .container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
}

.section-gallery .row {
  margin-left: 0;
  margin-right: 0;
}

.section-gallery .columns {
  padding-left: 0;
  padding-right: 0;
}

.section-gallery-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-gallery-title h2 {
  font-family: "Inter", "HelveticaNeue", Helvetica, Arial, sans-serif;
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: -0.1rem;
  color: #fff;
  margin-bottom: 1rem;
}

.gallery-item {
  position: relative;
  margin-bottom: 3rem;
  text-align: center;
}

.gallery-item-image {
  width: 100%;
  height: 0;
  padding-bottom: 125%; /* 4:5 portrait ratio */
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.gallery-item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.gallery-item-title {
  font-family: "Inter", "HelveticaNeue", Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.05rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.gallery-item-description {
  font-size: 1rem;
  font-weight: 300;
  color: #ccc;
  line-height: 1.6;
}

@media (max-width: 549px) {
  .section-gallery-title h2 {
    font-size: 2.5rem;
  }
  
  .gallery-item {
    margin-bottom: 4rem;
  }
}

/* ======================================
   SECTION: STORE GRID
   Product grid layout
====================================== */

.section-store-grid {
  background: #000;
  color: #fff;
  padding: 6rem 0;
  min-height: 100vh;
}

.section-store-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-store-title h2 {
  font-family: "Inter", "HelveticaNeue", Helvetica, Arial, sans-serif;
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: -0.1rem;
  color: #fff;
  margin-bottom: 1rem;
}

.store-item {
  margin-bottom: 4rem;
  text-align: center;
}

.store-item-image {
  width: 100%;
  height: 0;
  padding-bottom: 125%; /* 4:5 portrait ratio */
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: #111;
}

.store-item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.store-item-info {
  padding: 0 1rem;
}

.store-item-title {
  font-family: "Inter", "HelveticaNeue", Helvetica, Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: -0.05rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.store-item-description {
  font-size: 1rem;
  font-weight: 300;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.store-item-price {
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 1.5rem;
}

.store-item-button {
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: 1rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #fff;
  background: transparent;
  text-decoration: none;
  text-transform: uppercase;
}

.store-item-button:hover {
  background: #fff;
  color: #000;
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6),
              0 0 40px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 549px) {
  .section-store-title h2 {
    font-size: 2.5rem;
  }
  
  .store-item {
    margin-bottom: 4rem;
  }
}

/* ======================================
   FOOTER
   Final row: 12 columns
====================================== */

/* ======================================
   SECTION: SOCIAL LINKS
   Full-width black background with social buttons
====================================== */

.section-social {
  background: #000;
  color: #fff;
  padding: 6rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.section-social h2 {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 3rem;
}

.social-link-wrapper {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.social-link {
  display: inline-block;
  padding: 1.5rem 3rem;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  min-width: 180px;
}

.social-link:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6),
              0 0 40px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.social-icon {
  max-width: 60px;
  height: auto;
  display: block;
}

.social-label {
  display: block;
}

@media (max-width: 549px) {
  .section-social {
    padding: 4rem 0;
  }
  
  .section-social h2 {
    font-size: 2rem;
  }
  
  .social-link {
    padding: 1rem 2rem;
    font-size: 0.9rem;
    min-width: 140px;
  }
}

.footer {
  background: #000;
  color: #fff;
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-img {
  max-width: 150px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto 1.5rem auto;
}

.footer-nav {
  margin-bottom: 1rem;
}

.footer-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-menu li {
  margin: 0;
}

.footer-menu a {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
  color: #fff;
}

.footer-menu a:hover {
  opacity: 0.7;
}

.footer-menu a.active {
  font-weight: bold;
}

/* ======================================
   UTILITIES
====================================== */

.text-center {
  text-align: center;
}

/* Smooth transitions */
* {
  transition: opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
