/* ===== GLOBAL ===== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #050505;
    color: #ffffff;
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Cinzel', Georgia, serif;
    letter-spacing: 1px;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* ===== SPLASH SCREEN ===== */

#splash-screen {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.splash-logo {
    width: 80%;
    max-width: 600px;
}

#website-content {
    opacity: 0;
    transition: opacity 1s ease;
}

#website-content.show {
    opacity: 1;
}

/* ===== NAVIGATION ===== */

.navbar {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 5%;
    border-bottom:1px solid #222;
    flex-wrap:nowrap;
}

.brand {
    display:flex;
    align-items:center;
    gap:15px;
    white-space:nowrap;
}

.logo-mark {
    color:#d4af37;
    font-size:35px;
}

.logo-text {
    display:flex;
    align-items:center;
    gap:10px;
    white-space:nowrap;
}

.brand-main {
    color:#ffffff;
    font-size:22px;
    font-weight:700;
    display:inline-block;
}

.brand-sub {
    color:#d4af37;
    font-size:22px;
    font-weight:700;
    display:inline-block;
}

.nav-links {
    display:flex;
    align-items:center;
    list-style:none;
    gap:25px;
    white-space:nowrap;
}

.nav-links a {
    color:#ffffff;
}

.nav-links a:hover {
    color:#d4af37;
}

.brand {
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-text {
    display:flex;
    align-items:center;
    gap:10px;
}

.brand-main {
    display:inline;
    color:#ffffff;
    font-size:22px;
    font-weight:700;
}

.brand-sub {
    display:inline;
    color:#d4af37;
    font-size:22px;
    font-weight:700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a:hover {
    color: #d4af37;
}


/* ===== HERO ===== */

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    width: 90%;
    max-width: 900px;
    margin: auto;
}

.hero-title {
    font-size: 55px;
    color: #d4af37;
}

.hero-subtitle {
    font-size: 30px;
    margin: 20px 0;
}

.hero-description {
    color: #cccccc;
    font-size: 18px;
}

.hero-buttons {
    margin-top: 35px;
}

.primary-btn,
.secondary-btn {
    display: inline-block;
    padding: 14px 30px;
    margin: 10px;
    border-radius: 5px;
}

.primary-btn {
    background: #d4af37;
    color: #000;
}

.secondary-btn {
    border: 1px solid #d4af37;
    color: #d4af37;
}


/* ===== SECTIONS ===== */

section {
    padding: 80px 0;
}

section h2 {
    color: #d4af37;
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
}

section p {
    color: #cccccc;
    max-width: 900px;
    margin: 20px auto;
}


/* ===== STATS ===== */

.stats .container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.stat {
    background: #111;
    padding: 30px;
    text-align: center;
    border: 1px solid #222;
}


/* ===== CARDS ===== */

.story-grid,
.service-grid,
.values-grid,
.systems-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-top: 40px;
}

.story-card,
.service-card,
.value-card,
.system-card,
.founder-card {
    background: #111;
    padding: 30px;
    border: 1px solid #222;
    border-radius: 10px;
}

.story-card h3,
.service-card h3,
.value-card h3,
.system-card h3 {
    color: #d4af37;
    margin-bottom: 15px;
}

.service-icon {
    font-size: 35px;
    color: #d4af37;
    margin-bottom: 15px;
}


/* ===== CONTACT ===== */

.contact-info {
    text-align: center;
    margin: 30px 0;
}

.contact-info a {
    color: #d4af37;
}


/* ===== FOOTER ===== */

footer {
    border-top: 1px solid #222;
    padding: 40px 0;
    text-align: center;
    color: #888;
}


/* ===== MOBILE ===== */

@media(max-width:900px){

.navbar {
    flex-direction: column;
    gap:20px;
}

.nav-links {
    flex-direction: column;
    text-align:center;
}

.stats .container,
.story-grid,
.service-grid,
.values-grid,
.systems-grid {
    grid-template-columns:1fr;
}

.hero-title {
    font-size:38px;
}

}
.brand {
    display:flex;
    align-items:center;
    gap:15px;
    white-space:nowrap;
}

.logo-text {
    display:flex;
    align-items:center;
}

.brand-full {
    color:#ffffff;
    font-size:22px;
    font-weight:700;
    white-space:nowrap;
}
.header{
text-align:center;
padding:20px;
}


.logo{
width:120px;
}


#filters{
text-align:center;
margin:20px;
}


button{
padding:10px 15px;
margin:5px;
cursor:pointer;
}


#business-container{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
padding:20px;

}


.business-card{

padding:20px;
border-radius:10px;
background:#111;
color:white;

}


.green{
border:3px solid green;
}


.yellow{
border:3px solid yellow;
}


.red{
border:3px solid red;
}
