/* 1. Body Styles */
body {
    background-image: url('pics/rb.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed; /* or scroll */
    background-size: cover; /* or auto */
    background-color: #000000;
    
    /* Font: */
    font-family: 'Segoe UI','Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.85em;
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
    padding: 0;

}

.absolute-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    background: url("/pics/rb.png");
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}


.title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.fog {
  position: relative;
  height: 100vh;
  width: 100%;
  background: #fff;
}

.fog-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.fog-img {
  position: absolute;
  height: 100vh;
  width: 300vw;
  z-index: 2;
}

.fog-img-first {
  background: url("../img/fog-1.png");
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
  animation: marquee 45s linear infinite;
}

.fog-img-second {
  background: url("../img/fog-2.png");
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-200vw, 0, 0);
  }
}


    
    
/* 1.5. WHITE Outer Page Wrapper for the 'Floating' Effect' */
.page-wrapper {
    max-width: 700px; 
    margin: 40px auto; 
    background-color: #FFFFFF; 
    border-radius: 50px; 
    padding: 20px; 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative; 
    z-index: 3; /* Set higher than the fog-img z-index of 2 */
    
}


/* 2. GREEN Container for Centered Layout */
.container {
    max-width: 600px;
    margin-top: 0;
    margin-bottom: 0;
    margin: 0 auto;
    padding: 20px 20px;
    text-align: left;
    
    /* Rounded Corners */
    background-color: #EDFEFF; 
    border-radius: 50px;       /* Rounded corner */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border: 5px solid #FF0F00; /* Red border */
}


.title-image {
    max-width: 350px; 
    width: 100%; 
    height: auto;
    display: block;
    margin: 0 auto 0 auto;
    object-fit: cover; 
}

.profile-image {
    max-width: 600px; 
    width: 100%; 
    height: auto;
    display: block;
    margin: 0 auto 0 auto;
    object-fit: cover; 
}


/* 2.5. Column Layout (FLOAT BACKUP) */
.col-left, .col-right {
    float: left;
    width: 48%; 
    padding: 0 1%; 
    text-align: left; 
}

.row::after {
    content: "";
    display: table;
    clear: both;
}

/* 3. Typography Styles */


    
h1 {
    font-family: 'Borel', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 3.5em;
    font-weight: 700;
    color: #FF0F00; 
    margin-top: 0;    /* Space above the title */
    margin-bottom: 0;  /* Reduced space between title and links */  
    margin: 0;
    text-align: center;
}

h2 {
    font-family: 'Sacramento', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
    color: #FF0F00;
    text-align: left; 
}

p {
    margin-bottom: 0;
}


/* 4. Link/Accent Styles */
a {
    font-family: 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.85em;
    font-weight: BOLD;
    margin-top: 0;
    margin-bottom: 0;
    color: #000000;
    text-decoration: none; /* Remove default underline */
    transition: color 0.3s ease-in-out, border-bottom-color 0.3s ease-in-out;
}

a:hover {
    color: #7b7069; 
    border-bottom-color: #7b7069;
}
 

/* 5. Navigation/List Style */
.header-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 10px;  
    margin-top: 0;  
    margin-bottom: 0; /* Add some space below the links */
}

/* New Rule to Add the Divider */
.header-links li {
    display: flex; 
    align-items: center;
}

.header-links li::before {
    content: '★'; 
    color: #FF0F00;
    font-size: 1.0em;
    font-weight: 700;
    margin-right: 10px;
}

/* Remove the divider from the first list item */
.header-links li:first-child::before {
    content: none;
    margin-right: 0;
}

/* 6. Social Media Icons */
.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 10px; 
    margin-top: 40px; 
    margin-bottom: 20px;
}

/* 1. Target the SVG element and force a size */
.social-links a svg {
    width: 32px;
    height: 32px;
    display: block;
    margin: 0 auto;
    fill: #FF0F00;
    transition: fill 0.3s;
}

/* 2. Style the Link Label (the text next to the icon) */
.social-links a .label {
    display: none; /* Hide the text label for a cleaner icon-only look */
}

/* 3. Hover Effect for the SVG Icon */
.social-links a:hover svg {
    fill: #4c3f58; /* Change color on hover */
}

