/* Basic style for Matt Breen's personal site */

/* Import the Inter font */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Container for consistent page width */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
.site-header {
    background-color: #1a73e8;
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Flex container for header content */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Remove underline and default link color from site title link */
.site-title a {
    color: inherit;
    text-decoration: none;
}
.site-title a:hover {
    text-decoration: underline;
}

.site-title {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
}

.tagline {
    margin: 5px 0 15px;
    font-size: 1.25rem;
    font-weight: 400;
}

/* Navigation styles */
.nav {
    margin-top: 10px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #dbeafe;
}

/* Hero section styles for the homepage */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background-color: #f5f8fd;
}

.hero-title {
    font-size: 3rem;
    margin: 0 0 10px;
    font-weight: 700;
}

.hero-tagline {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #555;
}

.hero-nav {
    display: flex;
    gap: 30px;
}

.hero-nav a {
    font-size: 1.2rem;
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.hero-nav a::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background: #1a73e8;
    transition: width 0.3s ease;
    margin: auto;
}

.hero-nav a:hover::after {
    width: 100%;
}

/* About page layout */
.about-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-image img {
    max-width: 250px;
    border-radius: 8px;
}

.about-text {
    flex: 1;
}

/* Placeholder styling for games page */
.games-placeholder {
    margin-top: 40px;
    padding: 40px;
    border: 2px dashed #d1d5db;
    text-align: center;
    color: #6b7280;
}

/* Section styles */
.section {
    padding: 60px 0;
    background-color: #ffffff;
}

.section-alt {
    background-color: #f0f4fa;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
}

.button {
    display: inline-block;
    background-color: #1a73e8;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #1558b0;
}

/* Social links */
.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
}

.social-links li {
    margin: 0;
}

.social-links a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #1558b0;
}

/* Footer styles */
.site-footer {
    background-color: #1f2937;
    color: #9ca3af;
    text-align: center;
    padding: 20px 0;
    font-size: 0.875rem;
}