/*
Theme Name: MNT Creation
Theme URI: https://mntcreation.com
Author: MNT Creation
Author URI: https://mntcreation.com
Description: A premium, dark & gold single-page WordPress theme for MNT Creation — a creative agency offering graphic design, video production, web development and music composition. Built with Bootstrap 5.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mnt-creation
Tags: dark, black, custom-logo, custom-menu, one-column, threaded-comments, translation-ready
*/

/* ============================================================
   MNT CREATION — DESIGN TOKENS
   Palette:  --black #0B0B0B (page bg) / --charcoal #121212 (section bg)
             --card #161616 (card bg) / --gold #D4AF37 / --gold-soft #C5A059
             --white #FFFFFF / --grey #A7A7A7 (muted text) / --hair rgba(212,175,55,.18)
   Display type: Montserrat (700/800/900, wide tracking, uppercase for eyebrows)
   Body type:    Poppins (300–500)
   Signature:    Gold "viewfinder" corner brackets on cards + rotating aperture
                 ring in the hero — a nod to the agency's photo/video craft.
   ============================================================ */
:root{
  --black:#0B0B0B;
  --charcoal:#121212;
  --card:#161616;
  --gold:#D4AF37;
  --gold-soft:#C5A059;
  --white:#FFFFFF;
  --grey:#A7A7A7;
  --hair: rgba(212,175,55,.18);
  --hair-strong: rgba(212,175,55,.35);
}

*{box-sizing:border-box;}

html{scroll-behavior:smooth;}

body{
  background:var(--black);
  color:var(--white);
  font-family:'Poppins',sans-serif;
  font-weight:300;
  overflow-x:hidden;
}

h1,h2,h3,h4,.display-font{
  font-family:'Montserrat',sans-serif;
  font-weight:800;
  letter-spacing:.5px;
}

.eyebrow{
  font-family:'Montserrat',sans-serif;
  font-weight:700;
  font-size:.72rem;
  letter-spacing:4px;
  text-transform:uppercase;
  color:var(--gold);
}

p{color:var(--grey); font-weight:300; line-height:1.8;}

::selection{background:var(--gold); color:#0B0B0B;}

a{text-decoration:none;}

/* Custom scrollbar */
::-webkit-scrollbar{width:8px;}
::-webkit-scrollbar-track{background:var(--black);}
::-webkit-scrollbar-thumb{background:var(--gold-soft); border-radius:10px;}

/* ============================================================
   1. TOP ANNOUNCEMENT BANNER
   ============================================================ */
.announce-bar{
  background:linear-gradient(90deg, #0B0B0B 0%, #1a1710 50%, #0B0B0B 100%);
  border-bottom:1px solid var(--hair-strong);
  color:var(--gold-soft);
  font-family:'Poppins',sans-serif;
  font-size:.82rem;
  font-weight:400;
  letter-spacing:.5px;
  text-align:center;
  padding:9px 40px 9px 16px;
  position:relative;
  z-index:1100;
}
.announce-bar strong{color:var(--gold); font-weight:600;}
.announce-bar i.fa-hammer{margin-right:8px; color:var(--gold);}
.announce-close{
  position:absolute; right:14px; top:50%; transform:translateY(-50%);
  background:none; border:none; color:var(--grey); font-size:.85rem;
  cursor:pointer; transition:color .25s;
}
.announce-close:hover{color:var(--gold);}

/* ============================================================
   2. NAVBAR
   ============================================================ */
.navbar{
  padding:20px 0;
  transition:background .35s ease, padding .35s ease, box-shadow .35s ease, border-color .35s ease;
  border-bottom:1px solid transparent;
}
.navbar.scrolled{
  background:rgba(11,11,11,.92);
  backdrop-filter:blur(10px);
  padding:12px 0;
  border-bottom:1px solid var(--hair);
  box-shadow:0 8px 30px rgba(0,0,0,.4);
}
.navbar-brand{
  display:flex; align-items:center; gap:12px;
  font-family:'Montserrat',sans-serif;
  font-weight:800;
  font-size:1.35rem;
  letter-spacing:2px;
  color:var(--white) !important;
}
.navbar-brand img{
  max-height:42px;
  width:auto;
}
.brand-logo-placeholder{
  width:42px; height:42px;
  border:1.5px solid var(--gold);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--gold);
  font-size:.95rem;
  flex-shrink:0;
}
.navbar-brand span{color:var(--gold);}

.nav-link{
  font-family:'Poppins',sans-serif;
  font-weight:400;
  font-size:.9rem;
  letter-spacing:1px;
  color:var(--white) !important;
  position:relative;
  margin:0 14px;
  padding:6px 0 !important;
  opacity:.85;
  transition:opacity .25s, color .25s;
}
.nav-link::after{
  content:"";
  position:absolute; left:0; bottom:0;
  width:0; height:1px;
  background:var(--gold);
  transition:width .3s ease;
}
.nav-link:hover{opacity:1; color:var(--gold) !important;}
.nav-link:hover::after{width:100%;}

.btn-nav-cta{
  border:1px solid var(--gold);
  color:var(--gold);
  font-size:.82rem;
  letter-spacing:1.5px;
  font-weight:500;
  padding:8px 22px;
  border-radius:2px;
  transition:all .3s ease;
}
.btn-nav-cta:hover{
  background:var(--gold);
  color:#0B0B0B;
  box-shadow:0 0 20px rgba(212,175,55,.45);
}

.navbar-toggler{border:1px solid var(--hair-strong); padding:6px 10px;}
.navbar-toggler:focus{box-shadow:0 0 0 .2rem rgba(212,175,55,.25);}
.navbar-toggler-icon{
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212,175,55,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   3. HERO SECTION
   ============================================================ */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(212,175,55,.10) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(212,175,55,.06) 0%, transparent 45%),
    linear-gradient(180deg, #0B0B0B 0%, #121212 60%, #0B0B0B 100%);
  overflow:hidden;
  padding-top:70px;
}

.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events:none;
}

.aperture-ring{
  position:absolute;
  top:50%; left:50%;
  width:min(780px, 90vw);
  height:min(780px, 90vw);
  transform:translate(-50%,-50%);
  border:1px solid var(--hair);
  border-radius:50%;
  pointer-events:none;
}
.aperture-ring::before{
  content:"";
  position:absolute; inset:34px;
  border:1px solid var(--hair-strong);
  border-radius:50%;
}
.aperture-ring .tick{
  position:absolute;
  width:1px; height:14px;
  background:var(--gold-soft);
  left:50%; top:0;
  transform-origin:50% 390px;
  opacity:.6;
}
@media (max-width:768px){
  .aperture-ring .tick{transform-origin:50% 45vw;}
}

.hero-content{position:relative; z-index:2; padding:0 20px;}

.hero-eyebrow{
  font-family:'Montserrat',sans-serif;
  font-weight:600;
  font-size:.78rem;
  letter-spacing:5px;
  text-transform:uppercase;
  color:var(--gold-soft);
  margin-bottom:22px;
  display:inline-flex; align-items:center; gap:14px;
}
.hero-eyebrow .line{width:36px; height:1px; background:var(--gold-soft); display:inline-block;}

.hero h1{
  font-size:clamp(3rem, 9vw, 6.5rem);
  line-height:1;
  margin-bottom:18px;
  color:var(--white);
  text-transform:uppercase;
}
.hero h1 .accent{color:var(--gold);}

.hero .tagline{
  font-family:'Montserrat',sans-serif;
  font-weight:700;
  font-size:clamp(1rem, 2vw, 1.35rem);
  letter-spacing:4px;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:14px;
}
.hero .tagline .dot{color:var(--white); margin:0 8px; opacity:.5;}

.hero .subtext{
  max-width:560px;
  margin:0 auto 42px;
  font-size:1.05rem;
  color:var(--grey);
}

.btn-gold-outline{
  display:inline-flex; align-items:center; gap:12px;
  border:1px solid var(--gold);
  color:var(--gold);
  background:transparent;
  padding:15px 40px;
  font-family:'Montserrat',sans-serif;
  font-weight:600;
  font-size:.85rem;
  letter-spacing:2px;
  text-transform:uppercase;
  border-radius:2px;
  transition:all .35s ease;
  position:relative;
}
.btn-gold-outline:hover{
  color:#0B0B0B;
  background:var(--gold);
  box-shadow:0 0 35px rgba(212,175,55,.4), 0 0 0 1px var(--gold);
  transform:translateY(-2px);
}

.scroll-cue{
  position:absolute; bottom:34px; left:50%; transform:translateX(-50%);
  color:var(--gold-soft); font-size:1.1rem;
  animation:bounce 2.2s infinite;
  z-index:2;
}
@keyframes bounce{
  0%,100%{transform:translate(-50%,0);}
  50%{transform:translate(-50%,10px);}
}

/* ============================================================
   4. SECTION SHARED STYLES
   ============================================================ */
.section{padding:120px 0;}
.section-charcoal{background:var(--charcoal);}
.section-heading{margin-bottom:70px;}
.section-heading h2{
  font-size:clamp(2rem, 4vw, 2.9rem);
  color:var(--white);
  margin-top:14px;
  text-transform:uppercase;
}
.section-heading .divider{
  width:60px; height:2px;
  background:var(--gold);
  margin-top:18px;
}
.section-heading.text-center .divider{margin-left:auto; margin-right:auto;}

/* ============================================================
   5. SERVICES — signature "viewfinder corner" cards
   ============================================================ */
.service-card{
  position:relative;
  background:var(--card);
  border:1px solid var(--hair);
  padding:46px 32px;
  height:100%;
  transition:transform .4s ease, border-color .4s ease, box-shadow .4s ease;
  overflow:hidden;
}
.service-card::after{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(circle at 30% 0%, rgba(212,175,55,.06), transparent 60%);
  opacity:0; transition:opacity .4s ease;
}
.service-card:hover{
  transform:translateY(-8px);
  border-color:var(--hair-strong);
  box-shadow:0 20px 50px rgba(0,0,0,.5), 0 0 0 1px rgba(212,175,55,.15);
}
.service-card:hover::after{opacity:1;}

.service-card .corner{
  position:absolute; width:16px; height:16px;
  border-color:var(--gold); opacity:0; transition:opacity .4s ease, width .4s ease, height .4s ease;
}
.service-card:hover .corner{opacity:1; width:22px; height:22px;}
.corner.tl{top:10px; left:10px; border-top:2px solid; border-left:2px solid;}
.corner.tr{top:10px; right:10px; border-top:2px solid; border-right:2px solid;}
.corner.bl{bottom:10px; left:10px; border-bottom:2px solid; border-left:2px solid;}
.corner.br{bottom:10px; right:10px; border-bottom:2px solid; border-right:2px solid;}

.service-icon{
  width:64px; height:64px;
  border:1px solid var(--hair-strong);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; color:var(--gold);
  margin-bottom:28px;
  transition:background .35s ease, color .35s ease;
  position:relative; z-index:1;
}
.service-card:hover .service-icon{background:var(--gold); color:#0B0B0B;}

.service-card h3{
  font-size:1.15rem;
  color:var(--white);
  margin-bottom:14px;
  position:relative; z-index:1;
}
.service-card p{font-size:.92rem; margin-bottom:0; position:relative; z-index:1;}

/* ============================================================
   6. WHY CHOOSE US
   ============================================================ */
.pillar{
  text-align:center;
  padding:20px;
}
.pillar-icon{
  width:88px; height:88px;
  margin:0 auto 28px;
  border-radius:50%;
  border:1px solid var(--hair-strong);
  display:flex; align-items:center; justify-content:center;
  font-size:2rem;
  color:var(--gold);
  background:radial-gradient(circle, rgba(212,175,55,.08), transparent 70%);
  transition:box-shadow .4s ease, transform .4s ease;
}
.pillar:hover .pillar-icon{
  box-shadow:0 0 40px rgba(212,175,55,.3);
  transform:scale(1.06);
}
.pillar h3{color:var(--white); font-size:1.2rem; margin-bottom:12px;}
.pillar p{font-size:.92rem; max-width:320px; margin:0 auto;}

/* ============================================================
   7. CONTACT STRIP
   ============================================================ */
.contact-strip{
  background:linear-gradient(135deg, #121212 0%, #0B0B0B 100%);
  border-top:1px solid var(--hair);
  border-bottom:1px solid var(--hair);
  padding:90px 0;
  text-align:center;
}
.contact-strip h2{
  font-size:clamp(1.8rem, 4vw, 2.6rem);
  color:var(--white);
  text-transform:uppercase;
  margin-bottom:20px;
}
.contact-strip p{max-width:480px; margin:0 auto 34px;}

/* ============================================================
   8. FOOTER
   ============================================================ */
footer{
  background:var(--black);
  border-top:1px solid var(--hair);
  padding:60px 0 26px;
}
.footer-brand{
  font-family:'Montserrat',sans-serif;
  font-weight:800;
  font-size:1.3rem;
  letter-spacing:2px;
  color:var(--white);
}
.footer-brand span{color:var(--gold);}
footer p.small-desc{max-width:280px; font-size:.88rem;}

.footer-links h4, .footer-social h4{
  font-family:'Montserrat',sans-serif;
  font-size:.82rem;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--gold-soft);
  margin-bottom:20px;
}
.footer-links a{
  display:block;
  color:var(--grey);
  font-size:.9rem;
  margin-bottom:12px;
  transition:color .25s, padding-left .25s;
}
.footer-links a:hover{color:var(--gold); padding-left:6px;}

.social-icons{display:flex; gap:12px; flex-wrap:wrap;}
.social-icons a{
  width:40px; height:40px;
  border:1px solid var(--hair-strong);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--grey);
  transition:all .3s ease;
}
.social-icons a:hover{
  background:var(--gold);
  border-color:var(--gold);
  color:#0B0B0B;
  box-shadow:0 0 20px rgba(212,175,55,.4);
  transform:translateY(-3px);
}

.footer-bottom{
  border-top:1px solid var(--hair);
  margin-top:44px;
  padding-top:22px;
  font-size:.82rem;
  color:var(--grey);
}
.footer-bottom a{color:var(--gold-soft);}
.footer-bottom a:hover{color:var(--gold);}

/* ============================================================
   9. SCROLL REVEAL
   ============================================================ */
.reveal{opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease;}
.reveal.is-visible{opacity:1; transform:translateY(0);}

/* ============================================================
   10. WORDPRESS CORE / ACCESSIBILITY
   ============================================================ */
.screen-reader-text{
  position:absolute !important;
  width:1px; height:1px;
  overflow:hidden;
  clip:rect(1px,1px,1px,1px);
  white-space:nowrap;
}
.alignleft{float:left; margin:0 24px 12px 0;}
.alignright{float:right; margin:0 0 12px 24px;}
.aligncenter{display:block; margin:0 auto 12px;}

@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none; transition:none;}
  .scroll-cue{animation:none;}
  html{scroll-behavior:auto;}
}

@media (max-width:767.98px){
  .section{padding:80px 0;}
  .navbar-collapse{
    background:rgba(11,11,11,.98);
    margin-top:16px; padding:20px; border:1px solid var(--hair);
  }
  .nav-link{margin:8px 0;}
}
