@font-face {
  font-family: 'Geova';
  src: url('fonts/GeovaTrial-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Geova';
  src: url('fonts/GeovaTrial-ExtraBold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}


/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Geova', sans-serif;
    line-height: 1.6;
    color: #e4e4e4;
    background-color: #121212;
}

/* Navbar */
header {
    background: #1f1f1f;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 80px;
}

/* Left logo */
.navbar .logo {
    position: absolute;
    left: 20px;
    width: 100px;
    height: auto;
}

/* Right links */
.navbar .links {
    position: absolute;
    right: 20px;
    display: flex;
    gap: 20px;
}

/* Center text */
.navbar .title {
    text-align: center;
}

.navbar .links a {
    text-decoration: none;
    color: #e4e4e4;
    transition: color 0.3s ease;
}

.navbar .links a:hover {
    color: #9b5de5;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 1rem 0.1rem;
    color: #fff;
    overflow: visible;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    margin-top: 1rem;
    background: linear-gradient(135deg, #a30dd9, #6e0f9d);
    color: #fff;
    padding: 0.75rem 2rem;
    margin-bottom: 40px;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.5s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background: linear-gradient(135deg, #ce54fa, #c553fe);
    box-shadow: 0 0 10px #9b5de5, /* glow */
                0 0 5px rgba(0,0,0,0.8); /* dark outline */
    transform: translateY(-2px); /* subtle lift */
}

/* Sections */
section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: auto;
}

h2 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: #d3b0f4;
}

/* Projects */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.project-card {
    display: flex;
    align-items: center;  /* vertically center icon and text */
    gap: 1rem;            /* spacing between icon and text */
    background: #1f1f1f;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    border: 1px solid transparent;
    transition: transform 0.3s ease, background 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
}

.project-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;   /* makes it round */
    object-fit: contain;    /* ensures it fills circle */
    flex-shrink: 0;       /* prevents squishing */
}

.project-info h3 {
    margin: 0;
    color: #fff;
}

.project-info p {
    margin: 0.25rem 0 0;
    color: #ccc;
    font-size: 0.9rem;
}



.project-card:hover {
    transform: translateY(-5px);
    background: #2a2a2a;
    border: 1px solid #9b5de5;
    box-shadow: 0 4px 15px rgba(0,0,0,0.7); /* optional extra smooth effect */
}

/* Contact */
.contact {
    text-align: center;
}

/* Footer */
footer {
    text-align: center;
    padding: 1.5rem;
    background: #1f1f1f;
    color: #aaa;
    margin-top: 2rem;
}

.btn-play {
    display: inline-block;
    margin-top: 0.75rem;   /* adds space above button */
    padding: 0.4rem 0.9rem;
    background: linear-gradient(135deg, #0dd962, #5b9d0f);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    
}

.btn-play:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 8px rgba(0, 200, 83, 0.5);
    outline: 2px solid #005a26;   /* visible outline */
    outline-offset: 0.2px;          /* push it slightly outward */
}

.btn-info {
    display: inline-block;
    margin-top: 0.75rem;   /* adds space above button */
    padding: 0.4rem 0.9rem;
    background: linear-gradient(135deg, #07c7dc, #5996ff);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    
}

.btn-info:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 8px rgba(0, 153, 200, 0.5);
    outline: 2px solid #004a5a;   /* visible outline */
    outline-offset: 0.2px;          /* push it slightly outward */
}

.btn-play-unavail {
    display: inline-block;
    margin-top: 0.75rem;   /* adds space above button */
    padding: 0.4rem 0.9rem;
    background: linear-gradient(135deg, #c80000, #ff5959);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    
}

.btn-play-unavail:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 8px rgba(200, 0, 0, 0.5);
    outline: 2px solid #5a0000;   /* visible outline */
    outline-offset: 0.2px;          /* push it slightly outward */
}

.about {
    text-align: center;
}

.connections {
    text-align: center;
    padding: 5px;
    font-size: 40px;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.connections a {
    text-decoration: none;
    color: #be99eb;
}

.about-slideshow-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.about {
  flex: 1;
  max-width: 600px;
}

.slideshow {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;    /* stack children vertically */
  align-items: center;       /* center horizontally */
}

.slideshow img {
  width: 100%;
  margin-top: 30px;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  opacity: 1; 
  transition: opacity 0.8s ease-out;
}


.dots-container {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dots-container .dot {
  width: 14px;
  height: 14px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dots-container .dot.active {
  background-color: #7b3fbf; /* Active dot color */
  box-shadow: 0 0 6px #7b3fbf;
}

.about-game {
  max-width: 600px;
  margin: -100px auto 0;  
  line-height: 1.6;
  font-size: 16px;
  color: #ddd;
  text-align: center;
  padding: 30px;
}

.about-section {
    text-align: center;
}

.screenshots {
  flex: 1 1 40%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.screenshots img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.screenshots img:hover {
  transform: scale(1.01);
}

@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
  }

  .screenshots {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

.offers-section {
    display: block;
    text-align: center;
    padding: 15px;
}

.glide-home-page {
  background-image: url(assets/checker.png);
  background-blend-mode: overlay;
}

.GlideHomeAbout {
  box-shadow: 0 0 50px #ffffff42; 
  margin-top: 40px;
  border: 1px solid #646161;
  box-sizing: border-box;     
  border-radius: 18px;
  background-color: #121212c5;
}

.deep-clean-homepage {
  background-image: url(assets/bubbles.png);
  background-repeat: repeat;
}

.homepage {
  background-image: url(assets/Mosai.png);
  background-size: cover;
}

.skills {
  background-image: url(assets/Mosai.png);
  background-size: contain;
}

.tod-homepage {
  background-image: url(assets/BusBG.png);
  background-size: contain;
}

.sp-homepage {
  background-image: url(assets/SPBG.png);
  background-size: cover;
}

.TEHLBG {
  background-image: url(assets/TEHLBG.png);
  background-repeat: repeat;

}