alex@gold:/var/www/future.giftivest.com/gifts$ cat stylesnick.css 
/* Modernised CSS for Giftivest Landing Page */

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HelveticaCustom';
  src: url('../fonts/Helvetica.ttc') format('truetype-collection');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gyst';
  src: url('../fonts/gyst-regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Amalfi Coast';
  src: url('../fonts/Amalfi_Coast.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-heading: 'Gyst', serif;
  --font-body: 'HelveticaCustom', Helvetica, Arial, sans-serif;

  --text-main: #1A1A1A;
  --text-heading: #000000;
  --text-subtle: #555;
  --text-button: #fff;
  
  --bg-main: #fff;
  --bg-cream: #f7f4ef;
  --bg-note: #fcfbf8;
  --bg-dark: #0a0a0a;

  --button-primary: #1a1a1a;
  --button-primary-hover: #000;
  --button-accent: #ff8c00;
  --button-accent-hover: #e57800;

  --border-soft: #e0e0e0;
  --underline: #ccc;

  --footer-bg: #1a1a1a;
  --footer-text: #e0e0e0;

  --radius: 8px;
  --radius-pill: 25px;
  --shadow-soft: 0 2px 5px rgba(0,0,0,0.08);
  --shadow-hover: 0 6px 20px rgba(0,0,0,0.1);

  --container-width: 960px;
  --space: 1rem;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-main);
  background: var(--bg-main);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container-width);
  width: 90%;
  margin: 0 auto;
  padding: 0 var(--space);
}

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.3;
  margin-bottom: var(--space);
  color: var(--text-heading);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 2.8rem);
  text-align: center;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

h2::after {
  content: '';
  display: block;
  width: 60%;
  height: 3px;
  background: var(--underline);
  margin-top: 0.3rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

p, li {
  margin-bottom: var(--space);
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

a {
  color: #0056b3;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

a:hover {
  text-decoration: underline;
  color: #003d80;
}

.hero-section {
  background: #1D2A47;
  color: #fafafa;
  text-align: center;
  padding: 4rem 0 3rem;
}

.hero-section h1 {
  color: #fff;
}

.hero-logo {
  display: block;
  margin: 1.5rem auto;
  max-width: 150px;
  height: auto;
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
  opacity: 1;
}

.subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 1rem auto 0;
  color: #ddd;
}

.beyond-text {
  font-family: 'Amalfi Coast', cursive;
  color: #e07aa5;
  font-size: 2.4rem;
  line-height: 1.1;
  margin: 1rem 0 1.5rem;
  text-align: center;
}

.personal-note-section,
.cta-section,
.faq-section {
  padding: 3rem 0;
}

.note-content {
  background: var(--bg-note);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.note-content p {
  margin-bottom: 1.2rem;
}

.note-content .dear {
  font-family: 'Amalfi Coast', cursive;
  font-size: 2.8rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  display: block;
}

.note-content p.signature {
  font-style: normal;
  font-weight: 500;
  margin-top: 2rem;
}

.note-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.cta-section li,
.faq-footer {
  background: var(--bg-note);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.cta-section li:hover,
.faq-footer:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.btn {
  display: inline-block;
  background: var(--button-primary);
  color: var(--text-button);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: background 0.3s ease, transform 0.2s ease;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.btn:hover {
  background: var(--button-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.app-store-btn {
  background: #1D2A47;
  color: #fff;
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  margin: 1rem auto;
  box-shadow: var(--shadow-soft);
  transition: background 0.3s ease, transform 0.2s ease;
}

.app-store-btn:hover {
  background: #162036; /* slightly darker navy for hover */
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.app-store-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0 1rem;
  width: 100%;
  text-align: center;
}

summary {
  font-weight: 600;
  padding: 1rem;
  cursor: pointer;
  position: relative;
}

details {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  margin-bottom: var(--space);
  background: #fff;
  transition: all 0.3s ease;
}

details[open] {
  box-shadow: var(--shadow-soft);
}

details[open] summary {
  background: var(--bg-cream);
  border-bottom: 1px solid var(--border-soft);
}

.details-content {
  padding: 0 1rem 1rem;
}

footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 2rem 0;
  text-align: center;
}

footer a {
  color: #b0c4de;
  font-weight: 400;
}

footer a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .app-store-links {
    flex-direction: column;
    gap: var(--space);
  }
}

@media (prefers-color-scheme: dark) {
  body {
    background: #111;
    color: #eee;
  }
  .note-content,
  .cta-section li,
  .faq-footer {
    background: #1a1a1a;
    color: #fafafa;
  }
  a {
    color: #81b4ff;
  }
  a:hover {
    color: #aad4ff;
  }
}
