/* General Base Styling to flow from your Hero Section */
body {
    background-color: #0a0a0a; /* Matches your hero background perfectly */
    margin: 0;
    padding: 0;
    color: white;
}

/*Navigation*/
#nav-bar {
  position: relative;
}

#nav-bar nav {
  padding: 0.5em 5%;
  background: black;
  border-bottom: 1px solid black;
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.logo {
  margin-right: auto;
}

.logo img {
  width: 150px;
  height: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2em;
  margin-right: 30px;
}

.nav-links li a {
  position: relative;
  font-size: 1.05em;
  font-weight: 500;
  text-decoration: none;
  color: darkgray;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: white;
  text-shadow: 0 0 10px white;
}

/* Burger button */
.menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 16px;
  line-height: 0;
}

.menu-toggle img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  filter: invert(1);
}

/* Mobile dropdown */
.mobile-menu {
  background: black;
  position: absolute;
  top: 100%;
  right: 0;
  width: 50%;
  box-sizing: border-box;
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.mobile-menu.open {
  max-height: 500px;
  border-top: 1px solid #1a1a1a;
}

.mobile-menu ul {
  list-style: none;
  padding: 1.5em 5% 0 5%;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  text-align: right;
}

.mobile-menu ul li {
  border-bottom: 1px solid #1a1a1a;
}

.mobile-menu ul li a {
  display: block;
  padding: 0.85em 0;
  font-size: 1.05em;
  font-weight: 500;
  color: darkgray;
  text-decoration: none;
  transition: color 0.3s;
  text-align:right;
}

.mobile-menu ul li a:hover {
  color: white;
  text-shadow: 0 0 10px white;
}

.mobile-menu .btn {
  display: inline-block;
  margin: 1.5em 5%;
  float: right;
}

@media (min-width: 769px) {
  .mobile-menu {
    width: 25%;
  }
}

/* Responsive breakpoint */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .desktop-contact {
    display: none;
  }
  /*.menu-toggle {
    display: block;
  }*/
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1em 2.5em;
  border-radius: 0px;
  font-weight: 900;
  font-size: 0.95em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  background: black;
  color: #ffffff;
  border: 1px solid gray;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 1em 1.5em;
  font-size: 0.8em;
  letter-spacing: 0.05em;
}










/* Base Layout Structure */
.projects-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 32px; /* Large spatial margins for a gallery feel */
}

/* Premium Section Header */
.projects-header {
    margin-bottom: 90px;
}

.section-eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c8b89a; /* Matches your hero gold theme accent */
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: white;
    margin: 0;
}

/* The Grid List */
.projects-list {
    display: flex;
    flex-direction: column;
    gap: 120px; /* Expansive margins between different projects */
}

/* Dynamic Row Layout */
.project-row {
    display: flex;
    gap: 0px; /* Clean whitespace separating columns */
    align-items: stretch;
}

/* Left Side Column: Media Container */
.project-image-column {
    flex: 1.2; /* Image takes slightly more weight for raw visual impact */
    min-width: 0;
}

.image-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #121212;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    filter: grayscale(15%) brightness(90%); /* Gives images a cinematic, premium look */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover accent line for interactivity */
.project-row:hover .project-image {
    transform: scale(1.03);
}


/* Right Side Column: Premium Framed Info Structure */
.project-info-column {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
    /* Elegant Dark Border Setup */
    padding: 40px; /* Generous inside breathing room */
    background-color: #0e0e0e; /* Slightly lighter than #0a0a0a to create subtle depth */
    border-left: none;
    border: 1px solid rgba(255, 255, 255, 0.05); /* Ultra-fine, upscale border line */
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
/* Top Meta Row (Logo & Date) */
.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

/* Luxury Round Logo Bubble */
.logo-bubble-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    padding: 2px;
    border: 1px solid rgba(200, 184, 154, 0.3); /* Subtle tint of your gold theme */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0d0d0d;
}

.client-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.project-date {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: #888888;
}

/* Body Content Area */
.project-details {
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.project-description {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.7;
    font-weight: 300;
    color: lightgray;
    margin: 0;
}

/* Footer Element */
.project-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.launch-timeline {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c8b89a; /* Ties back into your luxury design accent color */
}

/* Responsive Adaptive Viewports */
@media (max-width: 900px) {
    .project-row {
        flex-direction: column;
        gap: 24px;
    }
    
    .image-wrapper {
        height: 350px;
    }
    
    .project-info-column {
        border-top: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 32px;
    }
    
    .projects-section {
        padding: 80px 24px;
    }
}




/*FOOOTER*/
#footer {
  background-color: #141414;
  color: #e2e8f0;
  font-family: inherit;
  padding: 3rem 2rem 1.5rem;
  
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 0.5px solid black;
  padding-top: 2rem;
}

/* ── Grid ── */
.footer-top {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr;
  align-items: start;
  gap: 2rem;
  margin-bottom: 2rem;
}

/* ── Column label ── */
.footer-col-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8b89a;
  margin: 0 0 1rem;
}

/* ── Brand ── */
.footer-logo {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 13px;
  color: #718096;
  line-height: 1.6;
  margin: 0;
}

/* ── Nav ── */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav a {
  font-size: 16px;
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

/* ── Contact ── */
#footer address {
  font-style: normal;
}



.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.65rem;
}

.footer-contact-item img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  filter: brightness(0) invert(0.4);
}

.footer-contact-item span {
  font-size: 16px;
  color: #a0aec0;
  line-height: 1.5;
  text-align: left;
}

#footer .contact-item:last-child {
  margin-bottom: 0;
}


.footer-contact-item a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: #ffffff;
}



/* ── Socials ── */
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.social-link img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(0.6);
  transition: filter 0.2s ease;
}

.social-link:hover img {
  filter: brightness(0) invert(1);
}



.social-link:hover {
  color: #ffffff;
}

.social-link i {
  font-size: 17px;
}

/* ── Divider ── */
.footer-divider {
  border: none;
  border-top:0.5px solid black;
  margin: 0 0 1.25rem;
}

/* ── Bottom ── */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-top: 0.5px solid black;
  margin-top: 2rem;
  padding-top: 1.25rem;
}

.footer-bottom p {
  font-size: 12px;
  color: #4a5568;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  #footer {
    padding: 2rem 1.25rem 1.25rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
