
@font-face { font-family: 'RonaldsonGothicLicht'; src: url('assets/RonaldsonGothicLicht.ttf') format('truetype'); font-weight: normal; font-style: normal; }
@font-face { font-family: 'Antique Book Cover'; src: url('assets/Antique\ Book\ Cover.otf') format('opentype'); font-weight: normal; font-style: normal; }

/* Layout tokens */
:root{
    --header-height: 170px; /* adjust if header height changes */
}

.logo { 
    font-family: 'Antique Book Cover', Montserrat, Arial, sans-serif; 
    font-weight: bold;
    display: block;
    font-size: 3.2em;
    line-height: 1;
}

.sub-title {
    display: block;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 0.95em;
    color: #555;
    margin-top: 0.15em;
    letter-spacing: 0.04em;
}

.gg_title {
    font-family: 'Antique Book Cover', Montserrat, Arial, sans-serif;
    font-weight: normal;
    display: block;
    font-size: 2em;
}

.headings{
    font-family: 'Antique Book Cover', Montserrat, Arial, sans-serif; 
    font-weight: normal; display: block; font-size: 2em; 
}
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    color: #333;
}

.sidebar {
    width: 250px;
    background: #f8f8f8;
    position: fixed;
    top: var(--header-height);
    bottom: 0;
    left: 0;
    padding-top: 50px;
    z-index: 1000;
}
.sidebar nav ul {
    list-style: none;
    padding: 0;
}
.sidebar nav ul li {
    padding: 15px;
    text-align: center;
}
.sidebar nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1002; /* above sidebar so header content isn't covered */
}

/* Header-specific logo tweaks: keep logo text on one line */
header .logo {
    display: inline-block; /* avoid block-level line break */
    font-size: 2.6em; /* slightly smaller to fit on one line */
    white-space: nowrap; /* prevent wrapping */
    vertical-align: middle;
}
header a > span { vertical-align: middle; }
@media (max-width: 900px) {
    header .logo { font-size: 1.6em; }
}
/* Hamburger styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    position: static;
}
.hamburger span {
    height: 4px;
    width: 30px;
    background: #333;
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 700px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 10px;
        position: relative;
    }
    .logo {
        font-size: 2em !important;
    }
    header > div {
        margin-left: 0 !important;
        gap: 8px;
    }
    header img {
        height: 60px !important;
        width: 70px !important;
    }
    .top-nav {
        width: 100%;
        margin-left: 0 !important;
    }
    .top-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        display: none;
        background: #fff;
        position: absolute;
        left: 0;
        top: 70px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    .top-nav ul.active {
        display: flex;
        opacity: 1;
        pointer-events: auto;
    }
    .top-nav ul li {
        width: 100%;
        text-align: left;
        padding: 12px 20px;
        border-bottom: 1px solid #eee;
    }
    .hamburger {
        display: flex;
        position: absolute;
        top: 10px;
        right: 10px;
    }
}

/* Mobile: keep sidebar off-canvas and show on demand */
@media (max-width: 768px) {
    body { padding-left: 0 !important; }
    /* off-canvas sidebar */
    .sidebar {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 250px;
        height: calc(100vh - var(--header-height));
        transform: translateX(-110%);
        transition: transform 260ms ease, visibility 0s linear 260ms;
        box-shadow: 0 6px 24px rgba(0,0,0,0.28);
        background: #fff;
        z-index: 1002;
        visibility: hidden;
        pointer-events: none;
    }
    /* when body has sidebar-open, slide it in */
    body.sidebar-open .sidebar { transform: translateX(0); visibility: visible; pointer-events: auto; transition-delay: 0s; }

    /* overlay shown when sidebar is open */
    #mobile-sidebar-overlay { display: none; }
    body.sidebar-open #mobile-sidebar-overlay { display:block; position:fixed; inset:0; background:rgba(0,0,0,0.4); z-index:1001; }

    /* make nav items stack for touch */
    .sidebar nav ul { display:flex; flex-direction:column; gap:8px; padding:12px; }
    .sidebar nav ul li { padding:10px 12px; text-align:left; }
}
.top-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
.top-nav ul li {
    position: relative;
}
.top-nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}
.highlight-new {
    background-color: #e8f5e8; /* light green background */
    padding: 5px 10px;
    border-radius: 4px;
    position: relative;
}
.highlight-new::after {
    content: "NEW";
    position: absolute;
    top: -8px;
    right: -20px;
    background-color: #ff6b6b; /* coral red */
    color: white;
    font-size: 0.7em;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: bold;
}
.sidebar nav ul li.highlight-big {
    background: linear-gradient(180deg, #fff7e5 0%, #fff1c2 100%);
    border: 1px solid #f2c56e;
    border-radius: 18px;
    padding: 16px 18px;
    margin-bottom: 14px;
    box-shadow: 0 10px 24px rgba(244, 159, 43, 0.12);
    text-align: center;
}
.sidebar nav ul li.highlight-big a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 1.12rem;
    color: #1f1a17;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.sidebar nav ul li.highlight-big::before {
    content: "Featured";
    display: inline-block;
    background: #f79a38;
    color: #fff;
    font-size: 0.72rem;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 8px;
    margin-right: 0;
    vertical-align: middle;
}
.sidebar nav ul li.highlight-big::before {
    position: relative;
    top: 0;
    transform: translateY(0);
    display: block;
}

}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    background: #fff;
    border: 1px solid #ccc;
    list-style: none;
    padding: 10px 0;
}
.dropdown-menu li {
    padding: 10px 20px;
}
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Intro Section */
.intro {
    padding: 50px;
    text-align: center;
    max-width: 900px;
    margin: auto;
}
.intro h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}
.intro p {
    font-size: 1.2em;
    line-height: 1.6;
}

/* Gallery */
.gallery {
    padding: 40px;
    text-align: center;
}
.gallery h2 {
    font-size: 2em;
    margin-bottom: 20px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.gallery-grid img {
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 8px;
}

/* ...existing image rules retained; thumbnail override removed to restore original sizing */

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9em;
    color: #666;
}
.artwork-container {
                position: relative;
                display: inline-block;
                margin: 8px;
            }
            .artwork-container img {
                display: block;
                width: 100%;
                height: auto;
            }
            .artwork-title {
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                background: rgba(0,0,0,0.6);
                color: #fff;
                padding: 8px 16px;
                border-radius: 6px;
                opacity: 0;
                transition: opacity 0.3s;
                text-align: center;
                font-size: 1.2em;
                pointer-events: none;
                width: 80%;
            }
            .artwork-container:hover .artwork-title {
                opacity: 1;
            }
			
.announcement {
  background-color: #e8d6e8;   /* soft mauve pink */
    color: #4a3b4f;              /* muted deep mauve text */
    padding: 12px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95em;
    letter-spacing: 0.5px;
    border-radius: 6px;
    margin: 20px auto;
    max-width: 900px;
}			
.announcement strong {
    font-weight: 700;
    color: #5a2d5a;
}