body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0c1111;
    text-align: center;
    padding-top: 80px;
	z-index: 1;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
	overflow-x: hidden;
}

/* Wrapper ensures footer is pushed to the bottom */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/* HEADER - FIXED TO THE TOP */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 20px 30px; /* Adjust padding for better spacing */
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

/* LOGO - ENSURE PROPER ALIGNMENT */
.logo {
    display: flex;
    align-items: center; /* Ensures the logo is vertically centered */
    height: 50px; /* Match nav height */
}

.logo img {
    height: 35px; /* Adjust to match nav height */
    width: auto;
    display: block;
}


/* RESPONSIVE VIDEO EMBED */
.video-container {
    position: relative;
	padding-top: 9vh;
    width: 100%;
    max-width: 1200px; /* Matches header width */
    margin: 0 auto; /* Centers the video */
}

.video-container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 21 / 9; /* Ensures proper scaling */
}
.hero {
	padding-bottom: 20px;
  font-size: 120px;
  font-weight: bolder;
  font-style: italic;
  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #ECDFCC;
  position: relative;

  -webkit-text-fill-color: #ECDFCC;
  -webkit-text-stroke: 0px transparent;

  background: radial-gradient(
    circle 150px at var(--x, 50%) var(--y, 50%),
    transparent 0%,
    transparent 40%,
    #ECDFCC 60%
  );
  background-clip: text;
  -webkit-background-clip: text;
  transition: all 0.1s ease-out;
}



.hero.hover-effect {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #ECDFCC;
}



.read-more {
    margin: 20px;
    color: lightcoral;
    text-decoration: none;
}
.social-icons {
    margin-top: 2vh;
	padding-bottom: 11vh;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a img {
    width: 48px;
    height: 48px;
    transition: transform 0.2s ease, opacity 0.2s ease
}

.social-icons a img:hover {
    transform: scale(1.1);
    opacity: 0.9;
}
/* Desktop Navigation */
.nav-links {
    display: flex;
    align-items: center; /* Ensures text aligns with logo */
    gap: 20px;
}

/* NAVIGATION TEXT */
.nav-links a {
    text-decoration: none;
    color: #ECDFCC;
    font-size: 20px;
    font-weight: bold;
    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
}
/* Hover effect */
.nav-links a:hover {
    color: lightcoral; /* Change text color */
    transform: scale(1); /* Slightly enlarge */
}

/* HAMBURGER MENU - HIDDEN ON DESKTOP */
.hamburger-menu {
    display: none;
    position: relative;
    z-index: 110;
}

#hamburger-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    position: relative;
    z-index: 110;
	color: #ECDFCC;
}

/* FULLSCREEN MOBILE NAVIGATION */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1E201E;
    z-index: 50;
    display: none;
    flex-direction: column; /* Stack items vertically */
    align-items: center;
    justify-content: center;
}

.mobile-nav a {
    display: block;
    text-decoration: none;
    color: #ECDFCC;
    font-weight: bold;
    font-size: 44px;
    margin: 30px 0; /* Adds spacing between items */
}

/* HOVER EFFECT FOR MOBILE MENU */
.mobile-nav a:hover { /* Background color change */
    color: lightcoral; /* Change text color */
    transform: scale(1); /* Slightly enlarges */
}
/* Content grows to push the footer down */
.content {
    flex-grow: 1;
}

/* Footer - Stays at the bottom */
footer {
    width: 100%;
    text-align: center;
    color: #ECDFCC;
    font-size: 14px;
    padding: 10px 0;
    margin-top: auto;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 5vh;
    font-size: 14px;
    color: #ECDFCC;
    text-align: center;
    flex-wrap: wrap;
}

.footer-left {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 15px;
	font-weight: bold;
}

.footer-center {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-right {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-weight: bold;
    font-size: 15px;
}

/* RESPONSIVE FIX FOR MOBILE */
@media (max-width: 768px) {
	body {
		overflow-x: hidden;
	}
    header {
        padding: 15px 20px; /* Adjust padding for smaller screens */
    }
.mobile-nav {
    display: flex;
}
    .logo img {
        height: 30px; /* Reduce logo size for mobile */
		padding-left: 20px;
    }

    .nav-links {
        display: none; /* Hide normal navigation */
    }

    .hamburger-menu {
        display: block; /* Show hamburger menu */
		padding-right: 25px;
    }
    .video-container {
        max-width: 100%; /* Uses full screen width */
        padding: 1 10px; /* Adds a little side padding */
		padding-top: 10vh;
    }

    .video-container iframe {
        width: 100%;
        height: auto;
		padding: 2px;
		margin: 2px;
    }
    footer {
        font-size: 12px;
        padding: 10px 0;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
	.hero {
      font-size: 5vh;
}
	    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 6px; /* Lisää hieman tilaa rivien väliin */
    }

    .footer-left,
    .footer-center,
    .footer-right {
        font-size: 14px;
    }
}