/* Root variables */
:root {
--primary-color: #e82e6f;
--text-color: #fff;
--background-color: #121212;
--dark-shadow: #0a0a0a;
--light-shadow: #242424;
--padding-top-desktop: 1.5rem;
--padding-right-desktop: 2rem;
--padding-bottom-desktop: 1.5rem;
--padding-left-desktop: 2rem;
}

/* Navigation Bar */
nav {
  background-color: rgba(255, 255, 255, 0); /* slight white overlay */
  font-family: "Old Standard TT", serif;
  font-weight: 700;
  font-style: normal;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* subtle separation line */
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05); /* optional: a baby shadow for depth */
}

.nav-list {
  font-family: "Old Standard TT", serif;
  font-weight: 700;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.nav-list li {
  margin: 0.5rem;
}

.nav-list a {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
}

.nav-list a:hover {
  text-decoration: underline;
  color: #fc3564;
}

/* Base styles */
body {
margin: 0;
padding: 0;
font-family: sans-serif;
color: var(--text-color);
line-height: 1.6;
min-height: 100vh;
background-color: var(--background-color);
}

/* Responsive fallback for mobile background behavior */
@media (max-width: 768px) {
body {
background-attachment: scroll;
}
}

/* Main content */
main {
width: 100%;
max-width: 1800px;
margin: 0 auto;
padding: 1rem;
box-sizing: border-box;
}

p {
font-size: 1.1rem;
margin-bottom: 1rem;
color: var(--text-color);
text-align: left;
}

@media (min-width: 1024px) {
p {
padding-left: 500px;
padding-right: 500px;
}
}

a {
color: var(--primary-color);
}

/* Content Container */
.content-container {
position: relative;
z-index: 1;
text-align: center;
padding: 20px;
min-height: 100vh;
overflow: auto;
}

/* Buttons */
.chrome-button,
.aqua-button {
position: relative;
display: inline-block;
padding: 12px 32px;
margin: 12px;
font-size: 15px;
text-decoration: none;
border-radius: 50px;
backdrop-filter: blur(2px);
user-select: none;
cursor: pointer;
overflow: hidden;
}

.chrome-button {
color: #e0e0e0;
background: linear-gradient(to bottom,
rgba(255, 255, 255, 0.22) 0%,
rgba(200, 220, 255, 0.17) 40%,
rgba(120, 160, 220, 0.15) 100%);
border: 1px solid rgba(180, 200, 230, 0.25);
box-shadow:
inset 0 1px 0 rgba(255, 255, 255, 0.7),
inset 0 -3px 8px rgba(0, 0, 0, 0.25),
0 8px 15px rgba(0, 0, 0, 0.4);
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.6);
}

.chrome-button::before,
.aqua-button::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 50%;
border-radius: 50px;
pointer-events: none;
}

.chrome-button::before {
background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1) 80%);
}

.chrome-button:hover {
background: linear-gradient(to top,
rgba(220, 240, 255, 0.25) 0%,
rgba(160, 200, 255, 0.2) 100%);
box-shadow:
inset 0 2px 6px rgba(0, 0, 0, 0.3),
0 4px 10px rgba(0, 0, 0, 0.35);
transform: translateY(2px);
}

.aqua-button {
color: #121212;
background: linear-gradient(to bottom,
rgba(194, 233, 255, 0.7) 0%,
rgba(120, 212, 255, 0.65) 40%,
rgba(60, 181, 255, 0.6) 100%);
border: 1px solid rgba(74, 169, 233, 0.7);
box-shadow:
inset 0 1px 0 rgba(255, 255, 255, 0.9),
inset 0 -3px 8px rgba(0, 0, 0, 0.15),
0 8px 15px rgba(0, 80, 200, 0.3);
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

.aqua-button::before {
background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.2) 80%);
}

.aqua-button:hover {
background: linear-gradient(to top, rgba(160, 224, 255, 0.7) 0%, rgba(80, 200, 255, 0.65) 100%);
box-shadow:
inset 0 2px 6px rgba(0, 0, 0, 0.2),
0 4px 10px rgba(0, 80, 200, 0.25);
transform: translateY(2px);
}


.coral-button {
  position: relative;
  display: inline-block;
  padding: 12px 32px;
  margin: 24px auto 0 auto;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border-radius: 50px;
  backdrop-filter: blur(2px);
  user-select: none;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(252, 53, 100, 0.7);
  background: linear-gradient(
    to bottom,
    rgba(252, 53, 100, 0.7) 0%,
    rgba(252, 53, 100, 0.65) 40%,
    rgba(252, 53, 100, 0.6) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 5px rgba(0, 0, 0, 0.15),
    0 8px 15px rgba(252, 53, 100, 0.3);
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.0);
}

.coral-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  border-radius: 50px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.2) 80%
  );
}

.coral-button:hover {
  background: linear-gradient(
    to top,
    rgba(252, 53, 100, 0.7) 0%,
    rgba(252, 53, 100, 0.65) 100%
  );
  box-shadow:
    inset 0 2px 6px rgba(0, 0, 0, 0.2),
    0 4px 10px rgba(252, 53, 100, 0.25);
  transform: translateY(2px);
}



/* Blog post layout for large screens */
@media (min-width: 768px) {
.blog-posts {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
}

.blog-card {
width: 300px;
}

nav {
padding: var(--padding-top-desktop) var(--padding-right-desktop) var(--padding-bottom-desktop) var(--padding-left-desktop);
}

.nav-list li {
margin: 0 10px;
}

.nav-list a {
font-size: 24px;
}
}

/* Profile photo styling */
.profile-container {
display: flex;
justify-content: center;
align-items: center;
padding: 0px;
}

.profile-photo {
width: 100%;
max-width: 450px;
aspect-ratio: 1 / 1;
border-radius: 0%;
object-fit: cover;
display: block;
margin: 0 auto;
}

@media (max-width: 480px) {
.profile-photo {
max-width: 350px;
}
}

.footer-logo {
width: 150px;
display: block;
margin: 10px auto;
opacity: 1;
}








