/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Color Palette */
:root {
    --velvet: #3b0f1f;          /* deep crushed velvet maroon */
    --cherry: #5a1a33;          /* purplish cherry */
    --cherry-light: #7a2a4a;    /* lighter cherry accent */
    --pastel-yellow: #f7e7a8;   /* soft highlight */
    --cream: #fdf8f2;           /* warm neutral for text areas */
    --text-light: #f5e9df;
    --text-muted: #d8c7c0;
}

body {
    font-family: Georgia, serif;
    background: url("ai couch.png") no-repeat center center fixed;
    background-size: cover;
    color: var(--text-light);
    line-height: 1.7;
    padding: 0 1.5rem;
}


/* Header */
header {
    text-align: center;
    padding: 4rem 0 2rem;
}

h1 {
    font-size: 3rem;
    letter-spacing: 1px;
    color: var(--pastel-yellow);
}

.tagline {
    margin-top: 0.5rem;
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Navigation */
nav {
    margin-top: 2rem;
}

nav a {
    margin: 0 1rem;
    text-decoration: none;
    color: var(--pastel-yellow);
    font-weight: bold;
    transition: 0.2s ease;
}

nav a:hover {
    color: var(--cream);
}

/* Sections */
section {
    max-width: 800px;
    margin: 4rem auto;
    background: var(--cherry);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--pastel-yellow);
}

/* Cards for writing */
.card-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.card {
    background: var(--cherry-light);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.card h3 {
    margin-bottom: 0.5rem;
    color: var(--pastel-yellow);
}

.button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.4rem 0.8rem;
    background: var(--pastel-yellow);
    color: var(--cherry);
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s ease;
}

.button:hover {
    background: var(--cream);
}

/* Photography grid */
.photo-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-top: 1.5rem;
}

.photo-grid img {
    width: 100%;
    border-radius: 6px;
    border: 2px solid var(--pastel-yellow);
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* Link lists */
.link-list {
    list-style: none;
    margin-top: 1.5rem;
}

.link-list li {
    margin-bottom: 0.8rem;
}

.link-list a {
    color: var(--pastel-yellow);
    text-decoration: none;
    transition: 0.2s ease;
}

.link-list a:hover {
    color: var(--cream);
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}
section {
  margin: 3rem 0;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
}

section h2 {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

section ul {
  list-style: none;
  padding: 0;
}

section ul li {
  margin-bottom: 0.5rem;
}

section a {
  color: var(--text-light);
  text-decoration: underline;
}
.photo {
    position: relative;
    display: inline-block;
}

.photo img {
    display: block;
    width: 100%;
    height: auto;
}
.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    color: rgba(255, 255, 255, 0.25);
    font-size: 32px;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}