:root {
  --primary-white: #ffffff;
  --text-soft: #d1d1d1;
  /* Deep burgundy/wood tones for a moody palette */
  --accent-color: #a33b3b; 
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* Moody background using a dark kitchen/wood aesthetic */
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('../images/kitchen.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--primary-white);
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  max-width: 650px;
  width: 100%;
  text-align: center;
  padding: 40px;
  /* Glassmorphism effect for readability */
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  border-radius: 4px;
}

.logo {
  max-width: 300px;
  height: auto;
  margin-bottom: 2rem;
  /* Keeps the logo crisp on dark background */
  filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.5));
}

.tagline {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.description {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 500px;
  margin: 0 auto 4rem auto;
  font-weight: 300;
  line-height: 1.8;
}

/* --- The "Table" Footer Section --- */
.footer {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-content {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0rem;
  width: 100%;
  max-width: 300px;
  /* The "Heavy Line" representing the table surface */
  border-bottom: 3px solid var(--primary-white);
  margin-bottom: 15px;
}
.footer-content a {
	text-decoration:none !important!;
}
.illustration {
  width: 50px;
  height: auto;
  filter: brightness(0) invert(1);
	
}

.social-icons img {
  width: 50px;
  height: auto;
  /* Invert if the icon is black to make it white */
  filter: brightness(0) invert(1);
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.copyright a {
  color: var(--primary-white);
  text-decoration: none;
  font-weight: 600;
}

/*HOVER STATES*/

.footer-content a:hover img {
  /*filter: invert(11%) sepia(90%) saturate(5300%) hue-rotate(338deg) brightness(85%) contrast(110%);*/
  filter: invert(11%) sepia(92%) saturate(5300%) hue-rotate(320deg) brightness(85%) contrast(110%);
}

.copyright a:hover {
  color: #881147; /*wine*/
}




/* Mobile Adjustments */
@media (max-width: 480px) {
  .tagline { font-size: 1.5rem; }
  .description { font-size: 1rem; }
  .container { padding: 20px; }
}