:root {
--gold: #c5a059;
--dark: #121212;
--light: #f9f9f9;
--drawer-bg: #121214;
} * {
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
width: 100% !important;
max-width: 100% !important;
overflow-x: hidden !important; font-family: 'Inter', sans-serif;
background: var(--light);
color: var(--dark);
-webkit-text-size-adjust: 100%;
}
body.drawer-view-open {
overflow: hidden !important;
position: fixed;
width: 100%;
}
h1, h2, h3 { 
font-family: 'Playfair Display', serif; 
font-weight: 400; 
}
img {
max-width: 100%;
height: auto;
} .site-header-fixed {
position: sticky; 
top: 0; 
z-index: 99999 !important; background: rgba(255, 255, 255, 0.95); 
backdrop-filter: blur(10px);
padding: 20px 60px; 
display: flex; 
justify-content: space-between; 
align-items: center;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
width: 100%;
}
.header-logo-container {
display: inline-block;
}
.custom-theme-logo {
height: 80px !important;
width: auto !important;
display: block !important;
max-width: none !important;
}
.desktop-navigation-bar {
display: flex;
align-items: center;
}
.desktop-navigation-bar a { 
margin-left: 25px; 
text-decoration: none; 
color: var(--dark); 
font-size: 12px; 
letter-spacing: 1.5px; 
text-transform: uppercase; 
opacity: 0.7; 
transition: 0.3s; 
}
.desktop-navigation-bar a:hover { 
opacity: 1; 
color: var(--gold); 
}
.theme-lang-toggle {
margin-left: 25px;
font-size: 12px;
color: rgba(0,0,0,0.2);
}
.theme-lang-toggle a { 
color: var(--gold); 
font-weight: bold; 
padding: 0 3px; 
text-decoration: none;
} .custom-mobile-menu-toggle, 
.custom-mobile-drawer {
display: none !important;
} .hero { 
height: 80vh; 
background-size: cover; 
background-position: center; 
display: flex; 
align-items: center; 
padding: 0 10%; 
color: white; 
position: relative; 
}
.hero::after { 
content: ''; 
position: absolute; 
inset: 0; 
background: rgba(0,0,0,0.3); 
}
.hero div { z-index: 2; }
.hero h1 { font-size: 5rem; margin: 0; }
.section { padding: 120px 10%; }
#main-content {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 60px 20px;
}
.grid-2 { 
display: grid; 
grid-template-columns: 1fr 1fr; 
gap: 80px; 
align-items: center; 
}
.gallery { 
display: grid; 
grid-template-columns: repeat(3, 1fr); 
gap: 15px; 
}
.gallery img { 
width: 100%; 
height: 500px; 
object-fit: cover; 
filter: grayscale(100%); 
transition: 0.6s; 
}
.gallery img:hover { 
filter: grayscale(0%); 
transform: scale(1.02); 
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
} footer, .site-footer { 
background: var(--dark); 
color: #fff; 
padding: 80px 10%; 
text-align: center; 
width: 100%;
}
.footer-nav {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 30px;
margin: 25px 0;
}
.footer-nav a {
color: #fff;
text-decoration: none;
font-size: 11px;
letter-spacing: 1.5px;
text-transform: uppercase;
opacity: 0.6;
transition: 0.3s ease;
}
.footer-nav a:hover {
opacity: 1;
color: var(--gold);
} @media (max-width: 1024px) {
.site-header-fixed { padding: 20px 40px; }
.custom-theme-logo { height: 65px !important; }
.section { padding: 80px 5%; }
.grid-2 { gap: 40px; }
.gallery { grid-template-columns: repeat(2, 1fr); }
} @media (max-width: 768px) { .desktop-navigation-bar {
display: none !important;
}
.site-header-fixed {
padding: 12px 20px !important;
} .custom-theme-logo {
height: 56px !important; 
width: auto !important;
display: block !important;
max-width: 220px !important; } #main-content, 
.section, 
main {
padding: 40px 20px !important;
width: 100% !important;
max-width: 100% !important;
box-sizing: border-box !important;
}
#main-content p, 
#main-content div,
.content {
word-wrap: break-word !important;
}
.hero h1 { font-size: 2.4rem !important; }
.grid-2 { grid-template-columns: 1fr !important; gap: 30px !important; }
.gallery { grid-template-columns: 1fr !important; }
.gallery img { height: 280px !important; } .custom-mobile-menu-toggle {
display: flex !important;
flex-direction: column;
justify-content: space-between;
width: 22px;
height: 14px;
background: transparent !important;
border: none !important;
cursor: pointer;
padding: 0 !important;
z-index: 999999 !important; }
.custom-mobile-menu-toggle .menu-bar-line {
width: 100%;
height: 2px;
background-color: var(--dark) !important;
transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
transform-origin: left center;
display: block;
} .custom-mobile-menu-toggle.is-open .menu-bar-line:nth-child(1) {
transform: rotate(45deg) translate(1px, -1px);
background-color: #fff !important;
}
.custom-mobile-menu-toggle.is-open .menu-bar-line:nth-child(2) {
opacity: 0 !important;
width: 0 !important;
}
.custom-mobile-menu-toggle.is-open .menu-bar-line:nth-child(3) {
transform: rotate(-45deg) translate(1px, 1px);
background-color: #fff !important;
} .custom-mobile-drawer {
display: flex !important;
position: fixed !important;
top: 0 !important;
right: 0 !important;
width: 280px !important;
height: 100vh !important;
background: var(--drawer-bg) !important;
z-index: 999998 !important; flex-direction: column !important;
padding: 60px 24px 40px 24px !important;
box-shadow: -10px 0 30px rgba(0,0,0,0.5) !important; transform: translateX(105%) !important;
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
visibility: hidden;
} .custom-mobile-drawer.is-active {
transform: translateX(0) !important;
visibility: visible !important;
}
.drawer-header-block {
display: flex;
align-items: center;
margin-bottom: 30px;
padding-bottom: 15px;
border-bottom: 1px solid rgba(255,255,255,0.06);
}
.drawer-vertical-nav {
display: flex;
flex-direction: column;
gap: 4px;
}
.drawer-vertical-nav a {
color: rgba(255,255,255,0.85) !important;
text-decoration: none !important;
font-size: 13px !important;
text-transform: uppercase !important;
letter-spacing: 1.5px !important;
padding: 12px 14px !important;
border-radius: 6px !important;
transition: all 0.2s ease !important;
text-align: left !important;
display: block !important;
}
.drawer-vertical-nav a:hover, 
.drawer-vertical-nav a:active {
background: rgba(197, 160, 89, 0.15) !important;
color: var(--gold) !important;
}
.drawer-bottom-footer {
margin-top: auto !important;
padding-top: 20px !important;
border-top: 1px solid rgba(255,255,255,0.06) !important;
display: flex !important;
align-items: center !important;
gap: 10px !important;
}
.drawer-bottom-footer a {
color: rgba(255,255,255,0.5) !important;
text-decoration: none !important;
font-size: 13px !important;
font-weight: bold !important;
padding: 4px !important;
display: inline-block !important;
}
.drawer-bottom-footer a:hover {
color: var(--gold) !important;
}
.drawer-footer-sep {
color: rgba(255,255,255,0.15) !important;
} footer, .site-footer { padding: 40px 20px; }
.footer-nav { flex-direction: column; gap: 15px; }
}