@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-size: 100%;
}

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

/* Dark overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0; /* shorthand for top: 0; right: 0; bottom: 0; left: 0 */
  background: rgba(0, 0, 0, 0.6); /* darkness level (0 = transparent, 1 = black) */
  z-index: 1;
}

/* Content on top of overlay */
.hero-content {
  position: relative;
  z-index: 2; /* places it above the overlay */
  padding: 40px;
}

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

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

/* Hero section */
.hero {
    background-image: url('img/OGB.avif'); 
    background-size: cover;
    background-repeat: repeat;
    background-position: 50% 10%;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    color: white;
    position: relative;
    text-align: center;
}



.hero-content h1 {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.2;
  padding-bottom: 5%;
}

.hero-content h2 {
  font-size: 1.3rem;
  line-height: 2;
  font-weight: 300;
}







.hero img {
  margin-top: 20px;
  width: 30%;
  height: auto;
  padding-right: 5%;
  padding-left: 5%;
}

/*Grid design*/
.design-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  padding: 60px 40px;
  background-color: #1a1a1a;
}

.grid-box {
  text-align: center;
  background-color: #111;
  padding: 20px;
  border: 1px solid #333;
  border-radius: 10px;
}

.grid-box h2 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.grid-box img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
} 



.grid-box img {
  transition: transform 0.3s ease;
}

.grid-box img:hover {
  transform: scale(1.1); /* Zoom in by 10% */
}



/* Mobile Responsive */
@media (max-width: 768px) {
  .design-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}


/* Footer section */
.site-footer {
    background-color: #111114;
    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-column,
.footer-columnRight {
    flex: 1 1 300px;
    min-width: 220px;
    line-height: 1.6;
}

/* Align right column content */
.footer-columnRight {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

/* 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;
}

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

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

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

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

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