/* 
   Pathalam Minecraft Community - Core Styles
   Theme: Hell / Aggressive PvP
*/

:root {
    --primary-red: #8a0303;
    --blood-red: #5e0000;
    --fire-orange: #ff4500;
    --accent-gold: #ffd700;
    --dark-bg: #050505;
    --panel-bg: #111111;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;

    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;

    --glow-shadow: 0 0 15px rgba(255, 69, 0, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, var(--primary-red), var(--fire-orange));
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-shadow);
}

.btn-lg {
    padding: 25px 60px;
    font-size: 1.8rem;
    font-weight: 800;
    /* Extra bold for impact */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(to bottom, #fff, var(--fire-orange));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--primary-red);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--fire-orange);
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a:hover {
    color: var(--fire-orange);
    text-shadow: 0 0 8px rgba(255, 69, 0, 0.8);
}

/* Mobile Nav Overrides */
.mobile-nav-links {
    list-style: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--fire-orange);
    transition: 0.3s;
}

.hamburger.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.open .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu ul {
    text-align: center;
}

.mobile-menu li {
    margin: 2rem 0;
}

.mobile-menu a {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: #fff;
}

.mobile-menu a:hover {
    color: var(--fire-orange);
}



/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url('../assets/images/hero_background_hell.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    z-index: 2;
    animation: fadeIn 1.5s ease-out;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(138, 3, 3, 0.8);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ddd;
}

.ip-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.ip-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--primary-red);
    padding: 1rem 2rem;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.ip-card:hover {
    background: rgba(138, 3, 3, 0.2);
    box-shadow: var(--glow-shadow);
}

.ip-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.ip-address {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--fire-orange);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections General */
section {
    padding: 5rem 0;
}

/* About Section */
.about {
    background: #0a0a0a;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: '⚔️';
    margin-right: 10px;
    color: var(--fire-orange);
}

/* Responsive Design */
@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
        margin-bottom: 2rem;
    }

    .ip-container {
        flex-direction: column;
        align-items: center;
    }

    .ip-card {
        width: 100%;
        max-width: 300px;
    }

    .feature-list {
        display: inline-block;
        text-align: left;
    }
}
/* About Image Styles */
.about-img-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--primary-red);
    box-shadow: 0 0 20px rgba(138, 3, 3, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img-container:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.6);
}

.about-img-container img {
    width: 100%;
    height: auto;
    display: block;
}
