:root {
  --accent: #87274d;
  --accent2: #cf2784;
  --bg:#050611 ;
  --card-bg: #0c0e21;
  --text: #bbeeff;
  --muted: #a4b9b6;
  --border: #00d6d6;
  --card-title: #444;
  --user-col:#5cebf5;
  --text-shadow: #00abe5 1px 0 5px;
  /* BANNER */
  --banner-image: url("assets/themes/oracle/banner1.gif");
  /* LEFT SIDE BAR DECOR IMAGE */
  --sidebar-image: url("assets/themes/oracle/band-neon.jpg");
  /* RIGHT SIDE BAR DECOR IMAGE */
  --rightbar-image: url("assets/themes/oracle/me-fr.jpg");
  /* AVATAR IMAGE */
  --avatar-image: url("avatar.jpg"); 

  --img-wishlist: url("theme-img/oracle/wishlist.jpg");
  --img-artbuddies: url("theme-img/oracle/art-buddy.jpg");
  --img-unizine: url("theme-img/oracle/clowds.png");
  --img-coding: url("theme-img/oracle/coding.jpg");
  
}

/* Galaxy Theme */
[data-theme="galaxy"] {
  --accent: #9d4edd;
  --bg: #0a0e27;
  --card-bg: #1a1f3a;
  --text: #e0e0e0;
  --muted: #a0a0c0;
  --border: #2d3250;
  --card-title: #e0e0e0;
  --user-col:#e78668;
  --banner-image: url("banner image.jpg");
  --sidebar-image: url("me-fr.jpg");
  --avatar-image: url("me-fr.jpg"); /* or a separate avatar file */
  --rightbar-image: url("is this play about us.jpg");
  --img-wishlist: url("wishlist.jpg");
  --img-artbuddies: url("art buddy.jpg");
  --img-unizine: url("clowds.png");
  --img-coding: url("coding (3).jpg");
}

/* Mermaid Theme */
[data-theme="mermaid"] {
  --accent: #4ecdc4;
  --bg: #e8f9f6;
  --card-bg: #ffffff;
  --text: #2c3e50;
  --muted: #5a7c8c;
  --border: #b8e6e1;
  --card-title: #2c3e50;
  --user-col:#e78668;
  --banner-image: url("banner image.jpg");
  --sidebar-image: url("me-fr.jpg");
  --avatar-image: url("me-fr.jpg"); /* or a separate avatar file */
  --rightbar-image: url("is this play about us.jpg");
  --img-wishlist: url("wishlist.jpg");
  --img-artbuddies: url("art buddy.jpg");
  --img-unizine: url("clowds.png");
  --img-coding: url("coding (3).jpg");
}

/* Classy Theme */
[data-theme="classy"] {
  --accent: #d4af37;
  --bg: #f5f5f0;
  --card-bg: #ffffff;
  --text: #2b2b2b;
  --muted: #666666;
  --border: #d4d4d0;
  --card-title: #2b2b2b;
  --user-col:#e78668;
  --banner-image: url("banner image.jpg");
  --sidebar-image: url("me-fr.jpg");
  --avatar-image: url("me-fr.jpg"); /* or a separate avatar file */
  --rightbar-image: url("is this play about us.jpg");
  --img-wishlist: url("wishlist.jpg");
  --img-artbuddies: url("art buddy.jpg");
  --img-unizine: url("clowds.png");
  --img-coding: url("coding (3).jpg");
}

/* Punk Rock Theme */
[data-theme="punk"] {
  --accent: #ff1744;
  --bg: #1a1a1a;
  --card-bg: #2d2d2d;
  --text: #ffffff;
  --muted: #b0b0b0;
  --border: #404040;
  --card-title: #ffffff;
  --user-col:#e78668;
  --banner-image: url("banner image.jpg");
  --sidebar-image: url("me-fr.jpg");
  --avatar-image: url("me-fr.jpg"); /* or a separate avatar file */
  --rightbar-image: url("is this play about us.jpg");
  --img-wishlist: url("wishlist.jpg");
  --img-artbuddies: url("art buddy.jpg");
  --img-unizine: url("clowds.png");
  --img-coding: url("coding (3).jpg");
}

/* Weird Kid Theme */
[data-theme="weirdkid"] {
  --accent: #a0ff00;
  --bg: #ffe6ff;
  --card-bg: #fff0b3;
  --text: #4d004d;
  --muted: #806080;
  --border: #ffb3ff;
  --card-title: #4d004d;
  --user-col:#e78668;
  --banner-image: url("banner image.jpg");
  --sidebar-image: url("me-fr.jpg");
  --avatar-image: url("me-fr.jpg"); /* or a separate avatar file */
  --rightbar-image: url("is this play about us.jpg");
  --img-wishlist: url("wishlist.jpg");
  --img-artbuddies: url("art buddy.jpg");
  --img-unizine: url("clowds.png");
  --img-coding: url("coding (3).jpg");
}
  

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  transition: background 0.3s, color 0.3s;
}

/* Banner */
header {
  background: var(--accent) url('banner image.jpg') repeat;
  background-image:
    linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)),
    var(--banner-image);
  height: 150px;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

/* Layout */
.container {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 20px;
  flex: 1;
}

/* Sidebars */
nav {
  background: var(--card-bg);
  border-right: 1px solid var(--border);
  padding: 20px;
}

nav.right {
  border-right: none;
  border-left: 1px solid var(--border);
}

nav ul {
  list-style: none;
  padding: 0;
}

nav li {
  margin: 10px 0;
}

nav a {
  text-decoration: none;
  color: var(--text);
  padding: 10px;
  display: block;
  border-radius: 3px;
  transition: background 0.3s;
  border-style: solid;
  border-width: 1px;
}

nav img {
  width: 150px;
  border-radius: 4px;
}

nav a:hover {
  background: var(--accent2);
  color: #00caca;
}
/* Sidebar photo (replaces nav img) */
.sidebar-photo,
.right-photo{
  width: 150px;
  height: 150px;          /* pick your size */
  border-radius: 4px;
  background-image: var(--rightbar-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.left-photo{
    margin-bottom: 10px;
  width: 150px;
  height: 180px;          /* pick your size */
  border-radius: 4px;
  background-image: var(--sidebar-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Sidebar sections */
.sidebar-section {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.sidebar-section:last-of-type {
  border-bottom: none;
}

/* Section title links */
.sidebar-section h4 {
  margin: 0 0 8px 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: var(--accent);
}

.sidebar-section h4 a {
  text-decoration: none;
  color: var(--muted);
  padding: 6px 8px;
  display: inline-block;
  border-radius: 3px;
  transition: background 0.3s, color 0.3s;
}

.sidebar-section h4 a:hover {
  background: var(--accent);
  color: #fff;
}

/* Main Content */
main {
  padding: 20px;
}

.section-title {
  background: var(--accent);
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 10px;
  margin: 15px 0 20px 0;
  border-radius: 3px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  object-fit: cover;
}

.card-content {
  padding: 10px;
}

.card-title {
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--card-title);
}

.card-desc {
  font-size: 0.9rem;
  color: var(--muted);
}

a {
  text-decoration: none;
}

/* Profile Card */
.profile-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 20px;
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;

}

/* Avatar 
.avatar {
  width: 96px;
  height: 96px;
  border-radius: 9999px;
  flex: 0 0 96px;
  overflow: hidden;
  border: 4px solid rgba(255,182,193,0.4);
  box-shadow: 0 6px 18px rgba(247,140,160,0.25);
  background: linear-gradient(135deg,#ffe4e1,#fff0f5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}*/
/* Avatar becomes a bg image */
.avatar{
  width:200px;
  height:200px;
  border-radius:9999px;
  background-color: #46bea4;
  border:4px solid var(--avatar-border);
  box-shadow: var(--avatar-shadow);
  background-image: var(--avatar-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Card media block (replaces .card img) */
.card-media{
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Map each card-media[data-img="..."] to a CSS variable */
.card-media[data-img="wishlist"]{ background-image: var(--img-wishlist); }
.card-media[data-img="artbuddies"]{ background-image: var(--img-artbuddies); }
.card-media[data-img="unizine"]{ background-image: var(--img-unizine); }
.card-media[data-img="coding"]{ background-image: var(--img-coding); }
/* Text column */
.meta {
  flex: 1;
  min-width: 0;
}

.username {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: var(--user-col);
}

.sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 4px 0;
}

/* Theme Picker Styling */
#theme {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--bg);
  color: var(--text);
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.3s;
}

#theme:hover {
  border-color: var(--accent);
}

#theme:focus {
  outline: none;
  border-color: var(--accent);
}

/* Responsive */
@media (max-width:420px) {
  .profile-card {
    padding: 14px;
    gap: 12px;
  }
  .avatar {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
  }
}
                .float {
                  animation-name: float;
                  animation-duration: 1.5s;
                  animation-iteration-count: infinite;
                  animation-direction: alternate; 
                  animation-timing-function: cubic-bezier(.43,.01,.56,.98);
                }
                
                @keyframes float {
                  0%   {top:100px;}
                  100% {top:115px; rotate: 2deg;}
                }

                .float1 {
                  animation-name: float1;
                  animation-duration: 1.5s;
                  animation-iteration-count: infinite;
                  animation-direction: alternate; 
                  animation-timing-function: cubic-bezier(.43,.01,.56,.98);
                }
                
                @keyframes float1 {
                  0%   {top:100px;}
                  100%  {top:112px; rotate: 2deg;}
                }

                .float2 {
                  animation-name: float2;
                  animation-duration: 1.5s;
                  animation-iteration-count: infinite;
                  animation-direction: alternate; 
                  animation-timing-function: cubic-bezier(.43,.01,.56,.98);
                }
                
                @keyframes float2 {
                  0%   {top:100px;}
                  100% {top:110px; rotate: 2deg;}
                }

                .float3 {
                  animation-name: float3;
                  animation-duration: 3s;
                  animation-iteration-count: infinite;
                  animation-timing-function: cubic-bezier(.43,.01,.56,.98)
                }
                
                @keyframes float3 {
                  0%   {top:100px;}
                  50%  {top:110px;}
                  100% {top:100px;}
                }

.text-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s;
  margin-bottom: 10px;
  text-align: center;
  text-shadow: var(--text-shadow);
  padding: 50px;
}
 .welcome-msg{
  margin: 20px;
  width: 60%;
 }


.scroll-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s;
  text-align: center;
  text-shadow: var(--text-shadow);
  overflow:auto;
  background-color:var(--card-bg);
  color:white;
  font-family:sans-serif;
  padding:10px;
  max-height: 250px;
}
/* footer */

.footer {
  margin: 0;
  padding: 5px 0;
  text-align: center;
  line-height:150%;
}
.footer p {
  margin: 0;
  padding: 0;
}





