* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  main {
    text-align: center;
  }
  html {
    scroll-behavior: smooth;
}
.irish-grover-regular {
    font-family: "Irish Grover", system-ui;
    font-weight: 400px;
    font-size: 20px;
    font-style: normal;
    color: palevioletred;
  }
  .irish-grover-regulare {
    font-family: "Irish Grover", system-ui;
    font-weight: 400px;
    font-size: 35px;
    font-style: normal;
    color: rgb(153, 1, 153);
  }
header a.active {
    background-color: #00000000;
    color: rgb(255, 0, 0);
    margin: 0px auto;
  }

  body {
    background-color: #1a1a1a;
    color: #f4f4f4;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }
  /* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    background-color: #1c1c1c;
    color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid purple;
  }
  
  .navbar .logo {
    font-size: 32px;
    font-family: 'UnifrakturCook', cursive;
    color: purple;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
  }
  
  .navbar nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
  }
  
  .navbar nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    position: relative;
  }
  
  .navbar nav ul li a:hover {
    color: purple;
  }
  /* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: url('https://images.alphacoders.com/655/655516.jpg') no-repeat center center/cover;
    transition: background-image 1s ease-in-out;
  }
  
  .hero-content {
    z-index: 2;
    position: relative;
    padding: 20px;
    color: #fff;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.8);
  }
  
  .hero h1 {
    font-size: 64px;
    font-family: 'UnifrakturCook', cursive;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-out;
    text-transform: uppercase;
    text-shadow: 0px 0px 20px purple;
  }
  
  .hero p {
    font-size: 20px;
    margin-bottom: 30px;
    animation: fadeIn 3s ease-out;
  }
  
  .cta-btn {
    background-color: purple;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    animation: slideIn 2s ease-out;
  }
  
  .cta-btn:hover {
    background-color: #660033;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
  }
  
  @keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
    
  }
  
  @keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-50%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
    
  }
/* About Section */
.section {
    padding: 80px 20px;
    background-color: #222;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    position: relative;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }