/* ─────────────────────────────────────────────────────────────
   GLOBAL RESET & BASE STYLES
───────────────────────────────────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background-color: #1a0e04; /* Dark brown base */
  color: #E0D6C9;
  overflow-x: hidden;
}

body {
    background-image: url('../images/background.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 100vh;
}

.left-column {
    width: 50%;
    padding-right: 50px;
}

.right-column {
    width: 50%;
    position: relative;
}

.header {
    position: absolute;
    top: 20px;
    left: 20px;
}

.header .logo {
    width: 100px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #D4AF37;
    text-transform: uppercase;
    margin-bottom: 20px;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.store-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.store-buttons a img {
    height: 50px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #D4AF37;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #D4AF37;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    background-color: #D4AF37;
    color: #1a0e04;
}

.app-images .screenshots {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        height: auto;
    }
    .left-column, .right-column {
        width: 100%;
        padding: 0;
    }
    .right-column {
        margin-top: 50px;
        height: auto;
    }
    h1 {
        font-size: 2.5rem;
    }
    .store-buttons {
        justify-content: center;
    }
    .footer-links {
        justify-content: center;
    }
}
