/* ===========================
   Global Settings
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Cairo',sans-serif;
    scroll-behavior:smooth;
}

html,
body{
    margin:0;

    padding:0;
    
    width:100%;
    
    overflow-x:hidden;
}

body{
    background:#f7f7f7;
    color:#333;
    line-height:1.7;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

/* ===========================
   Header
=========================== */

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;

    padding:18px 6%;

    background:#fff;

    position:sticky;
    top:0;
    z-index:999;

    box-shadow:0 5px 20px rgba(0,0,0,.08);
    
    width:100%;

    left:0;

    right:0;
}

.logo img{
    width:120px;
    height:auto;
    object-fit:contain;
}
.logo img{
    transition:.3s;
}

.logo img:hover{
    transform:scale(1.05);
}

nav{
    display:flex;
    align-items:center;
    gap:25px;
}

nav a{
    text-decoration:none;
    color:#b8860b;
    font-weight:700;
    position:relative;
    transition:.3s;
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#c89b3c;
    transition:.3s;
}

nav a:hover::after{
    width:100%;
}

nav a:hover{
    color:#000;
}

/* ===========================
   Hero Section
=========================== */

.hero{

    width:100%;

    min-height:70vh;

    background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url("gold.png");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-direction:column;

    text-align:center;

    color:#fff;

    padding:80px 20px;

}

/* Company Name */

.company-title{

    font-size:clamp(3.8rem,8vw,5.5rem);

    font-weight:900;

    line-height:1.2;

    color:#fff;

    text-shadow:0 5px 18px rgba(0,0,0,.45);

    margin-bottom:25px;

}

.company-title span{

    display:block;

    margin-top:12px;

    font-size:clamp(1rem,2vw,1.7rem);

    color:#f5df9b;

    font-weight:400;

    letter-spacing:1px;

}

.hero p{

    font-size:clamp(18px,2vw,24px);

    margin-bottom:35px;

}

/* Button */

.btn{

    display:inline-block;

    padding:16px 38px;

    background:#c89b3c;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-size:18px;

    font-weight:bold;

    cursor:pointer;

    transition:all .35s ease;

}

.btn:hover{
    background:#000;
    transform:translateY(-4px) scale(1.05);
    box-shadow:0 12px 30px rgba(0,0,0,.3);
}

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

.about,
.work,
.map{

    width:95%;

    max-width:1400px;

    margin:35px auto;

    padding:80px 10%;

    background:#fff;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.about h2,
.work h2,
.map h2{

    color:#b8860b;

    font-size:35px;

    margin-bottom:20px;

    letter-spacing:.5px;

}

.off{

    color:#d40000;

    font-weight:bold;

}

/* ===========================
   Google Map
=========================== */

.map iframe{

    width:100%;

    height:450px;

    border:none;

    border-radius:15px;

    margin-top:20px;

}

/* ===========================
   Contact Section
=========================== */

.contact{

    background:
    linear-gradient(135deg,#b8860b,#d8b45d);

    color:#fff;

    text-align:center;

    padding:90px 10%;

}

.contact h2{

    font-size:48px;

    margin-bottom:15px;

    letter-spacing:.5px;

}

.contact p{

    font-size:22px;

    margin-bottom:45px;

}

/* Social */

.social{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:20px;

}

.social a{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:15px;

    padding:22px;

    text-decoration:none;

    background:#fff;

    color:#b8860b;

    border-radius:15px;

    font-size:20px;

    font-weight:bold;

    transition:all .35s ease;

}

.social a:hover{

    background:#000;

    color:#fff;

    transform:
    translateY(-8px)
    scale(1.03);

}

.social i{

    font-size:34px;

}

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

footer{

    background:#111;

    color:#fff;

    text-align:center;

    padding:25px;

    font-size:15px;

}

/* ===========================
   Tablets
=========================== */

@media (max-width:992px){

header{

    justify-content:center;

    gap:20px;

}

nav{

    justify-content:center;

    flex-wrap:wrap;

}

.company-title{

    font-size:clamp(3rem,7vw,5rem);

}

.about,
.work,
.map{

    width:95%;

}

}

/* ===========================
   Phones
=========================== */

@media (max-width:768px){

header{

    flex-direction:column;

    padding:20px;

}

.logo img{

    width:85px;

}

nav{

    gap:18px;

    justify-content:center;

}

.hero{

    min-height:90vh;

    padding:120px 20px 80px;

}

.company-title{

    font-size:clamp(2.5rem,10vw,4rem);

}

.company-title span{

    font-size:1rem;

}

.hero p{

    font-size:18px;

}

.about,
.work,
.map,
.contact{

    width:95%;

    padding:50px 20px;

}

.contact h2{

    font-size:36px;

}

.contact p{

    font-size:18px;

}

.social{

    grid-template-columns:1fr;

}

.btn{

    width:220px;

}

footer{

    font-size:14px;

}

}

