@font-face {
    font-family: 'Ahkio-Bold';
    src: url('webfonts/ahkio-bold.woff2') format('woff2'),
         url('webfonts/ahkio-bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; /* Ensure all content is centered horizontally */
    position: relative;
    overflow: hidden; /* Ensure the background covers the full viewport */
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/440690188_1637588713664689_5357598970574613510_n.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Ensure the background image covers the entire viewport */
    z-index: -1;
}

.container {
    text-align: center;
    width: 100%; /* Ensure the container spans the full width */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1; /* Ensure the content stays above the background */
}

.logo {
    font-family: 'Ahkio-Bold', Helvetica, Arial, sans-serif;
    z-index: 1; /* Ensure the logo stays above the background */
}

.logo h1 {
    margin: 0;
    font-size: 5rem; /* Increased default font size */
    color: rgb(204, 204, 204); /* Changed logo color */
    text-transform: uppercase;
}

.logo .trademark {
    font-size: 0.5em;
    vertical-align: super;
    margin-left: 0.2em;
}

.menu {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2; /* Ensure the menu stays above the background */
}

.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.hamRotate.active {
    transform: rotate(45deg);
}
.hamRotate180.active {
    transform: rotate(180deg);
}
.line {
    fill:none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke:#000;
    stroke-width:5.5;
    stroke-linecap:round;
}

.ham6 .top {
    stroke-dasharray: 40 172;
}
.ham6 .middle {
    stroke-dasharray: 40 111;
}
.ham6 .bottom {
    stroke-dasharray: 40 172;
}
.ham6.active .top {
    stroke-dashoffset: -132px;
}
.ham6.active .middle {
    stroke-dashoffset: -71px;
}
.ham6.active .bottom {
    stroke-dashoffset: -132px;
}

.dropdown-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 80px; /* Initial position to avoid shifting */
    right: 0; /* Align right edge with the hamburger menu */
    font-family: 'Open Sans', sans-serif;
    text-align: right; /* Align text to the right */
    z-index: 3; /* Ensure the dropdown menu stays above everything else */
    transition: visibility 0s, opacity 0.3s ease-in-out; /* Smooth transition */
}

.dropdown-menu.show {
    visibility: visible;
    opacity: 1; /* Fade in */
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.5rem; /* Increased font size */
    text-transform: uppercase; /* Made text uppercase */
}

.dropdown-menu a:hover {
    color: #555; /* Dark grey color on hover */
}

/* Source Annotation */
.source {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 0.8rem;
    color: #1a1a1a; /* Made the text a bit darker */
    font-family: 'Rajdhani', sans-serif; /* Use the new font here */
    z-index: 1; /* Ensure the source text stays above the background */
}

.source a {
    color: #1a1a1a; /* Made the text a bit darker */
    text-decoration: none;
}

.source a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (min-width: 768px) {
    .logo h1 {
        font-size: 7rem; /* Increased tablet font size */
    }
}

@media (min-width: 1024px) {
    .logo h1 {
        font-size: 9rem; /* Increased desktop font size */
    }
}
