/*
Theme Name: Koiraparkki Theme
Theme URI: 
Author: Antigravity
Author URI: 
Description: A fully responsive dark block theme created for Koiraparkki with an advanced scrollytelling hero slider.
Requires at least: 6.2
Tested up to: 6.4
Requires PHP: 7.4
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: koiraparkki
Tags: dark, custom-colors, custom-menu, full-site-editing, block-theme
*/

/* Reset some default stylings */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Global full screen menu */
.custom-fullscreen-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    color: #fff;
    z-index: 9999;

    /* Sliding in from right top corner */
    clip-path: circle(0% at 100% 0%);
    transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.custom-fullscreen-menu.is-open {
    clip-path: circle(150% at 100% 0%);
}

.custom-fullscreen-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: #ff0000;
    /* Red text */
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.custom-fullscreen-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.custom-fullscreen-menu-links li {
    margin: 1.5rem 0;
}

.custom-fullscreen-menu-links a {
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.custom-fullscreen-menu-links a:hover {
    color: #c0c0c0;
}