* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0d0d0d;
  color: #fff;
}

/* HEADER GLASS */
.header {
  position: sticky;
  top: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  z-index: 1000;
}

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

/* LOGO */
.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-section img {
  height: 45px;
}

.logo-section h1 {
  font-family: 'Playfair Display', serif;
  color: gold;
}

/* NAV */
nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: white;
}

nav a:hover {
  color: gold;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: gold;
  cursor: pointer;
}

/* HERO */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url('images/hero.jpeg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* SECTION */
section {
  padding: 70px 20px;
  text-align: center;
}

h2 {
  color: gold;
  margin-bottom: 20px;
}

/* ABOUT */
.about-flex {
  display: flex;
  gap: 20px;
  align-items: center;
}

.about-flex img {
  width: 50%;
  border-radius: 8px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
}

/* CARD */
.card {
  background: #1a1a1a;
  padding: 15px;
  border-radius: 8px;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

/* PORTFOLIO */
.portfolio-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.portfolio-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.7);
  color: gold;
  padding: 10px;
}

/* CONTACT */
.contact-center {
  max-width: 600px;
  margin: auto;
}

.info-box {
  background: #1a1a1a;
  padding: 20px;
  margin: 10px 0;
  border-left: 4px solid gold;
}

footer {
  text-align: center;
  padding: 20px;
  background: black;
}

footer p {
  margin: 0 auto;
  text-align: center;
}

/* MOBILE */
@media(max-width:768px){

  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #111;
    margin-top: 10px;
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 10px;
    border-top: 1px solid #333;
  }

  .about-flex {
    flex-direction: column;
  }

  .about-flex img {
    width: 100%;
  }
}

/* PREMIUM LOGO TEXT STYLE */

.brand {
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
  /*position: relative;
  top: -4px; */  /* very fine adjustment */
}

/* GOLD TEXT */
.gold {
  background: linear-gradient(180deg, #ffd700, #b8860b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 28px;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6),
               0 0 16px rgba(255, 215, 0, 0.4);
}

/* GREEN TEXT */
.green {
  background: linear-gradient(180deg, #32cd32, #0b6623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 28px;
  font-weight: 600;
  text-shadow: 0 0 6px rgba(50, 205, 50, 0.6),
               0 0 12px rgba(50, 205, 50, 0.4);
}

/* SUBTEXT */
.sub {
  display: block;
  width: 100%;
  text-align: left;

  font-size: 10px;
  /* letter-spacing: 6px; */   /* wider spacing like image */
  color: #d4af37;

  margin-top: 6px;       /* proper gap from SpaceMint */

  position: relative;
  left: 18px;             /* subtle alignment tweak */

  font-weight: 500;
}

.phone {
  margin: 0;
  line-height: 1.6;
  text-align: center;

  font-family: "Roboto Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 14px;       /* slightly tuned to match Poppins size */
  letter-spacing: 0.5px; /* makes it look less mechanical */
}

.contact-title {
  text-align: center;
  line-height: 1.4;
}

.brand-name {
  display: block;
  margin-top: 4px;
  font-family: 'Playfair Display', serif;
  color: gold;
  font-size: 22px;
}
