:root {
    --primary-bg-color: #eedfe0;
    --text-color-dark: #333333;
    --text-color-heading: #500619;
    --text-color-footer: #555555;
    --button-bg-color: #61081E;
    --button-text-color: #FFFFFF;
    --button-hover-bg-color: #420415;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --border-radius-button: 25px;
    --border-radius-icon: 50%;
}

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

html, body {
    min-height: 100vh;
    font-family: var(--font-family);
    background-color: var(--primary-bg-color);
    color: var(--text-color-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-align: center;
}

body {
    touch-action: pan-x pan-y;
}

.page-wrapper {
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px; 
}

.logo-container {
    margin-bottom: 20px; 
}
.logo-container img {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-name {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-color-heading);
    margin-bottom: 8px; 
}

.tagline {
    font-size: 0.82rem;
    color: #4A4A4A;
    margin-bottom: 4px; 
    line-height: 1.45;
}
.tagline-secondary {
    font-size: 0.78rem;
    color: #555;
    margin-bottom: 18px; 
    font-style: italic;
}
.location {
    font-size: 0.72rem;
    color: #666;
    margin-bottom: 30px; 
}

.buttons-group {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px; 
}

.btn {
    display: block;
    width: 100%;
    background-color: var(--button-bg-color);
    color: var(--button-text-color);
    text-decoration: none;
    padding: 13px 15px;
    border-radius: var(--border-radius-button);
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px; 
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.btn:hover {
    background-color: var(--button-hover-bg-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.12);
}
.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn:last-child {
    margin-bottom: 0;
}

.social-media {
    margin-top: 0;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-media a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color-dark);
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.social-media a:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.social-media img {
    width: 28px;
    height: 28px;
}

.footer {
    margin-top: auto;
    padding-top: 10px;
    padding-bottom: 18px;
    font-size: 0.68rem;
    color: var(--text-color-footer);
    width: 100%;
    text-align: center;
}
.footer p {
    margin-bottom: 3px;
    line-height: 1.4;
}

@media (max-width: 370px) {
    .page-wrapper {
        padding: 20px 15px;
        max-width: 100%;
    }
    .logo-container img {
        width: 85px;
        height: 85px;
    }
    .brand-name {
        font-size: 1.7rem;
    }
    .tagline {
        font-size: 0.78rem;
    }
    .tagline-secondary {
        font-size: 0.72rem;
    }
    .location {
        font-size: 0.68rem;
    }
    .buttons-group {
        max-width: 95%;
    }
    .btn {
        padding: 11px 13px;
        font-size: 0.82rem;
    }
    .social-media img {
        width: 26px;
        height: 26px;
    }
    .social-media {
        gap: 18px;
    }
    .footer {
        font-size: 0.62rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .page-wrapper {
        max-width: 420px;
    }
    .brand-name {
        font-size: 2rem;
    }
    .btn {
        font-size: 0.9rem;
    }
    .buttons-group {
        max-width: 340px;
    }
    .social-media img {
        width: 30px;
        height: 30px;
    }
}
