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

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #111;
    color: #fff;
}

header .logo img {
   height: 40px;
}

header .returntoindex {
	position: absolute;
	left: 200px;
	top: 12px;
}
header .returntoindex a {
	text-decoration: none;
	font-size: 1rem;
	transition: color 0.3s ease;
	color: #33aa33;
	display: flex;
	align-items: left;
}
header .returntoindex a:hover {
	color: white;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

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

header nav ul li a:hover {
    color: #1db954;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #111, #1db954);
    color: #fff;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
}

/* Section Styling */
.section {
    padding: 3rem 2rem;
    text-align: center;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #111;
}

.art-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.art-grid div {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.art-grid img {
	width: 500px;
	height: auto;
}

/* Magazine Styling */
.magazine-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.magazine-content div {
    width: 300px;
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.magazine-content img {
	width: 500px;
	height: auto;	
}

/* Forum Styling */
.forum-content {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #111;
    color: #fff;
    font-size: 0.9rem;
    margin-top: 2rem;
}

.fashion img {
position: absolute;
top: 300px;
left: 10px;
width: calc(100vw * 0.2);
height: auto;
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.6);
}

.television-content img {
	width:500px;
	height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    header nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 1.8rem;
    }
}

