/* =========================
   COLOR VARIABLES
========================= */

:root {
  --navy-blue: #0a1f44;
  --navy-blue-dark: #07162f;
  --light-gray: #f5f5f5;
  --text-dark: #111;
}


/* =========================
   BASE STYLES
========================= */

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  background: #ffffff;
}

h1, h2, h3 {
  margin-bottom: 0.5rem;
}

p {
  line-height: 1.6;
}


/* =========================
   LOGO
========================= */

.corner-logo {
  position:absolute;
  top:15px;
  left:15px;
  width:90px;
  cursor:pointer;
}

.logo {
  height:60px;
  cursor:pointer;
}


/* =========================
   HERO / HEADER
========================= */

.hero {
  background-color: var(--navy-blue);
  color: white;
  padding: 3rem 1rem;
  text-align: center;
}

.subtitle {
  font-weight:600;
  margin-top:0.5rem;
}

.location {
  font-size:0.9rem;
  opacity:0.85;
}


/* =========================
   TOP NAVIGATION
========================= */

.top-banner {
  background: var(--navy-blue);
  color:white;
  text-align:center;
  padding:20px;
}

.menu {
  background: var(--navy-blue-dark);
  padding:12px 0;
}

.menu ul {
  display:flex;
  justify-content:center;
  gap:50px;
  list-style:none;
  margin:0;
  padding:0;
}

.menu a {
  color:white;
  text-decoration:none;
  font-size:18px;
  font-weight:600;
}

.menu a:hover {
  color:silver;
}


/* =========================
   STATS
========================= */

.stat-cards {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(160px,1fr));
  gap:16px;
  max-width:900px;
  margin:30px auto;
  padding:0 1rem;
}

.card {
  background:white;
  border:2px solid var(--navy-blue);
  border-radius:10px;
  text-align:center;
  padding:20px;
}

.card span {
  display:block;
  font-size:0.85rem;
  color:#666;
}

.card strong {
  font-size:1.4rem;
  color:var(--navy-blue);
}


/* =========================
   PROFILE HEADER
========================= */

.profile-header {
  text-align:center;
  padding:20px;
}

.profile-pic {
  width:180px;
  height:220px;
  object-fit:cover;
  border-radius:12px;
  display:block;
  margin:15px auto;
  box-shadow:0px 3px 10px rgba(0,0,0,0.2);
}

.return-link {
  font-size:14px;
  color:gray;
}


/* =========================
   SECTIONS
========================= */

.section {
  padding:2.5rem 1.5rem;
  max-width:900px;
  margin:auto;
}

.section.gray {
  background:#f9f9f9;
}


/* =========================
   VIDEO
========================= */

.video-container {
  position:relative;
  padding-bottom:56.25%;
  height:0;
}

.video-container iframe {
  position:absolute;
  width:100%;
  height:100%;
  border-radius:8px;
}


/* =========================
   SOCIAL BUTTONS
========================= */

.social-links {
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:center;
  margin-top:20px;
}

.social-links a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-width:200px;
  padding:14px 20px;
  background-color:var(--navy-blue);
  color:white;
  border-radius:8px;
  font-weight:600;
  text-decoration:none;
  transition:0.2s;
}

.social-links a:hover {
  background-color:var(--navy-blue-dark);
  transform:translateY(-2px);
  box-shadow:0 6px 15px rgba(0,0,0,0.25);
}


/* =========================
   ATHLETE PACKAGES
========================= */

.packages {
  text-align:center;
  padding:60px 20px;
  background:#0b1f3a;
  color:white;
}

.dogtag-container {
  display:flex;
  justify-content:center;
  gap:50px;
  flex-wrap:wrap;
  margin-top:40px;
}

.dogtag {

  width:260px;
  height:420px;

  background:linear-gradient(
  145deg,
  #e6e6e6,
  #cfcfcf
  );

  border-radius:40px;

  box-shadow:0 10px 25px rgba(0,0,0,0.4);

  padding:30px;

  color:#0b1f3a;

  font-weight:600;

  position:relative;
}

.dogtag:before {

  content:'';

  width:20px;
  height:20px;

  background:#0b1f3a;

  border-radius:50%;

  position:absolute;

  top:15px;
  left:50%;

  transform:translateX(-50%);
}

.dogtag h3 {
  margin-top:40px;
  font-size:22px;
}

.dogtag ul {
  text-align:left;
  padding-left:20px;
}

.price {
  font-size:32px;
  margin-top:20px;
  font-weight:bold;
}


/* =========================
   FOOTER
========================= */

footer {
  text-align:center;
  padding:1.5rem;
  font-size:0.8rem;
  background-color:var(--navy-blue);
  color:white;
}

.footer-qr {
  text-align:center;
  margin-top:15px;
}

.footer-qr img {
  display:block;
  margin:0 auto 8px;
  max-width:120px;
}

.footer-qr p {
  font-size:0.8rem;
  color:white;
}


/* =========================
   MOBILE
========================= */

@media (max-width:768px) {

  .menu ul {
    gap:20px;
    flex-wrap:wrap;
  }

  .social-links a {
    width:100%;
  }

  .dogtag-container {
    gap:25px;
  }
   /* =========================
   DROPDOWN MENU
========================= */

.menu ul {
display:flex;
justify-content:center;
gap:40px;
list-style:none;
margin:0;
padding:0;
}

.menu li {
position:relative;
}

.menu a {
color:white;
text-decoration:none;
font-size:18px;
font-weight:bold;
padding:10px;
display:block;
}

.menu {
background:#111;
}

/* Dropdown hidden by default */

.dropdown-content {
display:none;
position:absolute;
background:#222;
min-width:200px;
top:40px;
left:0;
border-radius:6px;
overflow:hidden;
}

/* Dropdown links */

.dropdown-content a {
padding:12px;
font-size:16px;
}

/* Show dropdown on hover */

.dropdown:hover .dropdown-content {
display:block;
}

.dropdown-content a:hover {
background:silver;
color:black;
}

}
