
/*
 * Are you here to steal my CSS? Well, you can't. Because I'm giving it to you for free. Please enjoy it!
 */

/* 1. Google Fonts */
@import
url( 'https://fonts.googleapis.com/css2?family=Poppins&amp;family=Borel&amp;family=Sacranemto&amp;display=swap' );


/* 1. Body Styles */
body {
  background-image: url('https://alisaaltinay.neocities.org/pics/bg3.jpg');
  background-repeat: repeat;
  background-position: center center;
  background-attachment: fixed; /* or scroll */
  background-size: contain; /* or auto, cover, contain */
  background-color: #000000;
     
/* Font: */
    font-family: 'Poppins','Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.85em;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.6;
    margin: 0;
    padding: 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;
    
}


/* 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; /* #FFC2E8 #FED5FF #EDFEFF */
    border-radius: 50px;       /* Rounded corner */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border: 5px solid #FF0F00; /* Red border */  /* #FF1FA9 #FF0F00 */
}


.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; /* #FF1FA9 #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; /* #FF1FA9 #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 */
    
}

/* 4.1 Special links */
.special {
  color: #2d0afa;
  font-size: 1em;
  font-weight: BOLD;
}




a:hover {
    color: #7b7069; /* Slightly lighter/more muted color on hover */
    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; /* #FF1FA9 #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 */
}