/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1c1c1c;
    color: #f1f1f1;
}
.nav-button {
    background-color: #ff5c5c;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.nav-button:hover {
    background-color: #ff3d3d;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2 {
    color: #ff5c5c;
}

p {
    color: #ddd;
}

/* Navigation Bar Styles */
.navbar {
    background-color: #2c2c2c;
    padding: 10px 20px;
}

.navbar .logo {
    color: #f1f1f1;
    font-size: 1.5em;
    text-decoration: none;
}

.nav-links {
    float: right;
}

.nav-links .nav-button {
    color: #f1f1f1;
    text-decoration: none;
    margin-left: 15px;
}

.nav-links .nav-button:hover {
    text-decoration: underline;
}

/* Contact Grid Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-item {
    background-color: #2c2c2c;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #f1f1f1;
    display: block; /* Ensure the entire div is clickable */
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Resetting link styles within contact-item */
.contact-item:link, .contact-item:visited {
    color: inherit; /* Inherit the color from the parent element */
    text-decoration: none; /* Remove underline */
}

.contact-icon {
    font-size: 70px; /* Larger icon size */
    margin-bottom: 10px;
    color: #ff5c5c; /* Icon color */
}

.contact-item h2 {
    margin-top: 0;
    font-size: 1.5em;
    color: #f1f1f1;
}

.contact-item p {
    margin: 0;
    font-size: 1.2em;
}

/* Footer Styles */
footer {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    background-color: #1c1c1c;
    color: #f1f1f1;
}

.footer-links a {
    margin: 0 10px;
    color: #ff5c5c;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}
