:root {

    --bg:#050505;
    --surface:#0D0D0D;
    --border:#1F1F1F;

    --text:#F4F4F4;
    --silver:#C8C8C8;
    --muted:#8B8B8B;

    --gold:#C9A227;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--bg);

    color:var(--text);

    font-family:'Inter',sans-serif;

}

nav{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:30px 8%;

    border-bottom:1px solid var(--border);

}

nav img{

    height:55px;

}

nav ul{

    display:flex;

    list-style:none;

    gap:40px;

}

nav a{

    color:var(--silver);

    text-decoration:none;

    font-size:15px;

    transition:.25s;

}

nav a:hover{

    color:white;

}

.hero{

    max-width:900px;

    margin:auto;

    min-height:85vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:84px;

    font-weight:600;

    margin-bottom:15px;

}

.hero-content h2{

    color:var(--gold);    
    
    font-size:22px;

    font-weight:400;

    margin-bottom:40px;

}

.hero p{

    font-size:20px;

    line-height:1.9;

    color:var(--muted);

    max-width:760px;

    margin-bottom:25px;

}

.button{

    display:inline-block;

    width:180px;

    text-align:center;

    padding:16px 30px;

    border:1px solid var(--silver);

    color:white;

    text-decoration:none;

    margin-top:20px;

    transition:.25s;

}

.button:hover{

    background:white;

    color:black;

}


.logo{

    display:flex;
    align-items:center;
    gap:16px;

    font-size:2rem;
    font-weight:600;
    letter-spacing:2px;
    line-height:1;

}

.logo{

    display:flex;
    align-items:center;
    gap:18px;

}


.logo img{

    width:55px;
    height:55px;

    object-fit:contain;

}


.brand-text span{

    display:block;

    font-size:1.25rem;

    letter-spacing:4px;

    font-weight:600;

    line-height:1.1;

}


.brand-text small{

    display:block;

    margin-top:6px;

    font-size:.55rem;

    letter-spacing:3px;

    color:var(--gold);

}

/* =========================
   Institutional Hero
========================= */

.hero-image{

    height:850px;

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    overflow:hidden;

}


.hero-background{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

}


.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.55)
    );

}


.hero-content{

    position:relative;

    z-index:2;

    max-width:900px;

}

.hero-content h1{

    font-family:'Cormorant Garamond', serif;

    font-size:5rem;

    font-weight:600;

    letter-spacing:3px;

    margin-bottom:25px;

}


.hero-content h2{

    font-size:1rem;

    letter-spacing:5px;

    text-transform:uppercase;

    color:var(--gold);
    
    margin-bottom:40px;

}


.hero-content p{

    font-size:1.2rem;

    color:#D0D0D0;

}


.section{

    padding:120px 0;

}


.section h2{

    font-family:'Cormorant Garamond', serif;

    font-size:3rem;

    margin-bottom:30px;

}


.section p{

    max-width:800px;

    color:#555555;

    margin-bottom:40px;

    line-height:1.8;

}

/* =========================
   Homepage Sections
========================= */


.section{

    padding:100px 8% 80px;

}


.section.light{

    background:#ffffff;

    color:#111111;

}


.section.dark{

    background:#050505;

    color:#f4f4f4;

}


.container{

    max-width:1200px;

    margin:auto;

}


.section-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}


.section-image{

    width:100%;

    height:520px;

    object-fit:cover;

    object-position:center;

}


.product-image{

    width:100%;

    height:520px;

    object-fit:contain;

    object-position:center;

    margin-top:50px;

    margin-bottom:50px;

}


.section-label{

    font-size:14px;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:20px;

    color:#C9A227;

}


.section h2{

    font-family:'Cormorant Garamond',serif;

    font-size:3.5rem;

    margin-bottom:30px;

}


.section p{

    font-size:1.15rem;

    line-height:1.9;

    max-width:600px;

}


.institution-content{

    text-align:center;

    max-width:900px;

    margin:auto;

}


/* =========================
   Mobile Layout
========================= */

@media(max-width:900px){


.section-grid{

    display:flex;

    flex-direction:column;

    gap:40px;

}


.section-text{

    order:1;

}


.section-image-wrap{

    order:2;

}

.section{

    padding:80px 7%;

}


.section h2{

    font-size:2.4rem;

    line-height:1.1;

}


.section p{

    font-size:1rem;

    line-height:1.8;

}


.section-image{

    height:350px;

}


.hero-content{

    padding:0 25px;

}


.hero-content h1{

    font-size:3.2rem;

}


.hero-content h2{

    font-size:.85rem;

}


.hero-content p{

    padding:0 10px;

}


}

/* =========================
   Footer
========================= */

footer.footer{

    padding:90px 8%;

    text-align:center;

    border-top:1px solid var(--border);

}


.footer-logo{

    text-align:center;

    padding-top:40px;

}


.footer-logo img{

    width:90px;

    height:90px;

    object-fit:contain;

}


.footer-logo img{

    width:45px;

    height:45px;

    object-fit:contain;

    margin:0 auto 20px auto;

    display:block;

}


.footer-brand{

    text-align:center;

    font-size:1.5rem;

    letter-spacing:5px;

    margin-bottom:12px;

}


.footer-sub{

    text-align:center;

    font-size:.75rem;

    letter-spacing:4px;

    color:var(--gold);

    margin-bottom:35px;

}


.footer-links{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:35px;

    flex-wrap:wrap;

}


.footer-links a{

    color:var(--silver);

    text-decoration:none;

}


.footer-links a:hover{

    color:white;

}


.copyright{

    text-align:center;

    margin-top:40px;

    color:#666;

    font-size:.8rem;

}

.institution-page p{

    color:#A8A8A8;

}

.institution-page p{

    color:#A8A8A8;

    max-width:900px;

    margin-left:auto;

    margin-right:auto;

    text-align:center;

}

/* =========================
   Institutional Systems Dropdown
========================= */

.nav-dropdown{

    position:relative;

}


.dropdown-menu{

    display:none;

    position:absolute;

    top:100%;

    left:0;

    background:#111;

    min-width:240px;

    padding:15px;

    border:1px solid rgba(212,175,55,0.4);

}


.dropdown-menu a{

    display:block;

    padding:12px 15px;

    white-space:nowrap;

}


.nav-dropdown:hover .dropdown-menu{

    display:block;

}

/* Ensure navigation stays above hero sections */

header{

    position:relative;

    z-index:1000;

}


.dropdown-menu{

    z-index:1001;

}

/* =========================
   Institutional Contact Form
========================= */


.contact-form{

    max-width:700px;

    margin:60px auto 0;

    padding:40px;

    border:1px solid rgba(212,175,55,0.7);

    background:#111;

    display:flex;

    flex-direction:column;

    gap:25px;

}


.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px;

    background:#080808;

    border:1px solid rgba(212,175,55,0.4);

    color:white;

    font-size:1rem;

}


.contact-form input{

    height:60px;

}


.contact-form textarea{

    min-height:220px;

    resize:none;

}


.contact-form button{

    align-self:center;

    padding:16px 45px;

    background:#d4af37;

    color:#000;

    border:none;

    font-size:1rem;

    cursor:pointer;

}


.contact-form button:hover{

    opacity:0.85;

}

.coming-soon{

    color:#c9a227;

    font-size:1.4rem;

    letter-spacing:2px;

    text-transform:uppercase;

    font-weight:600;

    text-align:center;

}

.section .coming-soon{

    color:#c9a227;

}

nano /var/www/sovereign-nord/assets/css/style.css
