/* Uniquely Yours by Paige — Preview Mockup B2
   Aesthetic: playful / joyful, warm & expressive
   Fonts: Quicksand (headings), Inter (body)
*/

/* Uniquely Yours by Paige — Preview Mockup B3
   Brighter, joyful color tuning
*/

:root{
  --ink:#1f2430;
  --muted:#5b6477;

  --bg:#fff3e8;
  --card:#ffffff;
  --line:#f0dcc9;

  /* Brighter rainbow accents */
  --coral:#ff3f6c;
  --sun:#ffc233;
  --lime:#4ed18a;
  --sky:#3d9cff;
  --violet:#9b5cff;

  --shadow: 0 16px 44px rgba(31,36,48,.14);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html, height:100%; }
body{
  margin:0;
  font-family:"Inter", Arial, Helvetica, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(1100px 600px at 18% 0%, rgba(255,63,108,.20), rgba(255,243,232,0)),
    radial-gradient(900px 520px at 88% 10%, rgba(61,156,255,.18), rgba(255,243,232,0)),
    radial-gradient(900px 520px at 70% 100%, rgba(78,209,138,.16), rgba(255,243,232,0)),
    var(--bg);
}



*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:"Inter", Arial, Helvetica, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(1100px 600px at 18% 0%, rgba(255,90,122,.16), rgba(255,246,238,0)),
    radial-gradient(900px 520px at 88% 10%, rgba(78,168,255,.14), rgba(255,246,238,0)),
    radial-gradient(900px 520px at 70% 100%, rgba(96,211,148,.10), rgba(255,246,238,0)),
    var(--bg);
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:10;
  backdrop-filter: blur(8px);
  background: rgba(255,246,238,.86);
  border-bottom:1px solid var(--line);
}

.brand{
  max-width:1100px;
  margin:0 auto;
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.brand-left{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-mark{
  width:48px;
  height:auto;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.10));
}

.brand-name{
  font-family:"Quicksand","Inter",Arial,sans-serif;
  font-weight:700;
  font-size:17px;
  line-height:1.1;
}
.brand-name .by{
  font-weight:600;
  color:var(--muted);
}
.brand-tagline{
  margin-top:3px;
  font-size:12.5px;
  color:var(--muted);
}

.nav a{
  text-decoration:none;
  color:var(--ink);
  font-weight:600;
  font-size:14px;
  margin-left:14px;
  padding:8px 10px;
  border-radius:12px;
}
.nav a:hover{
  background: rgba(255,255,255,.55);
}
.nav .nav-cta{
  border:1px solid rgba(239,227,214,.95);
  background: rgba(255,255,255,.55);
}

/* Layout */
.main{
  max-width:1100px;
  margin:0 auto;
  padding:18px 18px 70px;
}

h1,h2,h3{ font-family:"Quicksand","Inter",Arial,sans-serif; }

.hero{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  padding:26px 0 8px;
}

.hero-kicker{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:8px;
}

.hero-mark{
  width:84px;
  height:auto;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,.12));
}

.kicker-line{
  font-size:12px;
  font-weight:800;
  letter-spacing:.10em;
  text-transform:uppercase;
  color: rgba(31,36,48,.55);
}
.kicker-sub{
  font-size:13px;
  color: var(--muted);
  margin-top:2px;
}

.hero h1{
  font-size:42px;
  line-height:1.05;
  margin:10px 0 10px;
}

.subhead{
  margin:0 0 14px;
  font-size:17.5px;
  color:var(--muted);
  line-height:1.45;
}

.hero p{
  margin:10px 0;
  line-height:1.7;
  font-size:16px;
}

.hero-cta-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}

.btn{
  display:inline-block;
  padding:11px 16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
  font-size:14px;
  border:1px solid var(--line);
}
.btn.primary{
  background: linear-gradient(135deg, var(--coral), var(--violet));
  color:#fff;
  border:none;
  box-shadow: 0 14px 30px rgba(255,90,122,.22);
}
.btn.ghost{
  background: rgba(255,255,255,.60);
  color:var(--ink);
}

/* Hero media */
.hero-media{
  background: linear-gradient(180deg, rgba(255,183,3,.12), rgba(78,168,255,.10));
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:14px;
  box-shadow: var(--shadow);
}

.media-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
}
.media-card{
  background: #faf7f3;          /* soft, warm mat */
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  padding: 16px;                /* creates the mat effect */
}
.media-card img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  display: block;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.10);

}

@media (min-width: 900px) {
  .media-card img {
    max-height: 480px;
  }
}


.media-note{
  margin-top:10px;
  font-size:12px;
  color:var(--muted);
}

/* Sections */
.section{
  padding:30px 0 10px;
  border-top:1px solid rgba(239,227,214,.90);
  margin-top:18px;
}
.section-header h2{
  margin:0;
  font-size:24px;
}
.section-sub{
  margin:6px 0 0;
  color:var(--muted);
  line-height:1.45;
  font-size:14.5px;
}

/* Cards */
.cards{
  margin-top:14px;
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
.card{
  display:block;
  color:inherit;
  text-decoration:none;
  background:var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  transition: transform .12s ease, box-shadow .12s ease;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(31,36,48,.14);
}
.card-top{
  height:140px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.accent-a{ background: radial-gradient(circle at 30% 30%, rgba(255,90,122,.26), rgba(166,108,255,.14)); }
.accent-b{ background: radial-gradient(circle at 30% 30%, rgba(78,168,255,.24), rgba(96,211,148,.14)); }
.accent-c{ background: radial-gradient(circle at 30% 30%, rgba(255,183,3,.26), rgba(255,90,122,.12)); }

.card-body{
  padding:14px 14px 16px;
}
.card-body h3{
  margin:0 0 6px;
  font-size:17px;
}
.card-body p{
  margin:0;
  color:var(--muted);
  line-height:1.5;
  font-size:14.5px;
}

/* Two-column + gallery */
.two-col{
  margin-top:14px;
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}
.gallery{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}

/* Image placeholders */
.img{
  min-height:210px;
  border:1px dashed rgba(91,100,119,.35);
  border-radius:16px;
  background:
    radial-gradient(140px 120px at 20% 20%, rgba(255,90,122,.18), rgba(255,255,255,0)),
    radial-gradient(160px 120px at 80% 10%, rgba(78,168,255,.16), rgba(255,255,255,0)),
    radial-gradient(160px 120px at 40% 90%, rgba(96,211,148,.12), rgba(255,255,255,0)),
    repeating-linear-gradient(
      45deg,
      rgba(31,36,48,.03),
      rgba(31,36,48,.03) 12px,
      rgba(31,36,48,.01) 12px,
      rgba(31,36,48,.01) 24px
    );
}
.ph{ position:relative; }
.ph::after{
  content: attr(data-label);
  position:absolute;
  inset:auto 12px 12px 12px;
  font-size:12px;
  color:rgba(31,36,48,.55);
  background: rgba(255,255,255,.80);
  padding:6px 8px;
  border-radius:12px;
  border:1px solid rgba(239,227,214,.95);
}

.about-card, .contact-card{
  margin-top:14px;
  padding:16px;
  border-radius: var(--radius);
  background: var(--card);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}

.soft{ color:var(--muted); }

/* Footer */
.footer{
  border-top:1px solid var(--line);
  background:#fff;
}
.footer-inner{
  max-width:1100px;
  margin:0 auto;
  padding:16px 18px 22px;
}
.footer-top{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.footer-mark{
  width:46px;
  height:auto;
  opacity:.95;
}
.fineprint{
  font-size:12px;
  color:var(--muted);
}

.rainbow-line{
  height:7px;
  border-radius:999px;
  background: linear-gradient(90deg, var(--coral), var(--sun), var(--lime), var(--sky), var(--violet));
}

/* Responsive */
@media (min-width: 900px){
  .hero{
    grid-template-columns: 1.1fr .9fr;
    align-items:start;
    gap:22px;
    padding-top:30px;
  }
  .cards{ grid-template-columns: repeat(3, 1fr); }
  .two-col{ grid-template-columns: 1.2fr .8fr; }
  .media-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  .nav{ display:none; } /* keep clean on mobile */
  .hero h1{ font-size:36px; }
  .hero-mark{ width:76px; }
}
/* Image expand overlay */
#image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#image-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  background: #fff;
}

.expand-img {
  cursor: zoom-in;
}
/* About Paige layout */
.about-paige .about-content {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.paige-photo {
  width: 160px;
  max-width: 40%;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Mobile-friendly */
@media (max-width: 600px) {
  .about-paige .about-content {
    flex-direction: column;
    text-align: center;
  }

  .paige-photo {
    max-width: 180px;
  }
}
.gallery{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(120px,1fr));
  gap:14px;
  padding:14px;
  border-radius:16px;
  background: linear-gradient(
    135deg,
    rgba(255,0,150,.08),
    rgba(255,165,0,.08),
    rgba(255,255,0,.08),
    rgba(0,200,150,.08),
    rgba(0,120,255,.08),
    rgba(160,100,255,.08)
  );
}

.gallery img:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 36px rgba(0,0,0,.2);
}

.lightbox{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,.85);
  align-items:center;
  justify-content:center;
  z-index:999;
}

.lightbox img{
  max-width:90%;
  max-height:90%;
  border-radius:12px;
  box-shadow:0 30px 80px rgba(0,0,0,.5);
}



/* Phone case gallery (Uniquely Yours) */
.phone-gallery{
  margin-top: 10px;
}

.phone-gallery .section-sub{
  margin: 0 0 10px 0;
}

.phone-grid{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(110px,1fr));
  gap:14px;
  padding:14px;
  border-radius:16px;
  background: linear-gradient(
    135deg,
    rgba(255,0,150,.08),
    rgba(255,165,0,.08),
    rgba(255,255,0,.08),
    rgba(0,200,150,.08),
    rgba(0,120,255,.08),
    rgba(160,100,255,.08)
  );
  border: 1px solid rgba(239,227,214,.90);
}

.phone-thumb{
  width:100%;
  height:150px;
  object-fit: contain;
  background: rgba(255,255,255,.85);
  border-radius:12px;
  cursor:pointer;
  box-shadow:0 6px 18px rgba(0,0,0,.14);
  transition:transform .15s ease, box-shadow .15s ease;
  padding:8px;
}

.phone-thumb:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 36px rgba(0,0,0,.2);
}
