/* Basic Reset & Futuristic Theme */
:root {
    --primary-color: #0d0d2b; /* Dark blue */
    --secondary-color: #1a1a3d; /* Lighter blue */
    --accent-color: #00f7ff; /* Neon cyan */
    --text-color: #f0f0f0; /* Light gray */
    --glow-color: rgba(0, 247, 255, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Navigation */
.main-header {
    background: var(--secondary-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--glow-color);
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li {
    margin-left: 25px;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s, text-shadow 0.3s;
}

.main-nav a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 5px var(--glow-color);
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../images/hero-bg.jpg') no-repeat center center/cover; /* Placeholder */
    padding-top: 60px; /* Offset for fixed header */
}

#hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px var(--glow-color);
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background 0.3s, transform 0.3s;
}

.cta-button:hover {
    background: #fff;
    transform: scale(1.05);
}

/* General Section Styling */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: var(--secondary-color);
}

h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--glow-color);
}

/* Card Styling */
.dog-gallery, .help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.dog-card, .story-card, .help-card {
    background: var(--primary-color);
    border: 1px solid var(--accent-color);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.dog-card:hover, .help-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.dog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.dog-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* Success Stories */
.story-card {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.story-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

/* Resources */
#resources ul {
    list-style: none;
    text-align: center;
}

#resources li {
    margin-bottom: 10px;
}

#resources a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
}

#resources a:hover {
    color: var(--accent-color);
}

/* Footer */
.main-footer {
    background: var(--secondary-color);
    text-align: center;
    padding: 30px 0;
}

.social-media {
    margin: 15px 0;
}

.social-media a {
    color: var(--text-color);
    margin: 0 10px;
    text-decoration: none;
}

.social-media a:hover {
    color: var(--accent-color);
}

.main-footer a {
    color: var(--accent-color);
}
