/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f1f1f1;
    color: #333;
}

/* Header */
header {
    background-color: #222;
    padding: 20px;
    position: fixed;
    width: 100%;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.header-logo h1 {
    font-size: 24px;
    color: #fff;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff4c4c;
}

/* Hero Section */
.hero {
    background-image: url('images/flodderrdesigns1blur.png');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    color: #161616; /* kleur van titel tekst */
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 20px;
    background-color: hsl(58, 100%, 50%);
    color: #0c0c0c;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #f8e300;
}

/* Featured Designs Section */
.featured-designs {
    padding: 50px 0;
    text-align: center;
    color: #fff;
    background-color: #2a2828;
}

.design-card {
    position: relative;
    display: inline-block;
    width: 300px;
    height: 400px;
    margin: 20px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.design-card:hover {
    transform: translateY(-10px);
}

.design-card img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.design-card .details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.design-card:hover .details {
    transform: translateY(0);
}

.design-card h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.design-card p {
    font-size: 14px;
    color: #fff;
    margin-bottom: 15px;
}

.design-card .view-details {
    display: inline-block;
    padding: 8px 16px;
    background-color: #fff700;
    color: #000000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.design-card .view-details:hover {
    background-color: #cc0000;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 20px;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer p {
    margin: 0;
}

/* Pricing Page Styles */
.pricing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: #fff;
    text-align: center;
}

.pricing {
    margin-top: 80px; /* To ensure content is not hidden behind fixed header */
}

.pricing h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #fff;
}

.pricing-category {
    margin-bottom: 40px;
}

.pricing-category h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.pricing-box {
    display: inline-block;
    width: 300px;
    margin: 20px;
    padding: 20px;
    background-color: #222;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.pricing-box:hover {
    transform: translateY(-10px);
}

.price-details {
    color: #fff;
}

.price {
    font-size: 24px;
    font-weight: bold;
}

.description {
    font-size: 18px;
}

/* Portfolio Page Styles */
.portfolio {
    background-image: url('images/flodderrdesigns1blur.png');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

.portfolio h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

/* Grid styles */
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-10px);
}

.grid-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.grid-item:hover .overlay {
    opacity: 1;
}

.overlay h2 {
    color: #fff;
    font-size: 24px;
}

/* Hide additional images */
.additional-images {
    display: none;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    padding: 20px;
    width: 80%;
    max-width: 700px;
    background: white;
    border-radius: 8px;
}

.modal-content img {
    width: 100%;
    margin-bottom: 10px;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.modal-close:hover,
.modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Contact Page Styles */
.contact {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

.contact-box {
    background-color: #3a3737;
    max-width: 500px;
    width: 80%;
    margin: 0 auto;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
}

.contact-content {
    padding: 20px;
}

.contact-heading {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.contact-description {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
}

.discord-button {
    display: inline-block;
    padding: 12px 20px;
    background-color: #fff200;
    color: #000000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.discord-button:hover {
    background-color: #fff200;
}

/* Creative Box Styles */
.creative-box {
    background-color: #3a3737;
    max-width: 600px;
    width: 80%;
    margin: 40px auto;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.creative-box:hover {
    transform: translateY(-5px);
}

.creative-content {
    padding: 20px;
}

.creative-heading {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ffffff;
}

.creative-description {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ffffff;
}

.creative-button {
    display: inline-block;
    padding: 12px 20px;
    background-color: #fbff00;
    color: #000000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.creative-button:hover {
    background-color: #222;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(1, 1fr);
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin-bottom: 10px;
    }
}
