/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Header Styles */
header {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 3em;
    font-weight: 700;
}

header p {
    margin: 10px 0 20px;
    font-size: 1.2em;
}

.search-bar {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.search-bar input {
    width: 350px;
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 1em;
}

.search-bar button {
    padding: 10px 20px;
    border: none;
    background: #ff6f61;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-bar button:hover {
    background: #ff4a3d;
}

/* Navigation Styles */
nav {
    background: #444;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #ff6f61;
}

/* Main Content Styles */
main {
    padding: 40px 0;
}

.featured-packs h2,
.categories h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
    color: #333;
}

.pack-grid,
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.pack-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pack-card:hover {
    transform: translateY(-10px);
}

.pack-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pack-info {
    padding: 15px;
    text-align: center;
}

.pack-info h3 {
    margin: 10px 0;
    font-size: 1.5em;
}

.pack-info p {
    font-size: 0.9em;
    color: #666;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff6f61;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #ff4a3d;
}

.category-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-card i {
    font-size: 2em;
    color: #7e05ff;
    margin-bottom: 10px;
}

.category-card h3 {
    margin: 10px 0;
    font-size: 1.2em;
}

/* Footer Styles */
footer {
    background: #333;
    color: #fff;
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 1.5em;
}

.footer-section p {
    font-size: 0.9em;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6f61;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    color: #ccc;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9em;
    color: #ccc;
}
/* About Page Styles */
.about-content {
    padding: 20px;
    background: #ffffff50;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    margin-top: 20px;
    color: #6a11cb;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.team-card {
    text-align: center;
    padding: 20px;
    background: #f8ecec1c;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.team-card h3 {
    margin: 10px 0;
    font-size: 1.2em;
}

.team-card p {
    font-size: 0.9em;
    color: #666;
}

.about-content ul {
    list-style: none;
    padding: 0;
}

.about-content ul li {
    margin: 10px 0;
    font-size: 1em;
    color: #ffffff;
}

.about-content ul li::before {
    content: "•";
    color: #6a11cb;
    margin-right: 10px;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff6f61;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #ff4a3d;
    transform: scale(1.05); /* Slightly enlarge the button */
}
/* Pack Grid Styles */
.pack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.pack-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pack-card:hover {
    transform: translateY(-10px);
}

.pack-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pack-info {
    padding: 15px;
    text-align: center;
}

.pack-info h3 {
    margin: 10px 0;
    font-size: 1.5em;
}

.pack-info p {
    font-size: 0.9em;
    color: #666;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff6f61;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #ff4a3d;
}
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #ffffff; /* Light text for better contrast */
    background-color: #1e1e1e; /* Fallback color */
    background-image: url('images/minecraft-background.jpg'); /* Path to your background image */
    background-size: cover; /* Ensure the image covers the entire background */
    background-position: center; /* Center the background image */
    background-attachment: fixed; /* Keep the background fixed while scrolling */
    line-height: 1.6;
}
.all-packs h2,
.categories h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
    color: #ffffff;
}
/* Header Styles */
header {
    background: rgba(0, 0, 0, 0.473); /* Semi-transparent black background */
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 3em;
    font-weight: 700;
}

header p {
    margin: 10px 0 20px;
    font-size: 1.2em;
}

/* Navigation Styles */
nav {
    background: rgba(51, 51, 51, 0.747); /* Semi-transparent dark background */
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #ff6f61;
}

/* Main Content Styles */
main {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.308); /* Semi-transparent white background */
    border-radius: 10px;
    margin: 30px auto;
    max-width: 1200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.featured-packs h2,
.categories h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
    color: #ffffff;
}

.pack-grid,
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.pack-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pack-card:hover {
    transform: translateY(-10px);
}

.pack-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pack-info {
    padding: 15px;
    text-align: center;
}

.pack-info h3 {
    margin: 10px 0;
    font-size: 1.5em;
    color: #333;
}

.pack-info p {
    font-size: 0.9em;
    color: #666;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff6f61;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #ff4a3d;
}

/* Footer Styles */
footer {
    background: rgba(51, 51, 51, 0.747); /* Semi-transparent dark background */
    color: #fff;
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 1.5em;
}

.footer-section p {
    font-size: 0.9em;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6f61;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    color: #ccc;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9em;
    color: #ccc;
}
/* Team Grid Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center; /* Center-align the grid */
    max-width: 1000px; /* Limit the width for better alignment */
    margin: 0 auto; /* Center the grid horizontally */
}

.team-card {
    background: #0000008a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px #6a11cb;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.team-card h3 {
    margin: 10px 0;
    font-size: 1.2em;
}

.team-card p {
    font-size: 0.9em;
    color: #ffffff;
}