/* style.css - TikHub */

/* General Styles */
body {
    background-color: #000; /* TikTok Black */
    color: #fff; /* White text */
    font-family: 'Proxima Nova', Arial, sans-serif; /* TikTok-style font */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
}

/* Container for centering content */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header and Footer */
header, footer {
    background-color: #111; /* Slightly lighter black */
    width: 100%;
    padding: 20px 0;
    text-align: center;
}

header h1, footer p {
    color: #fe2c55; /* TikTok Red */
    margin: 0;
    font-size: 24px;
}

/* Main content */
main {
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Profile Header */
.profile-header {
    text-align: center;
    margin-bottom: 20px;
}

.profile-pic img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid #fe2c55;
}

.profile-info {
    margin-top: 10px;
}

.profile-info h2 {
    color: #fff;
    margin: 10px 0;
}

.profile-info p {
    display: inline-block;
    margin: 5px 10px;
    padding: 5px 15px;
    border: 2px solid #fe2c55;
    border-radius: 5px;
    color: #fff;
    background-color: #111;
    font-size: 14px;
}

/* Tools Section */
.profile-tools {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.tools-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.tool {
    background-color: #111; /* Slightly lighter black */
    border: 1px solid #333;
    padding: 15px;
    border-radius: 10px;
    flex: 1 1 calc(30% - 20px);
    box-sizing: border-box;
    max-width: 300px;
}

.tool h3 {
    color: #fe2c55; /* TikTok Red */
    margin-bottom: 10px;
    font-size: 18px;
}

.tool p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #ccc;
}

.tool button {
    width: 100%;
    background-color: #fe2c55; /* TikTok Red */
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

.tool button:hover {
    background-color: #ff5a77; /* Slightly lighter red */
}

/* TikTok Connect Button */
.tiktok-connect {
    margin-top: 20px;
    background-color: #fe2c55; /* TikTok Red */
    color: #fff;
    border: none;
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(254, 44, 85, 0.3);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.tiktok-connect:hover {
    background-color: #ff5a77; /* Slightly lighter red */
    transform: scale(1.05);
}

/* Buttons for creating an account and connecting */
.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #fe2c55; /* TikTok Red */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.btn:hover {
    background-color: #ff5a77; /* Slightly lighter red */
    transform: scale(1.05);
    transition: 0.3s;
}

/* Section Titles */
h2 {
    color: #fff; /* White */
    font-size: 20px;
    border-bottom: 2px solid #fe2c55; /* Red underline */
    padding-bottom: 5px;
    margin-bottom: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tool {
        flex: 1 1 calc(45% - 20px);
    }
}
