/* === Daimond Designs Visual Overrides === */
:root {
  --accent: #b1976b !important; /* gold */
  --accent-rgb: 177,151,107 !important;
  --heading-color: #1c1b1b !important;
  --default-color: #333 !important;
  --background-color: #fff !important;
  --surface-color: #faf8f5 !important;
}

/* === Global Look === */
body {
  font-family: 'Poppins', sans-serif !important;
  background-color: #111 !important; /* dark base */
  color: #ddd !important;
}

section {
  background-color: #111 !important;
}
.section-title h2 {
  color: #fff !important;
}

/* === HERO SECTION === */
#hero {
  background: url('../img/hero-bg.jpg') center/cover no-repeat !important;
  color: #fff !important;
  text-align: left !important;
  padding: 180px 0 !important;
  position: relative;
}
#hero h1 {
  font-weight: 700 !important;
  font-size: 56px !important;
  line-height: 1.2;
  margin-bottom: 15px;
}
#hero p {
  font-size: 18px !important;
  color: #eee !important;
  max-width: 650px;
}
#hero .btn {
  font-weight: 600 !important;
  padding: 10px 22px !important;
  border-radius: 4px !important;
  background: var(--accent) !important;
  border: none !important;
  color: #111 !important;
  transition: all 0.3s ease !important;
}
#hero .btn:hover {
  background: #a58c5c !important;
  color: #fff !important;
}

/* === NAVBAR === */
.header {
  background: transparent !important;
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 20px 0;
  box-shadow: none !important;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.header.scrolled {
  background: rgba(17, 17, 17, 0.9) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header .logo h1 {
  background: none !important;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navbar {
  background: transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar a {
  color: #f2f2f2 !important;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color 0.3s ease;
}
.navbar a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}
.navbar a:hover::after,
.navbar .active::after {
  width: 100%;
}
.navbar a:hover,
.navbar .active {
  color: #fff !important;
}
.navbar .getstarted {
  color: #fff !important;
  border: 1.5px solid #d4af37 !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.navbar .getstarted:hover {
  background: #d4af37 !important;
  color: #111 !important;
}

/* === SECTION COLORS & TEXT === */
#about, #portfolio, #testimonials, #contact {
  background-color: #181818 !important; /* softer dark */
  color: #f1f1f1 !important;
}
#about h2, #portfolio h2, #testimonials h2, #contact h2 {
  color: #d4af37 !important;
}
#about p, #portfolio p, #testimonials p {
  color: #ccc !important;
}
#about img, #portfolio img {
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* === FOOTER === */
footer {
  background: #0d0d0d !important;
  color: #aaa !important;
}
footer a {
  color: #e5c96d !important;
  text-decoration: none;
}
footer a:hover {
  color: #fff !important;
  text-decoration: underline;
}

/* === CONTACT SECTION FIX === */
#contact a,
#contact a:visited {
  color: #ffdfa0 !important;        /* bright warm gold visible on dark bg */
  text-decoration: none !important;
  font-weight: 500;
}
#contact a:hover {
  color: #ffffff !important;        /* white on hover */
  text-decoration: underline !important;
}

/* === Text highlight contrast === */
::selection {
  background: #d4af37;
  color: #111;
}
/* === FINAL FIX: Contact links visibility and autofill highlight === */
#contact a,
#contact a:visited {
  color: #f8d57e !important;       /* soft bright gold visible clearly */
  background: transparent !important;
  text-decoration: none !important;
  font-weight: 500;
}

#contact a:hover {
  color: #ffffff !important;        /* white on hover */
  text-decoration: underline !important;
}

/* Remove autofill yellow from Chrome (for clickable phones/emails) */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #111 inset !important;
  -webkit-text-fill-color: #f8d57e !important;
}

/* Remove yellow selection highlight */
#contact ::selection {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #f8d57e !important;
}
/* === Logo & Title refinement === */
.site-logo {
  height: 90px !important; /* increase for stronger presence */
  width: auto !important;
  margin-right: 12px;
  border-radius: 8px;
  object-fit: contain;
  filter: brightness(1.15) contrast(1.1);
  transition: transform 0.3s ease, filter 0.3s ease;
}
.site-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.3) contrast(1.15);
}

/* remove the gold background behind the name */
.header .sitename {
  background: none !important;
  color: #f6f6f6 !important;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* on scroll, turn slightly golden */
.header.scrolled .sitename {
  color: #d4af37 !important;
}
/* === Logo and Title Final Fix === */
.site-logo {
  height: 70px !important;    /* bigger logo */
  width: auto !important;
  margin-right: 10px;
  border-radius: 6px;
  object-fit: contain;
  filter: brightness(1.15) contrast(1.1);
}

/* make the text black instead of white */
.header .sitename {
  color: #000 !important;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
/* === FINAL FIX — Daimond Designs Header Glass Effect === */
.header .logo h1,
header .sitename,
.header .logo .sitename {
  background: transparent !important;
text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);

  backdrop-filter: blur(10px) !important;           /* glassy blend */
  -webkit-backdrop-filter: blur(10px) !important;
  color: #ffffff !important;                        /* white text */
  border: none !important;
  display: inline-block !important;
  padding: 6px 18px !important;
  border-radius: 6px !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin: 0 !important;
  line-height: 1.3 !important;
  box-shadow: none !important;
}
/* === FINAL FIX — Remove Yellow Block & Add Glass Effect === */
.header .sitename {
  background: rgba(0, 0, 0, 0.25) !important;  /* transparent dark */
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  color: #fff !important;                      /* white text */
  border: none !important;
  padding: 6px 18px !important;
  border-radius: 6px !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  line-height: 1.3 !important;
  box-shadow: none !important;
}
/* === FINAL HEADER FIX — GLASS BLEND === */
header.header,
.header {
  background: transparent !important;
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: none !important;
  border: none !important;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
  background: rgba(17, 17, 17, 0.9) !important;
  backdrop-filter: blur(10px) !important;
}

.header .sitename {
  background: rgba(197,165,78,0.08) !important; /* subtle gold tint */
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  color: #fff !important;
  border: none !important;
  padding: 6px 18px !important;
  border-radius: 6px !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  line-height: 1.3 !important;
  box-shadow: none !important;
}

.site-logo {
  height: 90px !important;
  width: auto !important;
  margin-right: 12px !important;
  border-radius: 8px !important;
  object-fit: cover !important;
  filter: brightness(1.15) contrast(1.15) !important;
}
/* === FINAL FIX: Remove Yellow Block Behind Logo Text === */
.header .sitename,
.header .logo h1,
.header .logo .sitename {
  background: transparent !important;  /* remove gold bg */
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  color: #fff !important;              /* pure white text */
  box-shadow: none !important;
}
/* === REMOVE YELLOW BACKGROUND BEHIND LOGO LINK === */
header .logo,
.header .logo {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.logo.d-flex.align-items-center {
  gap: 6px !important; /* reduce space */
}

/* === Final Logo & Text Alignment Fix === */
header .logo.d-flex.align-items-center {
  gap: 6px !important;          /* reduce space between logo and text */
  align-items: center !important;
}

header .logo img.site-logo {
  height: 100px !important;     /* increase logo size */
  width: auto !important;
  object-fit: contain !important;
}
/* === FINAL OVERRIDE — Logo Size & Spacing === */
header .logo img.site-logo,
.header .logo img.site-logo {
  height: 110px !important;   /* increase as you like */
  width: auto !important;
  object-fit: contain !important;
}

header .logo.d-flex.align-items-center {
  gap: 6px !important;        /* tighten space */
  align-items: center !important;
}
/* === Hard override: allow full logo height === */
header .logo,
.header .logo,
header .logo.d-flex.align-items-center {
  height: auto !important;
  min-height: 110px !important;
  align-items: center !important;
}

header .logo img.site-logo,
.header .logo img.site-logo {
  height: 110px !important;
  width: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  display: block !important;
}
/* === Header logo alignment with hero === */
header .logo {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  padding-top: 10px !important; /* tweak this up/down to align visually */
}

header .logo img.site-logo {
  height: 110px !important;
  width: auto !important;
}
header .logo img.site-logo {
  height: 115px !important;
  margin-top: 8px !important;  /* adjust up/down until it aligns visually */
}
header.header {
  padding: 15px 0 !important;
}
header .logo img.site-logo {
  filter: drop-shadow(0 0 6px rgba(197,165,78,0.4));
}
.masonry-grid {
  column-count: 2;
  column-gap: 20px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
}

.masonry-item img {
  width: 100%;
  border-radius: 8px;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
  
/* Responsive */
@media (min-width: 768px) {
  .masonry-grid {
    column-count: 3;
  }
}

@media (min-width: 1200px) {
  .masonry-grid {
    column-count: 4;
  }
}
/* Craftsmanship Masonry Grid */
.masonry-grid {
  column-count: 2;
  column-gap: 20px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
}

.masonry-item img {
  width: 100%;
  border-radius: 8px;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive */
@media (min-width: 768px) {
  .masonry-grid {
    column-count: 3;
  }
}

@media (min-width: 1200px) {
  .masonry-grid {
    column-count: 4;
  }
}
.about-img img {
  max-height: 350px;
  object-fit: cover;
}
.about-img img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.35);
}
.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-wrapper h2 {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 20px;
}

.about-wrapper p,
.about-wrapper ul {
  color: #ddd;
}
.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-img img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.about-content {
  flex: 1 1 45%;
  min-width: 300px;
}

.about-img {
  flex: 1 1 45%;
  min-width: 300px;
}
.services-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.services-content {
  flex: 1 1 45%;
  min-width: 300px;
}

.services-img {
  flex: 1 1 45%;
  min-width: 300px;
}

.services-img img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 380px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.instagram-link {
  font-size: 18px;
  color: #ddd;
  text-decoration: none;
  transition: 0.3s ease;
}

.instagram-link i {
  font-size: 22px;
  margin-right: 8px;
  vertical-align: middle;
}

.instagram-link:hover {
  color: var(--accent);
}
.instagram-link {
  color: #ddd;
  text-decoration: none;
  font-size: 16px;
}

.instagram-link i {
  font-size: 20px;
  margin-right: 6px;
}

.instagram-link:hover {
  color: var(--accent);
}
footer a {
  background: none !important;
  padding: 0 !important;
}

footer a:focus,
footer a:active {
  background: none !important;
  outline: none !important;
}
/* CLEAN HEADER – DESKTOP */
#header {
  background: transparent;
  transition: 0.3s ease;
  padding: 20px 0;
}

#header.header-scrolled {
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  padding: 10px 0;
}

/* Desktop: align menu right */
@media (min-width: 992px) {
  .navbar {
    margin-left: auto;
  }
}
#navbar ul {
  list-style: none;
}
/* Force desktop navbar horizontal */
@media (min-width: 992px) {
  .navbar ul {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px;
    align-items: center;
  }

  .navbar li {
    display: inline-block !important;
  }

  .navbar {
    display: flex !important;
    justify-content: flex-end !important;
    margin-left: auto !important;
  }
}
/* Mobile navbar cleanup */
@media (max-width: 991px) {
  .navbar-mobile {
    background: rgba(0,0,0,0.85) !important;
    backdrop-filter: blur(6px);
  }

  .navbar-mobile ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    padding: 20px !important;
    align-items: flex-start;
  }

  .navbar-mobile a {
    font-size: 18px !important;
    color: #fff !important;
    padding: 10px 0 !important;
  }
}
/* Force desktop navbar to NEVER show mobile menu toggle */
@media (min-width: 992px) {
  .mobile-nav-toggle {
    display: none !important;
  }

  .navbar {
    display: flex !important;
  }

  .navbar ul {
    display: flex !important;
  }

  .navbar-mobile {
    display: none !important;
  }
}
/* Better mobile navbar */
@media (max-width: 991px) {

  /* Navbar background when opened */
  .navbar-mobile {
    background: rgba(0, 0, 0, 0.85) !important;
    padding: 20px;
    border-radius: 0 0 12px 12px;
    backdrop-filter: blur(8px);
  }

  /* Align all links neatly */
  .navbar-mobile ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;   /* THIS centers the menu */
    gap: 16px !important;
    padding: 0 !important;
  }

  /* Style the links */
  .navbar-mobile a {
    color: #fff !important;
    font-size: 20px !important;
    font-weight: 500 !important;
  }

  /* Clean hamburger alignment */
  .mobile-nav-toggle {
    color: #fff !important;
    font-size: 28px !important;
    right: 20px !important;
    top: 20px !important;
  }
}
@media (max-width: 991px) {
  #navbar ul {
    display: none !important;
  }

  #navbar.navbar-mobile ul {
    display: block !important;
  }
}
