/*
Theme Name: Luxury Watch Home
Theme URI: https://example.com/
Author: OpenAI
Author URI: https://openai.com/
Description: A luxury watch homepage theme with hero video, CTA, and brand logo grid.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: luxury-watch-home
*/

:root{
  --bg:#f3f3f3;
  --text:#111111;
  --muted:#666666;
  --card:#ffffff;
  --accent:#111111;
  --border:#e8e8e8;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}
a{text-decoration:none;color:inherit}
.site-header{
  position:sticky;
  top:0;
  z-index:99;
  background:#ffffff;
  border-bottom:1px solid var(--border);
}
.header-inner{
  max-width:1280px;
  margin:0 auto;
  padding:18px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.site-branding a{
  font-size:32px;
  font-weight:700;
  letter-spacing:.08em;
}
.site-nav ul{
  list-style:none;
  display:flex;
  gap:28px;
  margin:0;
  padding:0;
  align-items:center;
}
.site-nav a{
  color:#222;
  font-size:16px;
}
.hero{
  position:relative;
  min-height:88vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.hero-media{
  position:absolute;
  inset:0;
}
.hero-media video,
.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.48);
}
.hero-content{
  position:relative;
  z-index:2;
  max-width:980px;
  padding:40px 24px;
  text-align:center;
  color:#fff;
}
.hero-pill{
  display:inline-block;
  padding:8px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:#0a6f43;
  font-size:12px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:18px;
}
.hero h1{
  margin:0 auto 16px;
  font-size:clamp(42px, 6vw, 84px);
  line-height:1.02;
  font-weight:800;
  max-width:960px;
}
.hero p{
  margin:0 auto 28px;
  max-width:760px;
  font-size:clamp(16px, 2vw, 24px);
}
.hero-actions{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}
.btn{
  display:inline-block;
  min-width:200px;
  padding:16px 28px;
  border-radius:999px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  transition:transform .2s ease, opacity .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:#ffffff;
  color:#111111;
}
.btn-outline{
  background:transparent;
  color:#ffffff;
  border:2px solid rgba(255,255,255,.8);
}
.note{
  text-align:center;
  font-size:18px;
  font-weight:700;
  color:#333;
  padding:16px 20px 0;
}
.logo-section{
  max-width:1280px;
  margin:0 auto;
  padding:42px 24px 90px;
}
.logo-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:24px;
}
.logo-card{
  background:var(--card);
  border-radius:24px;
  min-height:170px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  box-shadow:0 8px 28px rgba(0,0,0,.04);
  border:1px solid rgba(0,0,0,.04);
}
.logo-card img{
  max-width:220px;
  max-height:84px;
  width:auto;
  height:auto;
  display:block;
  filter:grayscale(100%);
  opacity:.9;
  transition:transform .2s ease, opacity .2s ease, filter .2s ease;
}
.logo-card:hover img{
  transform:scale(1.05);
  filter:grayscale(0%);
  opacity:1;
}
.site-footer{
  border-top:1px solid var(--border);
  background:#ffffff;
}
.footer-inner{
  max-width:1280px;
  margin:0 auto;
  padding:20px 24px;
  text-align:center;
  color:var(--muted);
}
@media (max-width: 1024px){
  .logo-grid{grid-template-columns:repeat(3, minmax(0, 1fr))}
  .header-inner{flex-direction:column}
}
@media (max-width: 768px){
  .site-nav ul{gap:14px; flex-wrap:wrap; justify-content:center}
  .logo-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .logo-card{min-height:140px}
  .logo-card img{max-width:170px; max-height:62px}
}
@media (max-width: 480px){
  .logo-grid{grid-template-columns:1fr}
  .hero{min-height:78vh}
  .btn{min-width:unset; width:100%}
}
