/* ==========================================================================
   Arantic Digital - Shared Styles
   ========================================================================== */

/* CI Color Schema
   --primary-plum:           #963484
   --secondary-lapis:        #00648c
   --accent-cyan:            #009a9a
   --contrast-violet:        #4b2364
   --contrast-oxford:        #00002d
   --background-platinum:    #e5e5e5
   --text-jet:               #333333
   ========================================================================== */

:root {
  --primary: #963484;
  --secondary: #00648c;
  --accent: #009a9a;
  --contrast: #4b2364;
  --contrast-dark: #00002d;
  --background: #e5e5e5;
  --text: #333333;
}

/* Reset & Base
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: var(--contrast-dark);
  color: var(--background);
  line-height: 1.7;
}

a {
  transition: color 0.3s ease;
}

/* ==========================================================================
   Homepage Styles
   ========================================================================== */
.section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.flex-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
}

.logo {
  max-width: 1200px;
  width: 100%;
  height: auto;
}

.contact-text {
  font-size: 18px;
  color: var(--background);
  letter-spacing: 0.5px;
}

.contact-text a {
  color: var(--background);
  text-decoration: none;
}

.contact-text a:hover {
  color: var(--accent);
}

/* ==========================================================================
   Subpage Styles (AGBs, etc.)
   ========================================================================== */
.header {
  padding: 30px 20px;
  text-align: center;
  border-bottom: 1px solid var(--contrast);
}

.header a {
  display: inline-block;
}

.header img {
  max-width: 300px;
  height: auto;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

h1 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-align: center;
}

h2 {
  color: #ffffff;
  font-size: 1.75rem;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 600;
}

h3 {
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
  color: var(--background);
}

ul {
  margin-bottom: 16px;
  padding-left: 24px;
  color: var(--background);
}

li {
  margin-bottom: 8px;
}

.back-link {
  display: inline-block;
  margin-top: 40px;
  color: var(--secondary);
  text-decoration: none;
}

.back-link:hover {
  color: var(--accent);
}

.footer {
  text-align: center;
  padding: 30px 20px;
  border-top: 1px solid var(--contrast);
  color: #888888;
  font-size: 14px;
}

.footer a {
  color: #888888;
  text-decoration: none;
}

.footer a:hover {
  color: var(--accent);
}

/* ==========================================================================
   Responsive - Tablet
   ========================================================================== */
@media (max-width: 991px) {
  .logo {
    max-width: 900px;
  }
}

/* ==========================================================================
   Responsive - Mobile
   ========================================================================== */
@media (max-width: 767px) {
  .logo {
    max-width: 600px;
  }

  .contact-text {
    font-size: 16px;
  }

  .header img {
    max-width: 200px;
  }

  h1 {
    font-size: 1.25rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .container {
    padding: 30px 16px 60px;
  }
}

/* ==========================================================================
   Responsive - Small Mobile
   ========================================================================== */
@media (max-width: 479px) {
  .logo {
    max-width: 100%;
  }

  .contact-text {
    font-size: 14px;
  }
}
