/* General modern styling for the credit page */

/* Reset et font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif; /* Using Montserrat for a modern feel, you can keep Duplet if it's a custom font you have */
    background-color: #121212;
    color: #eee;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(20, 20, 20, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 1000;
}

header img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #eee;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #1e40af;
}

/* Main content */
main {
    max-width: 900px;
    margin: 90px auto 3rem;
    padding: 0 1rem;
    flex-grow: 1; /* Allow main to grow and push footer down */
}

main h1 {
    font-size: 3.2rem; /* Slightly larger for impact */
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: #ffffff; /* Highlight the main title e */
    letter-spacing: 1px;
}

.update-date {
    text-align: center;
    margin-bottom: 3rem; /* More space for a cleaner look */
    color: #888;
    font-style: italic;
    font-size: 0.95rem;
}

section {
    background-color: #1a1a1a; /* Slightly lighter background for sections */
    border-radius: 12px; /* Rounded corners for sections */
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

section h2 {
    font-size: 2rem; /* Larger section titles */
    margin-bottom: 1.5rem;
    color: #eee;
    border-bottom: 2px solid #1e40af; /* Underline with accent color */
    padding-bottom: 0.5rem;
    text-align: center;
}

.credit-item {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid #1e40af; /* Accent border on the left */
}

.credit-item:last-child {
    margin-bottom: 0;
}

.credit-item p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.credit-item ul {
    list-style: none; /* Remove default list style */
    padding-left: 0;
    margin-top: 0.8rem;
}

.credit-item ul li {
    margin-bottom: 0.4rem;
    position: relative;
    padding-left: 1.5rem; /* Space for custom bullet */
}

.credit-item ul li:before {
    content: '•'; /* Custom bullet point */
    color: #1e40af;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.credit-item a {
    color: #4CAF50; /* A distinct color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.credit-item a:hover {
    color: #66BB6A;
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #111;
    padding: 1.5rem 2rem;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
    margin-top: auto;
}

footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding: 0;
}

footer a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
}

/* Existing contact form styles, not directly used on this page but kept for context */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.alert {
    padding: 20px;
    background-color: #f44336; /* Red */
    color: white;
    margin-bottom: 15px;
}

.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.closebtn:hover {
    color: black;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #222;
    color: #eee;
}

.contact-form button {
    background-color: #1e40af;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background-color: #1e3a8a;
}

#phone-container {
    margin-top: 2rem;
    text-align: center;
    font-size: 1.2rem;
}

.phone-hidden {
    display: none;
}