
body {
    margin: 0;
    padding: 0;
    background: #f5f1e6 url('images/paper.png');
    background-size: cover;
    font-family: "Courier New", Courier, monospace;
    color: #000;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 40px;
}

.header-img {
    display: block;
    margin: 0 auto 20px auto;
    width: 300px;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

nav {
    text-align: center;
    margin-top: 20px;
    font-size: 1.2rem;
}

nav a {
    color: black;
    text-decoration: none;
}

nav span {
    margin: 0 10px;
    font-weight: bold;
}

/* Page headings */
h1, h2 {
    text-align: center;
    margin-top: 10px;
}

/* About layout */
.about-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.about-wrapper p {
    flex: 1;
    line-height: 1.6;
}
.about-wrapper img {
    width: 250px;
    height: 300px;
    object-fit: cover;
    background: #ccc;
}

/* Music grid */
.album-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.album {
    border: 1px solid #000;
    padding: 10px;
    cursor: pointer;
}
.album img {
    width: 200px;
    height: 200px;
    object-fit: cover; /* Ensures the image fills the box without stretching */
    display: block;
    margin-bottom: 10px; /* Adds some space between the image and the title */
}
/* Blog list */
.post {
    margin-bottom: 25px;
}
.post a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

/* Ventures */
.ventures-list img {
    width: 120px;
    display: block;
    margin-top: 10px;
}
.footer-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    opacity: 0.8;
}
/* Centered circular layout for home page */
.index-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
}

/* Wrapper defines the orbit area */
.orbit-wrapper {
    position: relative;
    width: 450px;   /* adjust as desired */
    height: 450px;
    margin: auto;
}

/* Image centered */
.orbit-wrapper .header-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 240px;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* Base style for orbit items */
.orbit-item {
    position: absolute;
    width: 140px;
    text-align: center;
    font-size: 1.1rem;
    color: black;
    text-decoration: none;
}

/* Perfect 72° spacing (360/5) */
.orbit-1 {
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0);
}

.orbit-2 {
    top: 20%;
    left: 90%;
    transform: translate(-50%, -50%);
}

.orbit-3 {
    top: 70%;
    left: 80%;
    transform: translate(-50%, -50%);
}

.orbit-4 {
    top: 70%;
    left: 20%;
    transform: translate(-50%, -50%);
}

.orbit-5 {
    top: 20%;
    left: 10%;
    transform: translate(-50%, -50%);
}
.lang-toggle {
    position: fixed;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 8px 14px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.lang-toggle:hover {
    background: rgba(0,0,0,0.85);
}

