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

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

/* Header Styling */
header {
    background-color: #2d6a4f; /* Dark green header */
    color: white;
    padding: 10px 0;
    text-align: center;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #ffd166; /* Yellow hover effect */
}

/* Main Content Container */
.content-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    text-align: center;
    background-color: #ffffff; /* White card background */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Heading Styling */
h1 {
    font-size: 36px;
    color: #2d6a4f; /* Dark green text */
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Video Styling */
.video-wrapper {
    margin: 20px 0;
}

.hobby-video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Description Styling */
.description {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Back to Home Button */
.back-home {
    display: inline-block;
    text-decoration: none;
    background-color: #2d6a4f; /* Dark green */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
}

.back-home:hover {
    background-color: #40916c; /* Lighter green hover effect */
    transform: translateY(-3px);
}
