/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
  margin: 0;
  padding: 0;
}

#container {
  position: fixed;
  touch-action: none;
}

@font-face {
    font-family: 'Tecno'; /* You can name it anything */
    src: url('fonts/EthnocentricRgIt.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


.logo img {
    height: 120px; /* Try 30px or 20px for even smaller */
    width: auto;  /* Keeps the aspect ratio intact */
}


body {
    background: #000;
    color: #fff;
    overflow-x: hidden;
    font-family: 'Tecno', sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 100;
}

header .logo-placeholder {
    font-family: 'UnifrakturCook', cursive;
    font-size: 28px;
    color: #e63946;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

header nav ul li a:hover {
    color: #e63946;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero .overlay {
    position: absolute;
    z-index: 2;
}

.hero h1 {
    font-family: 'Tecno', cursive;
    font-size: 60px;
    color: #e63946;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    color: #fff;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

section {
    padding: 100px 50px;
}

h2 {
    font-family: 'Tecno', cursive;
    font-size: 40px;
    color: #e63946;
    text-align: center;
    margin-bottom: 50px;
}

.event-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: rgba(255,255,255,0.05);
    border: 1px solid #e63946;
    padding: 20px;
    width: 250px;
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    background: rgba(230, 57, 70,0.2);
}

.gallery-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery-container img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border: 2px solid #e63946;
    transition: 0.3s;
}

.gallery-container img:hover {
    transform: scale(1.05);
}

footer {
    background: #111;
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
}

footer a {
    color: #e63946;
    text-decoration: none;
}