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

/* Reset margin and padding globally */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Herotica', sans-serif;
    margin: 0;
    background-color:  rgb(38, 38, 37);
    color: white;
    background-image: url('img/currentLogo.png'); /* replace with your file path */
    background-size: 200px;
    background-repeat: space;
}

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

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

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

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

.menu-bar ul li a:hover,
.menu-bar ul li a:focus,
.menu-bar ul li a.active {
    color: #f25f5c; 
}

/* Hero section */
.hero {
    /*background-image: url('img/current.png');*/
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 40px;
    color: white;
    position: relative;
}

/* Optional: dark overlay to improve text contrast */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

/* Text content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 80px;
    line-height: 1.2em;
    margin-bottom: 10px;
    font-weight: normal;
    font-family: "poppins-extralight", 'poppins', sans-serif;
    font-style: normal;
}

.hero-content p {
    font-size: 30px;
    margin-bottom: 60px;
    font-family: "open sans", sans-serif;
    font-style: normal;
}

/* Call to action button */
.cta-button {
    background-color: #f25f5c;
    color: black;
    padding: 18px 24px;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-family: "open sans", sans-serif;
    transition: background-color 0.3s ease, color 0.3s;
}

.cta-button:hover {
    background-color: black;
    border: 1px solid white;
    color: white;
    padding: 17px 23px;
}

/* Footer section */
.site-footer {
    background-color: #121212;
    color: #ccc;
    padding: 50px 40px 20px;
    font-size: 0.95rem;
}

.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;
}
