* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(180deg, #b2b175 0%, #7f8103 100%);
}

.card-container {
    margin-top: 100px;
}


.profile {

  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 350px;      /* Adjust this number to make it as big as you want */
  height: auto;       /* This keeps the original proportions so it doesn't look stretched */
  margin-bottom: 20px;
  border-radius: 10px;

}

h1{margin-top: 5px; font-size: 26px; text-align: center;}

.text {
    text-align: center;
    font-size: 16px;
    color: #333;
}

.fast-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
    margin-top: 20px;
    color: #333;
}

.icon-links {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 30px;
    color:#1A3EAD;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about {
  text-align: center;
  max-width: 400px;    /* Keeps the paragraph from getting too wide */
  margin: 20px auto;   /* Centers the container and adds top/bottom space */
  padding: 0 15px;     /* Prevents text from hitting the screen edges on mobile */
  background: #fff;
  border-radius: 20px;
}

.about p {
  line-height: 1.6;    /* Makes the text much easier to read */
  color: #444;         /* A soft dark grey looks more modern than pure black */
}
.links-button {
    background: #fff;
    color: #333;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    transition: 0.5s;
}

.links-button:hover {
    transform: translateY(-3px);
}

.links-button i {
    font-size: 25px;
    margin-right: 15px;
}

.fa-facebook { color: #1877F2; }
.fa-instagram { color: #E4405F; }
.fa-tiktok { color: #000000; }
.fa-map { color: #EA4335; }
.fa-spray-can-sparkles { color: #FF69B4; }
.btn-text {text-align: left; flex-grow: 1;}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        height: auto;
        padding: 20px;
    }

    .profile {
        width: 120px;
        height: 120px;
    }

    h1 {
        font-size: 20px;
        margin-top: 10px;
    }

    .text {
        font-size: 14px;
    }

    .fast-links {
        flex-direction: row;
        gap: 10px;
        margin-bottom: 20px;
    }

    .icon-links {
        width: 50px;
        height: 50px;
    }

    .links-container {
        gap: 10px;
    }

    .about {
        max-width: 90%;
        padding: 15px;
        margin: 15px auto;
    }

    .links-button {
        padding: 10px 12px;
    }

    .links-button i {
        font-size: 20px;
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .profile {
        width: 100px;
        height: 100px;
    }

    h1 {
        font-size: 18px;
    }

    .text {
        font-size: 12px;
    }

    .fast-links {
        gap: 8px;
    }

    .icon-links {
        width: 40px;
        height: 40px;
    }

    .about {
        padding: 10px;
        margin: 10px auto;
    }

    .links-button {
        padding: 8px 10px;
    }

    .links-button i {
        font-size: 18px;
        margin-right: 8px;
    }
}
.btn-text b {display: block; font-size: 16px;}
.btn-text span {display: block; font-size: 12px; color: #777;}
.arrow {color: #CCC; font-size: 18px;}

@media screen and (max-width: 480px) {
  .container {
    width: 92%; /* Almost full width on tiny screens */
    margin-top: 10px;
  }

  .fast-links {
    gap: 10px; /* Tighten up the icon spacing */
  }

  .links-container i {
    width: 40px; /* Smaller circles for small thumbs */
    height: 40px;
    font-size: 16px;
  }

  .about {
    padding: 15px; /* Less padding to save space */
  }
}
