

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==========================================
RESET
==========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#181818;
    color:#f5f5f5;
    line-height:1.7;
    overflow-x:hidden;
}

/*==========================================
COLORS
==========================================*/

:root{

    --primary:#D4AF37;
    --secondary:#222222;
    --dark:#181818;
    --light:#F5F5F5;
    --gray:#AAAAAA;

    --shadow:0 12px 30px rgba(0,0,0,.25);

    --radius:12px;

    --transition:.35s ease;
}

/*==========================================
TYPOGRAPHY
==========================================*/

h1{
    font-size:58px;
    font-weight:700;
    color:var(--primary);
}

h2{
    font-size:42px;
    color:var(--primary);
    margin-bottom:20px;
}

h3{
    font-size:28px;
    margin-bottom:15px;
}

h4{
    font-size:22px;
}

p{
    color:#d9d9d9;
    font-size:17px;
    margin-bottom:18px;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

/*==========================================
IMAGES
==========================================*/

img{
    display:block;
    width:100%;
    max-width:100%;
    height:auto;
    object-fit:cover;
    border-radius:12px;
}

/*==========================================
VIDEOS
==========================================*/

video,
iframe{

    width:100%;
    max-width:100%;
    border:none;
    border-radius:15px;
}

/*==========================================
CONTAINER
==========================================*/

.container{

    width:min(1200px,92%);
    margin:auto;
}

/*==========================================
SECTIONS
==========================================*/

section{

    padding:90px 0;
}

/*==========================================
BUTTONS
==========================================*/

.btn{

    display:inline-block;

    padding:15px 35px;

    background:var(--primary);

    color:#111;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

    cursor:pointer;
}

.btn:hover{

    transform:translateY(-4px);

    box-shadow:0 10px 20px rgba(212,175,55,.30);
}

/*==========================================
CARDS
==========================================*/

.card{

    background:#232323;

    border-radius:15px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:var(--transition);
}

.card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.45);
}

/*==========================================
FORM
==========================================*/

input,
textarea,
select{

    width:100%;

    padding:15px;

    border:1px solid #444;

    background:#222;

    color:#fff;

    border-radius:10px;

    margin-bottom:20px;

    font-family:'Poppins',sans-serif;

    transition:var(--transition);
}

input:focus,
textarea:focus,
select:focus{

    outline:none;

    border-color:var(--primary);
}

/*==========================================
TABLES
==========================================*/

table{

    width:100%;

    border-collapse:collapse;
}

th{

    background:var(--primary);

    color:#111;
}

th,
td{

    padding:15px;

    border:1px solid #333;
}

/*==========================================
UTILITY
==========================================*/

.text-center{
    text-align:center;
}

.mt-1{
    margin-top:20px;
}

.mt-2{
    margin-top:40px;
}

.mb-1{
    margin-bottom:20px;
}

.mb-2{
    margin-bottom:40px;
}

/*==========================================
HEADER
==========================================*/

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
    background:#181818;
    position:relative;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:70px;
    height:70px;
    object-fit:contain;
}

nav{
    display:flex;
    gap:25px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:600;
}

.menu-toggle{
    display:none;
    font-size:35px;
    color:#d4af37;
    cursor:pointer;
}
/*==========================================
NAVIGATION
==========================================*/

nav{
    display:flex;
    align-items:center;
    gap:30px;
}

nav a{
    color:#f5f5f5;
    font-size:16px;
    font-weight:500;
    position:relative;
    transition:.3s;
}

nav a:hover{
    color:var(--primary);
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--primary);
    transition:.3s;
}

nav a:hover::after{
    width:100%;
}

/*==========================================
HERO
==========================================*/

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:180px 20px 120px;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(20,20,20,.75),
        rgba(20,20,20,.80)
    );
    z-index:1;
}

.hero .container{
    position:relative;
    z-index:2;
}

.hero h1{
    font-size:64px;
    margin-bottom:20px;
    color:var(--primary);
}

.hero p{
    max-width:750px;
    margin:0 auto 35px;
    font-size:19px;
    color:#e5e5e5;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.hero-buttons .btn{
    min-width:180px;
    text-align:center;
}

/*==========================================
SECONDARY BUTTON
==========================================*/

.btn-outline{
    display:inline-block;
    padding:15px 35px;
    border:2px solid var(--primary);
    color:var(--primary);
    border-radius:50px;
    transition:.35s;
}

.btn-outline:hover{
    background:var(--primary);
    color:#111;
}

/*==========================================
SCROLL INDICATOR
==========================================*/

.scroll-down{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    color:var(--primary);
    font-size:14px;
    letter-spacing:2px;
    animation:bounce 2s infinite;
    z-index:2;
}

@keyframes bounce{

    0%,20%,50%,80%,100%{
        transform:translate(-50%,0);
    }

    40%{
        transform:translate(-50%,-10px);
    }

    60%{
        transform:translate(-50%,-5px);
    }

}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:992px){

header .container{
    flex-direction:column;
    gap:20px;
}

nav{
    flex-wrap:wrap;
    justify-content:center;
}

.hero h1{
    font-size:48px;
}

.hero p{
    font-size:17px;
}

}

@media(max-width:768px){

.logo{
    flex-direction:column;
    text-align:center;
}

.logo img{
    width:60px;
    height:60px;
}

nav{
    flex-direction:column;
    gap:15px;
}

.hero{
    min-height:85vh;
    padding:160px 20px 80px;
}

.hero h1{
    font-size:36px;
}

.hero p{
    font-size:16px;
}

.hero-buttons{
    flex-direction:column;
    align-items:center;
}

.hero-buttons .btn,
.hero-buttons .btn-outline{
    width:100%;
    max-width:300px;
}

}

@media(max-width:480px){

.hero h1{
    font-size:30px;
}

.hero p{
    font-size:15px;
}

}
/*==========================================
ABOUT SECTION
==========================================*/

.about{
    background:#1d1d1d;
}

.about .container{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
}

.about-image{
    overflow:hidden;
    border-radius:15px;
    box-shadow:var(--shadow);
}

.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.about-image:hover img{
    transform:scale(1.05);
}

.about-content h2{
    margin-bottom:20px;
}

.about-content p{
    margin-bottom:18px;
    color:#d9d9d9;
}

/*==========================================
MISSION & VISION
==========================================*/

.info-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:40px;
}

.info-card{
    background:#242424;
    padding:30px;
    border-radius:15px;
    border-top:4px solid var(--primary);
    transition:.35s;
}

.info-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.35);
}

.info-card h3{
    color:var(--primary);
    margin-bottom:15px;
}

.info-card p{
    margin:0;
}

/*==========================================
SERVICES
==========================================*/

.services{
    background:#181818;
}

.services .section-title{
    text-align:center;
    margin-bottom:60px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#242424;
    padding:35px 30px;
    text-align:center;
    border-radius:15px;
    transition:.35s;
    border-bottom:4px solid transparent;
}

.service-card:hover{
    transform:translateY(-10px);
    border-bottom-color:var(--primary);
    box-shadow:0 20px 35px rgba(0,0,0,.35);
}

.service-card img{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    object-fit:contain;
}

.service-card h3{
    color:var(--primary);
    margin-bottom:15px;
}

.service-card p{
    color:#d6d6d6;
}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:992px){

.about .container{
    grid-template-columns:1fr;
}

.service-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.info-grid{
    grid-template-columns:1fr;
}

.service-grid{
    grid-template-columns:1fr;
}

.about{
    text-align:center;
}

.about-image{
    order:-1;
}

}

@media(max-width:480px){

.info-card,
.service-card{
    padding:25px;
}

}
/*==========================================
PROJECTS SECTION
==========================================*/

.projects{
    background:#202020;
}

.projects .section-title{
    text-align:center;
    margin-bottom:60px;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.project-card{
    background:#262626;
    border-radius:15px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.4s ease;
}

.project-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.45);
}

.project-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.project-card:hover img{
    transform:scale(1.08);
}

.project-content{
    padding:30px;
}

.project-content h3{
    color:var(--primary);
    margin-bottom:15px;
}

.project-content p{
    color:#d6d6d6;
}

/*==========================================
GALLERY
==========================================*/

.gallery{
    background:#181818;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.gallery-item{
    overflow:hidden;
    border-radius:15px;
    position:relative;
    box-shadow:var(--shadow);
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s ease;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

.gallery-item::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(212,175,55,.15);
    opacity:0;
    transition:.4s;
}

.gallery-item:hover::after{
    opacity:1;
}

/*==========================================
VIDEOS
==========================================*/

.video-section{
    background:#202020;
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
}

.video-grid video,
.video-grid iframe{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
    border-radius:15px;
    box-shadow:var(--shadow);
}

/*==========================================
STATISTICS
==========================================*/

.stats{
    background:linear-gradient(135deg,#181818,#242424);
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.stat-box{
    background:#262626;
    padding:40px 20px;
    text-align:center;
    border-radius:15px;
    border-top:4px solid var(--primary);
    transition:.35s;
}

.stat-box:hover{
    transform:translateY(-8px);
}

.stat-box h2{
    color:var(--primary);
    font-size:42px;
    margin-bottom:10px;
}

.stat-box p{
    color:#dddddd;
    margin:0;
}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:768px){

.project-grid,
.gallery-grid,
.video-grid,
.stats-grid{
    grid-template-columns:1fr;
}

.project-card img,
.gallery-item img{
    height:220px;
}

}

@media(max-width:480px){

.project-content{
    padding:20px;
}

.stat-box{
    padding:30px 15px;
}

}
/*==========================================
TEAM SECTION
==========================================*/

.team{
    background:#181818;
}

.team .section-title{
    text-align:center;
    margin-bottom:60px;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

.team-card{
    background:#242424;
    border-radius:15px;
    overflow:hidden;
    text-align:center;
    transition:.4s ease;
    box-shadow:var(--shadow);
}

.team-card:hover{
    transform:translateY(-10px);
}

.team-card img{
    width:100%;
    height:340px;
    object-fit:cover;
}

.team-info{
    padding:30px;
}

.team-info h3{
    color:var(--primary);
    margin-bottom:8px;
}

.team-info p{
    color:#d0d0d0;
    margin-bottom:20px;
}

.team-social{
    display:flex;
    justify-content:center;
    gap:15px;
}

.team-social a{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#333;
    color:var(--primary);
    border-radius:50%;
    transition:.35s;
}

.team-social a:hover{
    background:var(--primary);
    color:#111;
}

/*==========================================
CONTACT SECTION
==========================================*/

.contact{
    background:#202020;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

.contact-info{
    display:grid;
    gap:25px;
}

.contact-box{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:25px;
    background:#262626;
    border-left:4px solid var(--primary);
    border-radius:12px;
}

.contact-box h3{
    color:var(--primary);
    margin-bottom:8px;
}

.contact-box p{
    margin:0;
    color:#ddd;
}

/*==========================================
CONTACT FORM
==========================================*/

.contact-form{
    background:#262626;
    padding:40px;
    border-radius:15px;
    box-shadow:var(--shadow);
}

.contact-form h2{
    margin-bottom:25px;
}

.contact-form button{
    width:100%;
}

/*==========================================
GOOGLE MAP
==========================================*/

.map{
    margin-top:60px;
}

.map iframe{
    width:100%;
    height:450px;
    border:none;
    border-radius:15px;
    box-shadow:var(--shadow);
}

/*==========================================
FOOTER
==========================================*/

footer{
    background:#111;
    padding:70px 0 25px;
    border-top:3px solid var(--primary);
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    margin-bottom:40px;
}

.footer-column h3{
    color:var(--primary);
    margin-bottom:20px;
}

.footer-column p,
.footer-column a{
    color:#cccccc;
    display:block;
    margin-bottom:12px;
    transition:.3s;
}

.footer-column a:hover{
    color:var(--primary);
    padding-left:8px;
}

.footer-social{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.footer-social a{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#262626;
    color:var(--primary);
    border-radius:50%;
    transition:.35s;
}

.footer-social a:hover{
    background:var(--primary);
    color:#111;
}

.footer-bottom{
    border-top:1px solid #333;
    margin-top:40px;
    padding-top:25px;
    text-align:center;
    color:#999;
}

/*==========================================
BACK TO TOP BUTTON
==========================================*/

#backToTop{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:var(--primary);
    color:#111;
    cursor:pointer;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    box-shadow:0 12px 25px rgba(0,0,0,.3);
    transition:.35s;
    z-index:999;
}

#backToTop:hover{
    transform:translateY(-5px);
}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:992px){

.contact-wrapper{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.team-grid,
.footer-grid{
    grid-template-columns:1fr;
}

.contact-form{
    padding:30px;
}

.map iframe{
    height:320px;
}

footer{
    text-align:center;
}

.footer-social{
    justify-content:center;
}

}

@media(max-width:480px){

.team-card img{
    height:280px;
}

.contact-box{
    flex-direction:column;
}

.contact-form{
    padding:20px;
}

#backToTop{
    width:50px;
    height:50px;
}

}

/*==========================================
PART 6
FINAL POLISH & ANIMATIONS
==========================================*/

/* Smooth Fade Animation */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.fade-up{
    animation:fadeUp .8s ease forwards;
}

/* Fade Left */

@keyframes fadeLeft{
    from{
        opacity:0;
        transform:translateX(-40px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

.fade-left{
    animation:fadeLeft .8s ease forwards;
}

/* Fade Right */

@keyframes fadeRight{
    from{
        opacity:0;
        transform:translateX(40px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

.fade-right{
    animation:fadeRight .8s ease forwards;
}

/* Zoom Animation */

@keyframes zoomIn{
    from{
        opacity:0;
        transform:scale(.9);
    }

    to{
        opacity:1;
        transform:scale(1);
    }
}

.zoom-in{
    animation:zoomIn .8s ease forwards;
}

/* Hover Lift */

.card,
.project-card,
.team-card,
.service-card,
.info-card{
    transition:.35s ease;
}

.card:hover,
.project-card:hover,
.team-card:hover,
.service-card:hover,
.info-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.35);

}

/* Image Hover */

img{

    transition:.45s ease;

}

img:hover{

    transform:scale(1.02);

}

/* Better Text Selection */

::selection{

    background:#D4AF37;

    color:#181818;

}

/* Custom Scrollbar */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#181818;

}

::-webkit-scrollbar-thumb{

    background:#D4AF37;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#c29b28;

}

/* Links */

a{

    transition:.3s;

}

/* Better Focus */

button:focus,
input:focus,
textarea:focus,
select:focus{

    outline:2px solid #D4AF37;

    outline-offset:3px;

}

/* Responsive Tables */

.table-responsive{

    overflow-x:auto;

}

/* Responsive Images */

img{

    max-width:100%;

    height:auto;

}

/* Responsive Videos */

video,
iframe{

    width:100%;

    height:auto;

}

/* Utility */

.hidden{

    display:none !important;

}

.w-100{

    width:100%;

}

.text-gold{

    color:#D4AF37;

}

.bg-dark{

    background:#181818;

}

.bg-charcoal{

    background:#222;

}

.rounded{

    border-radius:15px;

}

.shadow{

    box-shadow:0 12px 30px rgba(0,0,0,.3);

}

/* Large Screens */

@media(min-width:1400px){

.container{

    max-width:1320px;

}

}

/* Tablets */

@media(max-width:992px){

section{

    padding:80px 25px;

}

h1{

    font-size:48px;

}

h2{

    font-size:36px;

}

}

/* Phones */

@media(max-width:768px){

section{

    padding:70px 20px;

}

h1{

    font-size:34px;

}

h2{

    font-size:28px;

}

h3{

    font-size:22px;

}

p{

    font-size:16px;

}

.btn{

    width:100%;

    text-align:center;

}

}

/* Small Phones */

@media(max-width:480px){

.container{

    width:95%;

}

section{

    padding:60px 15px;

}

h1{

    font-size:28px;

}

h2{

    font-size:24px;

}

p{

    font-size:15px;

}

.logo img{

    width:55px;

    height:55px;

}

}

/* Print */

@media print{

header,
footer,
#backToTop{

    display:none;

}

body{

    background:#fff;

    color:#000;

}

}

/*==========================================
MINERAL PORTFOLIO IMAGES
==========================================*/

.mineral-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin-top:40px;
}

.mineral-card{
    background:#242424;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.3);
    transition:.35s ease;
}

.mineral-card:hover{
    transform:translateY(-8px);
}

.mineral-card img{
    width:100%;
    height:230px;
    object-fit:cover;
    display:block;
}

.mineral-content{
    padding:22px;
}

.mineral-content h3{
    color:#D4AF37;
    margin-bottom:12px;
}

.mineral-content p{
    color:#d8d8d8;
    margin:0;
    line-height:1.7;
}

@media(max-width:768px){

.mineral-grid{
    grid-template-columns:1fr;
}

.mineral-card img{
    height:210px;
}

}

.info-card{
    background:#242424;
    padding:30px;
    border-radius:15px;
    border-top:4px solid #D4AF37;
    border:1px solid rgba(255,255,255,0.15);

    box-shadow:
        0 8px 25px rgba(0,0,0,0.35),
        0 0 20px rgba(255,255,255,0.18);

    transition:all 0.35s ease;
}

.info-card:hover{
    transform:translateY(-10px);

    box-shadow:
        0 12px 35px rgba(0,0,0,0.45),
        0 0 35px rgba(255,255,255,0.35);
}

.footer{
    background:#111;
    color:#fff;
    padding:60px 0 20px;
    border-top:3px solid #D4AF37;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.footer-column h3{
    color:#D4AF37;
    margin-bottom:15px;
    font-size:22px;
}

.footer-column p,
.footer-column a{
    color:#d9d9d9;
    line-height:1.8;
    text-decoration:none;
}

.footer-column a:hover{
    color:#D4AF37;
}

.footer-bottom{
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid #333;
    text-align:center;
    color:#aaa;
}

/* Responsive Footer */

@media (max-width:992px){
    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:768px){
    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }
}
.mineral-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
    gap:30px;
    width:100%;
}

.mineral-card{
    width:100%;
    overflow:hidden;
    border-radius:15px;
    background:#242424;
    box-shadow:0 10px 25px rgba(0,0,0,.3);
}

.mineral-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.mineral-content{
    padding:20px;
}

/*==========================================
SEND MESSAGE BUTTON
==========================================*/

.contact-form button,
.send-btn{

    width:100%;
    padding:16px 30px;

    background:linear-gradient(135deg,#D4AF37,#F4D03F);

    color:#181818;

    border:none;

    border-radius:50px;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:all .35s ease;

    letter-spacing:1px;

    box-shadow:0 8px 20px rgba(212,175,55,.35);

}

.contact-form button:hover,
.send-btn:hover{

    transform:translateY(-4px);

    background:linear-gradient(135deg,#E6C65C,#FFD700);

    box-shadow:0 15px 30px rgba(212,175,55,.5);

}

.contact-form button:active,
.send-btn:active{

    transform:scale(.98);

}

.menu-toggle{
    display:none;
    font-size:30px;
    color:#D4AF37;
    cursor:pointer;
}

@media (max-width:768px){

    .menu-toggle{
        display:block;
    }

    nav{
        display:none;
    }

    nav.active{
        display:flex;
        flex-direction:column;
        background:#181818;
        width:100%;
        padding:20px;
    }
}