/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: url('CITYSCAPE.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  backdrop-filter: blur(0px);
  padding: 35px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

header h1 {
  color: white;
  font-size: 25px;
}

/* Navigation Buttons */
nav {
  display: flex;
  gap: 15px;
}

.nav-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-btn:hover {
  opacity: 0.1;
}

.dark-mode-toggle {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: white;
  transition: color 0.3s ease;
}

.dark-mode-toggle:hover {
  color: #ffc107;
}




main {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    color: white;
}

.hero {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(0px);
    animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1.6em;
    font-weight: bold;
    color: white;
    border: 2px solid white;
    background: transparent;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.btn:hover {
    backdrop-filter: blur(200px);
    transform: scale(1.05);
}

footer {
  background: transparent;
  backdrop-filter: blur(3px);
  color: white;
  text-align: center;
  padding: 15px;
  position: fixed;
  bottom: 0;
  width: 100%;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    

  header {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  backdrop-filter: blur(0px);
  padding: 35px 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

header h1 {
  color: white;
  font-size: 20px;
}

/* Navigation Buttons */
nav {
  display: flex;
  gap: 10px;
}

.nav-btn {
  text-decoration: none;
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 12px 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}


    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }
}
