/*
Theme Name: Gjakan White Mobile
Theme URI: https://example.com/
Author: Levon + ChatGPT
Author URI: https://example.com/
Description: White minimal mobile-first theme for the Gjakan metal brand, with centered logo and mobile burger menu.
Version: 1.0
Text Domain: gjakan-white-mobile
*/
body {
    margin: 0;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #111111;
}
a { color: #111111; text-decoration: none; }
a:hover { text-decoration: underline; }
/* Header */
.site-header {
    padding: 4px 20px;
    border-bottom: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.site-logo img {
    display: block;
    height: 100px;
    width: auto;
}
/* Desktop nav */
.main-nav {
    display: flex;
    justify-content: center;
}
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
}
.main-nav li a { color: #111111; }
.main-nav li a:hover { color: #444444; }
/* Burger button */
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 10px;
    margin: 0;
}
.burger-lines {
    width: 22px;
    height: 2px;
    background-color: #111111;
    position: relative;
    display: block;
    border-radius: 999px;
}
.burger-lines::before,
.burger-lines::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background-color: #111111;
    border-radius: 999px;
    transition: transform 0.22s ease, top 0.22s ease, bottom 0.22s ease, opacity 0.22s ease;
}
.burger-lines::before { top: -6px; }
.burger-lines::after { top: 6px; }
body.mobile-menu-open .burger-lines { background-color: transparent; }
body.mobile-menu-open .burger-lines::before {
    top: 0;
    transform: rotate(45deg);
}
body.mobile-menu-open .burger-lines::after {
    top: 0;
    transform: rotate(-45deg);
}
/* Main content */
.main-content { padding: 32px 20px 40px; }
.page-title {
    font-size: 26px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
/* Footer */
.site-footer {
    padding: 20px;
    border-top: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: #666666;
}
.site-footer a { color: #444444; }
/* Social icons */
.social-links {
    display: flex;
    gap: 10px;
    align-items: center;
}
.social-links a {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid #cccccc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.1s ease;
}
.social-links a:hover {
    border-color: #111111;
    background-color: #111111;
    transform: translateY(-1px);
}
.social-links svg {
    width: 14px;
    height: 14px;
    fill: #111111;
}
.social-links a:hover svg { fill: #ffffff; }
/* Mobile menu overlay */
.mobile-layer {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    pointer-events: none;
    opacity: 0;
    z-index: 1000;
    transition: opacity 0.25s ease;
}
.mobile-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}
.mobile-panel {
    position: relative;
    margin-top: 60px;
    width: min(420px, 100% - 40px);
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 18px 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.mobile-menu-title {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666666;
}
.mobile-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    padding: 4px;
}
.mobile-menu-social { margin-bottom: 12px; }
.mobile-nav {
    border-top: 1px solid #eeeeee;
    padding-top: 10px;
}
.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mobile-nav li a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #111111;
}
.mobile-nav li a:hover { color: #444444; }
body.mobile-menu-open .mobile-layer {
    pointer-events: auto;
    opacity: 1;
}
body.mobile-menu-open .mobile-panel {
    transform: translateY(0);
    opacity: 1;
}
/* Responsive */
@media (max-width: 768px) {
    .site-header {
        padding-top: 12px;
        padding-bottom: 12px;
    }
    .site-logo img { height: 56px; }
    .main-nav { display: none; }
    .burger-btn {
        display: block;
        position: absolute;
        right: 20px;
        top: 18px;
    }
    .main-content {
        padding: 24px 16px 32px;
    }
    .site-footer {
        padding: 18px 16px 24px;
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (min-width: 769px) {
    .burger-btn { display: none; }
    .mobile-layer { display: none; }
    .site-header { flex-direction: column; }
}
