/* General Body Styles */
body {
    background-color: #000000;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.light-theme {
    background-color: #ffffff;
    color: #000000;
}
/* Greeting at the Top */
#greeting {
    font-family: 'Arial', sans-serif; /* Consistent font from reused sections */
    font-size: 32px; /* Subtle and refined size */
    color: #ffffff; /* Clean white text */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5); /* Softer shadow */
    text-align: center; /* Aligns the greeting perfectly */
    margin: 10px auto; /* Adds subtle spacing */
    padding-top: 15px; /* Reduced padding for subtle appearance */
}

/* Hero Section Heading with Archaic Gothic Font */
@import url('https://fonts.googleapis.com/css2?family=Germania+One&display=swap');

#hero h1 {
    font-family: 'Germania One', cursive; /* Archaic Gothic style */
    font-size: 60px; /* Bold prominence */
    color: #ffffff; /* Clean white text */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Dramatic shadow for depth */
    margin: 0;
    animation: fadeIn 2s ease; /* Smooth fade-in effect */
    text-align: center; /* Ensures perfect alignment */
}

/* Greeting at the Top */
#greeting {
    font-family: 'UnifrakturMaguntia', cursive; /* Gothic style */
    font-size: 50px; /* Prominent display */
    color: #ffffff; /* Clean white text for clarity */
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7); /* Dramatic shadow for depth */
    margin: 0 auto;
    text-align: center;
    padding-top: 20px; /* Better alignment spacing */
}


/* Nav Bar Title with Remachine Script Font */
@import url('https://fonts.googleapis.com/css2?family=Remachine+Script&display=swap');

header h1 {
    font-family: 'Remachine Script', cursive; /* Vintage, elegant script */
    font-size: 40px; /* Slightly larger for emphasis */
    color: #ffffff; /* White for clarity */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7); /* Subtle shadow for depth */
    margin: 0;
    text-align: center; /* Keeps it centered */
}


/* Navbar Styling */
header {
    background-color: #001f3f;
    text-align: center;
    padding: 15px 0;
}

header h1 {
    margin: 0;
    font-size: 32px;
    color: #ffffff;
}

nav {
    display: flex;
    justify-content: space-between; /* Ensures even spacing between items */
    align-items: center;
    flex-wrap: wrap; /* Allows items to wrap if needed */
    margin: 0 auto; /* Centers the navbar */
    max-width: 1200px; /* Constrains the navbar width for large screens */
    padding: 0 15px; /* Adds spacing on the sides */
    gap: 15px; /* Spacing between items */
}

nav ul#menuItems {
    display: flex;
    flex-wrap: wrap; /* Ensures the menu items wrap when necessary */
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul#menuItems li {
    display: inline-block;
}

nav ul#menuItems li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px; /* Adjusted size for scalability */
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

nav ul#menuItems li a:hover {
    background-color: #66c2ff;
    color: #001f3f;
    transform: scale(1.05);
}
/* Support My Mission Title */
#patreon h2 {
    font-family: 'Remachine Script', cursive; /* Bold and elegant script font */
    font-size: 38px; /* Slightly larger for prominence */
    color: #ffffff; /* Clean white text for contrast */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7); /* Subtle depth shadow */
    text-align: center; /* Center-align the title */
    margin-bottom: 20px;
}
/* Testimonials Title */
#testimonials h2 {
    font-family: 'UnifrakturMaguntia', cursive; /* Archaic Gothic font */
    font-size: 36px; /* Striking yet refined size */
    color: #ffffff; /* Bold white text for emphasis */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7); /* Adds dimension */
    text-align: center; /* Perfectly centered title */
    margin-bottom: 20px; /* Adds space below */
}

/* Mobile Responsive Navbar */
@media (max-width: 768px) {
    #menuToggle {
        display: block; /* Display the toggle button on smaller screens */
        background-color: #66c2ff;
        color: #001f3f;
        font-size: 20px;
        padding: 10px 15px;
        border-radius: 5px;
        cursor: pointer;
        margin: 10px 0;
        border: none;
    }

    nav ul#menuItems {
        flex-direction: column; /* Stack items vertically for smaller screens */
        display: none;
        width: 100%; /* Full-width dropdown menu */
        background-color: #001f3f;
    }

    nav ul#menuItems.show {
        display: flex;
    }

    nav ul#menuItems li {
        text-align: center;
        margin: 5px 0;
    }
}


/* Mobile Responsive Navbar */
#menuToggle {
    display: none;
    background-color: #66c2ff;
    color: #001f3f;
    font-size: 20px;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0;
    border: none;
}

@media (max-width: 768px) {
    #menuToggle {
        display: block;
    }

    nav ul#menuItems {
        flex-direction: column;
        display: none;
        width: 100%;
        background-color: #001f3f;
    }

    nav ul#menuItems.show {
        display: flex;
    }

    nav ul#menuItems li {
        text-align: center;
        margin: 5px 0;
    }
}

/* Hero Section */
#hero {
    position: relative;
    text-align: center;
    color: #ffffff;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 51, 102, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

body.light-theme #hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(200, 200, 200, 0.9));
}

#hero h1 {
    font-size: 48px;
    margin-top: 0;
    animation: fadeIn 2s ease;
}

#hero p {
    font-size: 18px;
    margin-top: 10px;
    animation: fadeIn 2s ease 0.5s;
}

/* Gallery Section */
#gallery {
    padding: 30px;
    text-align: center;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 20px 0;
}

.gallery-item img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(102, 194, 255, 0.7);
}

/* Social Media Section */
.social-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: center;
    overflow-x: auto;
    padding: 20px 0;
}

.social-item {
    flex: 0 0 auto;
    width: 300px;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    background-color: #ffffff;
}

body.light-theme .social-item {
    box-shadow: 0 4px 10px rgba(102, 194, 255, 0.7);
}

/* Footer Section */
footer {
    background-color: #001f3f;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

body.light-theme footer {
    background-color: #66c2ff;
    color: #001f3f;
}

/* About Section */
#about {
    margin: 30px auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    background: linear-gradient(135deg, #003366, #66c2ff);
    color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: left;
    line-height: 1.8;
    font-family: "Georgia", serif;
    transition: all 0.3s ease;
}

body.light-theme #about {
    background: linear-gradient(135deg, #d6eaff, #b3daff);
    color: #003366;
}

/* About Artist Zander Title with Remachine Script */
#about h2 {
    font-family: 'Remachine Script', cursive; /* Vintage, elegant script */
    font-size: 40px; /* Prominent size */
    color: #ffffff; /* Clean white text */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7); /* Subtle shadow for depth */
    text-align: center; /* Center aligns the title */
    margin-bottom: 20px; /* Adds spacing below the title */
}
#about p {
    margin: 10px 0;
}

#about a {
    color: #66c2ff;
    text-decoration: none;
    font-weight: bold;
}

#about a:hover {
    text-decoration: underline;
}

/* Patreon Section */
#patreon {
    margin: 30px auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    text-align: center;
    background: linear-gradient(135deg, #ff4500, #ff9966);
    color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-family: "Verdana", sans-serif;
    transition: all 0.3s ease;
}

body.light-theme #patreon {
    background: linear-gradient(135deg, #ffcc99, #ffd1b2);
    color: #ff4500;
}

#patreon h2 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 15px;
}

#patreon p {
    margin: 10px 0;
    font-size: 16px;
}

#patreon button {
    background-color: #ffffff;
    color: #ff4500;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

#patreon button:hover {
    background-color: #ff4500;
    color: #ffffff;
    transform: scale(1.1);
}
.milestone {
    background-color: #ffd700; /* Highlight milestones in gold */
    border-radius: 5px;
    padding: 10px;
    color: #000;
}

#timeline {
    padding: 10px;
    background-color: #f8f9fa;
}

.timeline-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid #6c757d;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
    height: 15px;
    background-color: #6c757d;
    border-radius: 50%;
}


/* Contact Section */
#contact {
    margin: 30px auto;
    padding: 20px;
    width: 90%; /* Full width for responsiveness */
    max-width: 600px; /* Limit the container width */
    background: linear-gradient(135deg, #003366, #66c2ff); /* Gradient background */
    color: #ffffff;
    border-radius: 15px; /* Smooth corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    text-align: left; /* Align text for a professional look */
    line-height: 1.8;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
}

body.light-theme #contact {
    background: linear-gradient(135deg, #d6eaff, #b3daff); /* Softer gradient for light mode */
    color: #003366;
}

/* Newsletter Section Styling */
#newsletter {
    margin: 30px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px; /* Limit width for better readability */
    background: linear-gradient(135deg, #003366, #66c2ff); /* Sleek gradient */
    color: #ffffff; /* White text for contrast */
    border-radius: 15px; /* Smooth corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    text-align: center;
    font-family: "Arial", sans-serif; /* Professional font */
    transition: all 0.3s ease; /* Smooth transitions */
}

body.light-theme #newsletter {
    background: linear-gradient(135deg, #d6eaff, #b3daff); /* Softer gradient for light mode */
    color: #003366;
}
/* Blog Section Styling */
#blog {
    margin: 30px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px; /* Limit the container width */
    background: linear-gradient(135deg, #003366, #66c2ff); /* Sleek gradient */
    color: #ffffff;
    border-radius: 15px; /* Smooth corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    text-align: center; /* Center the content */
    font-family: "Arial", sans-serif; /* Clean and modern font */
    transition: all 0.3s ease;
}

body.light-theme #blog {
    background: linear-gradient(135deg, #d6eaff, #b3daff); /* Softer gradient for light mode */
    color: #003366;
}

/* Social Media Newsfeed Styling */
#social h2 {
    font-family: 'Playfair Display', serif; /* Elegant and modern serif font */
    font-size: 36px; /* Prominent header size */
    color: #ffffff; /* Clean white text */
    text-align: center; /* Center-aligns the header */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7); /* Subtle shadow for depth */
    margin-bottom: 20px; /* Adds spacing below the title */
}

#blog h2 {
    font-family: 'Remachine Script', cursive; /* Elegant script font */
    font-size: 36px; /* Stand-out header size */
    margin-bottom: 15px;
    color: #ffffff; /* White for clarity */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7); /* Subtle shadow for emphasis */
}

#blog p {
    font-size: 18px;
    margin: 10px 0;
}

#blog button {
    background-color: #ffcc00; /* Vibrant button color */
    color: #003366;
    font-weight: bold;
    cursor: pointer;
    border: none;
    padding: 10px 20px;
    font-size: 18px; /* Larger button text */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#blog button:hover {
    background-color: #66c2ff; /* Interactive hover color */
    color: #ffffff;
    transform: scale(1.05); /* Slight enlargement on hover */
}

#newsletter h2 {
    font-family: 'Remachine Script', cursive; /* Distinct, elegant script font */
    font-size: 36px; /* Bold header size */
    margin-bottom: 15px;
    color: #ffffff; /* White text for clarity */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7); /* Subtle shadow for emphasis */
}

#newsletter p {
    margin: 10px 0;
    font-size: 18px; /* Clear text for engagement */
}

#subscribeForm {
    display: flex;
    flex-direction: column; /* Align inputs vertically */
    gap: 15px; /* Space between form elements */
    margin-top: 10px;
}

#subscribeForm input[type="email"] {
    width: 100%; /* Full width */
    padding: 10px;
    font-size: 16px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#subscribeForm input[type="email"]:focus {
    border-color: #66c2ff; /* Highlight on focus */
    box-shadow: 0 0 5px rgba(102, 194, 255, 0.7); /* Glow effect */
}

#subscribeForm button {
    width: 100%;
    background-color: #ffcc00; /* Vibrant button color */
    color: #003366;
    font-weight: bold;
    cursor: pointer;
    border: none;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 18px; /* Larger button text for prominence */
}

#subscribeForm button:hover {
    background-color: #66c2ff; /* Interactive hover color */
    color: #ffffff; /* White text on hover */
    transform: scale(1.05); /* Slight enlargement */
}

#contact h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffcc00; /* Golden accent for the header */
    text-align: center;
}

#contact form {
    display: flex;
    flex-direction: column; /* Align form inputs vertically */
    gap: 15px; /* Spacing between form elements */
    margin-top: 10px;
}

#contact input,
#contact textarea,
#contact button {
    width: 100%; /* Full width for inputs */
    padding: 10px;
    font-size: 16px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for inputs */
    outline: none; /* Remove focus outline */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#contact input:focus,
#contact textarea:focus {
    border-color: #66c2ff; /* Highlight border on focus */
    box-shadow: 0 0 5px rgba(102, 194, 255, 0.7); /* Glow effect */
}

#contact textarea {
    resize: none; /* Prevent resizing for better layout control */
}

#contact button {
    background-color: #ffcc00; /* Golden button */
    color: #003366;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#contact button:hover {
    background-color: #66c2ff;
    color: #ffffff;
    transform: scale(1.05); /* Slight enlargement on hover */
}

/* Toggle Theme Button */
#toggleTheme {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #ffc107;
    color: #001f3f;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

body.light-theme #toggleTheme {
    background-color: #66c2ff;
    color: #001f3f;
}
