* {
    cursor: url('../cursors/default-cursor.png'), default;
}

body {
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
    cursor: url('../cursors/default-cursor.png'), default;
    animation: fade 1s;
}

@keyframes fade {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* Background paper image */
#paper-b {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Prevent interference with clicking */
    opacity: 0.2; /* Adjust for more or less grain */
    z-index: -100;
}

/* Plant shadows */
.plant-shadow {
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 0.3; /* Semi-transparent */
    z-index: -100; /* Above background but below text */
    filter: blur(10px);
    pointer-events: none;
}

.plant-shadow-left {
    bottom: 0; /* Position at the bottom */
    left: 0; /* Align left */
    transform: translateY(10%) scaleX(1.2); /* Adjust position and scale */
    pointer-events: none;
    z-index: -100;
}

.page-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2c4b96;
}

#logo-png {
    width: 6rem;
    z-index: 1001;
    margin-right: -0.5rem;
    cursor: url('../cursors/pointer-cursor.png'), pointer;
}

#logo-png:hover {
    animation: rotate 1s infinite forwards linear;
}

#logo-png:active {
    cursor: url('../cursors/clicked-cursor.png');
}

.header-container {
    position: fixed;
    top: 3.5rem;
    left: 4rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 1001;
}

/* Menu Button - Positioned in the top-right corner */
.menu-toggle {
    padding: 1.9rem 2rem 1rem 0;
    background: none;
    color: rgb(48, 48, 48);
    font-family: "rafaella-shadow", sans-serif;
    font-weight: 700;
    font-size: 2rem;
    border: none;
    z-index: 2000;
    cursor: url('../cursors/pointer-cursor.png'), pointer;
}

.menu-toggle:hover {
    color: rgb(179, 179, 179);
}

.menu-toggle:active {
    color: rgb(179, 179, 179);
    cursor: url('../cursors/clicked-cursor.png'), default;
}

@keyframes rotate {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}

#dropdown-title a{
    font-family: "rafaella-shadow", sans-serif;
    font-weight: 700;
    font-size: 3.3rem;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 2rem;
    transition: transform 0.6s ease-in-out;
    background: none;
    padding: none;
    line-height: 3rem;
}

#dropdown-title a:hover {
    transform: rotate(-2deg);
    cursor: url('../cursors/pointer-cursor.png'), pointer;
}

#dropdown-title a:active {
    cursor: url('../cursors/clicked-cursor.png'), pointer;
}

/* Fullscreen overlay when menu is open */
.dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.197); /* Dark overlay */
    backdrop-filter: blur(7px); /* Blur effect */
    display: none; /* Initially hidden */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.3s ease-in-out;
}

/* Dropdown container */
.dropdown-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('../../photos-regular/paper.jpg') no-repeat center center / cover;
    position: relative;
    padding: 30px;
    border-radius: 20px;
    width: 95%;
    max-width: 35rem;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 1s ease-in-out;
}

/* Add a crumpled texture effect like the home page */
.dropdown-menu::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../photos-regular/grain.png'); /* Match home-style.css */
    opacity: 0.1;
    z-index: -1;
    border-radius: 20px;
    overflow: hidden;
}

/* Add plant shadow effect */
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../photos-regular/plant-shadow-left.jpg') no-repeat center center / cover;
    opacity: 0.3;
    z-index: -1;
    border-radius: 20px;
    overflow: hidden;
}

/* Show dropdown when active */
.dropdown-overlay.active {
    display: flex;
}

/* Animate dropdown entrance */
.dropdown-overlay.active .dropdown-menu {
    animation: slideIn 0.6s ease-out forwards;
}

.dropdown-overlay.closing .dropdown-menu {
    animation: slideOut 0.8s ease-in forwards;
}

@keyframes slideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Slide Out */
@keyframes slideOut {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* Options styling */
.options a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    padding: 15px 20px;
    margin: 1.5rem 0;
    text-decoration: none;
    color: #333;
    background-color: white;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    font-size: 1.5rem;
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 400;
    font-style: normal;
    cursor: url('../cursors/pointer-cursor.png'), pointer;
}

.options a span{
    margin-left: 4rem;
    margin-right: 4rem;
    text-align: center;
}

.options a img {
    /* Add this */
    width: 2rem; /* Adjust size as needed */
    height: 2rem;
    margin-top: 0.3rem; /* Keeps spacing balanced */
}

.options a:hover {
    background-color: rgba(89, 89, 89, 0.397);
}

.options a:active {
    cursor: url('../cursors/clicked-cursor.png'), pointer;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    justify-content: center;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tidycal-embed {
    border: 2px solid #2c4b96;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    font-family: "brandon-grotesque", sans-serif;
}

.alt-option {
    font-size: 0.95rem;
    font-family: "brandon-grotesque", sans-serif;
}

.alt-option a {
    color: #05256d;
    text-decoration: underline;
    transition: color 0.3s;
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 600;
}

.alt-option a:hover {
    color: #ac4b51;
}

/* Footer Styling */
footer {
    background-image: url('hawk.jpg'); /* Path to your image */
    background-size: cover;       /* Makes the image cover the entire container */
    background-position: top;  /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    color: #ffffff;
    text-align: center;
    font-family: "brandon-grotesque", sans-serif;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 0 0.5rem 0;
    position: relative;
}

.footer-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    transition: color 0.3s;
    cursor: url('../cursors/pointer-cursor.png'), pointer;
}

.footer-links a:hover {
    color: black;
}

.footer-links a:active {
    cursor: url('../cursors/clicked-cursor.png'), pointer;
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.7rem;
    }

    #logo-png {
        width: 5rem; /* Further reduce logo size only for small screens */
    }

    .menu-toggle {
        font-size: 1.5rem;
        padding: 1rem;
    }
}

@media (max-width: 1024px) {
    .header-container {
        position: relative;
        top: 0;
        left: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem 1rem 2rem;
        z-index: 1;
    }

    .options a {
        font-size: 1.2rem;
        padding-top: 0.7rem;
        padding-bottom: 0.7rem;
        margin-bottom: 0.7rem;
        margin-top: 0.7rem;
        width: 85%;
    }

    .options a span {
        margin: 0;
    }

    #dropdown-title a{ 
        font-size: 2rem;
    }

    .dropdown-menu {
        padding: 0;
    }

   .page-container {
        margin-top: 0;
        border-radius: 30px;
} 
}