@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

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

body {
    font-family: 'Herotica', sans-serif;
    margin: 0;
    background-color: #111;
    color: white;
    background-image: url('...'); 
    background-size: 100%;
}

header {
  background-color: #121212;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 40px;
  font-weight:normal;
  height:60px;
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: "open sans", sans-serif;
}

.header {
    font-family: "poppins-extralight", "poppins", sans-serif;
    font-size: 60px;
    line-height: 1.4em;
    font-weight: extralight;
}

.bullets h2 {
    margin:0; 
    padding:0; 
    font-family: "poppins-extralight", "poppins", sans-serif; 
    color:#ffffff; 
    font-size:30px;
    line-height:36px;
    align-items: center;

}
.bullets {
    margin:0; 
    padding:0; 
    font-family: "poppins-extralight", "poppins", sans-serif;
    color:#ffffff; 
    font-size:20px;
    line-height:26px;
    align-items: center;
    list-style-type: disc;
}

li {
    align-items: center;
}

/* Logo text */
.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-top: 10px;
    margin-bottom: 0;
    font-family: "barlow-medium", "barlow", sans-serif;
}

/* Navigation menu */
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-top: 10px;
    margin-bottom: 0;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.2s;
}

nav ul li a:hover,
nav ul li a:focus,
nav ul li a.active {
    color: #f25f5c; 
}

.center {
    text-align: center;
}

h1.big {
    line-height: 2;
    
    }
/* sized spaces */
bbr {
    line-height: 1000%;
}
sbr {
    line-height: 10%;
}

selector {
  text-align: revert;
}
ul {
  list-style-position: inside;
  text-align: center;
}
/* Footer section */
.site-footer {
    background-color: #121212;
    color: #ccc;
    padding: 50px 40px 20px;
    font-size: 0.95rem;
    text-align: left;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.footer-logo {
    font-family: "barlow-medium", "barlow", sans-serif;
}

.footer-column,
.footer-columnRight {
    flex: 1 1 300px;
    min-width: 220px;
    line-height: 1.6;
    /*font-family: "open sans", sans-serif;*/
}

/* Align right column content */
.footer-columnRight {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    font-family: "open sans", sans-serif;
}

/* Social icons row */
.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

/* Footer text styles */
.footer-column h3,
.footer-column h4 {
    color: #fff;
    margin-bottom: 10px;
    font-weight: normal;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-column a, 
.footer-column p {
    text-decoration: none;
    color: #a2a2a2;
    transition: color 0.3s;
    font-family: "open sans", sans-serif;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #777;
}

/* Responsive behavior */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-columnRight {
        align-items: center;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

.dropdown-menu {
  margin:0;
}

/* Dropdown container */
nav ul li.dropdown {
  position: relative;
  margin: 0;
  padding: 0;
}

/* Hide dropdown content by default */
nav ul li .dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  background-color: #121212;
  list-style: none;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 1001;
  text-align: right;
  height: 85.5;
}

.dropdown-menu::before {
  display:block;
  content:'';
  background-color: transparent;
  color: transparent;
  height:15px;
  padding: 0;
  margin: 0;
  z-index: 1000;
}

/* Style dropdown links */
nav ul li .dropdown-menu li a {
  display: block;
  padding: 5px 15px;
  white-space: nowrap;
  text-decoration: none;
  color:white;
}

/* Show dropdown on hover */
nav ul li.dropdown:hover .dropdown-menu {
  display: block;
}

/* Optional: Hover effect for dropdown items */
nav ul li .dropdown-menu li a:hover {
  color: #f25f5c;
}