/* --- Font Setup --- */
@font-face {
    font-family: 'Zoho Puvi';
    src: url('../Zoho Puvi Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* --- Base Variables & Reset --- */
:root {
    --bg-color: #141415; /* Dark charcoal/black background */
    --text-color: #ffffff;
    --btn-bg: #ffffff;
    --btn-text: #141415;
    --teal-accent: #38b6b6; /* Matches the teal dot in the logo */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Zoho Puvi', sans-serif;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    -webkit-font-smoothing: antialiased;
}

/* --- Layout & Spacing --- */
.container {
    width: 100%;
    max-width: 450px; /* Keeps it tight and mobile-focused on desktop */
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem; /* Spacing between logo, buttons, and bottom text */
}

/* --- Logo --- */
.logo {
    max-width: 220px;
    width: 100%;
    height: auto;
}

/* --- Buttons --- */
.links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.btn {
    display: block;
    background-color: var(--btn-bg);
    color: var(--btn-text);
    text-decoration: none;
    padding: 1.1rem 2rem;
    border-radius: 50px; /* Pill shape */
    font-size: 1.3rem;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

/* --- Taglines --- */
.taglines {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 4rem; /* Adds the requested padding above "find your vibe" */
}

.taglines h2 {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
}

.taglines p {
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}

.teal-highlight {
    color: var(--teal-accent);
}

/* --- Desktop Tweaks --- */
@media (min-width: 768px) {
    .container {
        gap: 5rem;
    }
    .logo {
        max-width: 260px;
    }
    .btn {
        font-size: 1.4rem;
    }
}
/* --- Bulletproof Fix for the round full stop --- */
.round-dot {
    display: inline-block;
    width: 0.18em;  /* Reduced from 0.25em to make it smaller */
    height: 0.18em; /* Reduced from 0.25em to make it smaller */
    background-color: var(--text-color); 
    border-radius: 50%; 
    margin-left: 0.05em; 
}

/* Ensure the dot turns teal when it's supposed to */
.teal-highlight.round-dot,
.teal-highlight .round-dot {
    background-color: var(--teal-accent);
}