/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

a {
    text-decoration: none;
    color: #007bff; /* Default blue color */
}

a:hover {
    color: #0056b3; /* Darker blue on hover */
}

a:visited {
    color: #007bff; /* Prevent purple color after clicking */
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Body */
body {
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    background: #333;
    color: white;
    padding: 15px 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h1 {
    margin: 0;
    font-size: 24px;
}

/* Hero Section */
.hero {
    background: url('background.jpg') no-repeat center center/cover;
    padding: 80px 20px;
    color: white;
    text-align: center;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content */
main {
    padding: 20px;
}

.breach-details {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Align details in one row */
.breach-details p {
    display: inline-block;
    margin-right: 20px; /* Spacing between details */
    font-size: 16px;
    line-height: 1.6;
}

/* Ensure last element doesn’t have extra space */
.breach-details p:last-child {
    margin-right: 0;
}

/* Align list items inline without background */
.breach-details ul {
    display: flex;
    flex-wrap: wrap; /* Wrap items if needed */
    gap: 15px; /* Space between list items */
}

/* Remove background from list items */
.breach-details ul li {
    padding: 0;
    border-radius: 0;
    background: none;
}

/* Style the back button */
.back-button {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.back-button a {
    display: inline-block;
    background-color: #e4e4e4;
    padding: 15px 25px;
    font-size: 1.2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

/* Fix for normal text inversion */
.back-button a:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    filter: invert(1);
}

.back-button a:hover {
    filter: invert(1); /* Re-invert child elements (text, icons, etc.) */
}

/* Footer */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
}

.footer-content p {
    margin: 0;
    font-size: 16px;
}

.social-media {
    margin-top: 10px;
}

.social-media a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.3s;
}
