/* ==========================
   CONTACT PAGE
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#0b0b0b;
    color:#fff;
    font-family:'Poppins',sans-serif;
}

/* ==========================
HEADER
========================== */

.page-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 20px;

    background:rgba(0,0,0,.55);
    backdrop-filter:blur(15px);
}

.logo{
    font-family:'Cinzel',serif;
    color:#C8A45D;
    font-size:18px;
    letter-spacing:2px;
}

.page-header nav{
    display:flex;
    gap:18px;
}

.page-header nav a{
    color:white;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

.page-header nav a:hover{
    color:#C8A45D;
}

/* ==========================
HERO
========================== */

.contact-hero{

    height:100vh;

    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.75)),
    url("images/contact-bg.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:25px;
}

.contact-content span{

    color:#C8A45D;

    letter-spacing:4px;

    font-size:13px;

    text-transform:uppercase;
}

.contact-content h1{

    margin-top:18px;

    font-size:48px;

    font-family:'Playfair Display',serif;

    line-height:1.1;
}

.contact-content p{

    margin-top:22px;

    color:#d6d6d6;

    line-height:1.8;

    font-size:16px;
}

/* ==========================
CARDS
========================== */

.contact-cards{

    width:92%;
    max-width:450px;

    margin:70px auto;

    display:flex;

    flex-direction:column;

    gap:22px;
}

.contact-card{

    background:#151515;

    border:1px solid rgba(200,164,93,.25);

    border-radius:22px;

    padding:35px 25px;

    text-align:center;

    transition:.35s;
}

.contact-card:hover{

    transform:translateY(-6px);

    border-color:#C8A45D;

    box-shadow:0 0 30px rgba(200,164,93,.18);
}

/* ==========================
ICONS
========================== */

.contact-icon{

    width:85px;

    height:85px;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:38px;

    color:#C8A45D;

    border:2px solid #C8A45D;

    background:rgba(200,164,93,.08);

    box-shadow:
    0 0 18px rgba(200,164,93,.20),
    inset 0 0 12px rgba(200,164,93,.15);

    margin-bottom:22px;
}

.contact-card h3{

    font-size:24px;

    margin-bottom:12px;

    color:#fff;
}

.contact-card p{

    color:#c9c9c9;

    line-height:1.7;

    font-size:15px;
}

/* ==========================
WHATSAPP CTA
========================== */

.whatsapp-section{

    width:92%;

    max-width:500px;

    margin:80px auto;

    background:#141414;

    border:1px solid rgba(200,164,93,.25);

    border-radius:25px;

    padding:45px 30px;

    text-align:center;
}

.whatsapp-section h2{

    font-size:34px;

    font-family:'Playfair Display',serif;

    color:white;

    margin-bottom:18px;
}

.whatsapp-section p{

    color:#cfcfcf;

    line-height:1.8;

    margin-bottom:35px;
}

.whatsapp-btn{

    display:inline-block;

    background:#C8A45D;

    color:#111;

    text-decoration:none;

    padding:18px 38px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;
}

.whatsapp-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 10px 35px rgba(200,164,93,.35);
}

/* ==========================
TABLET
========================== */

@media(min-width:768px){

.contact-cards{

display:grid;

grid-template-columns:repeat(2,1fr);

max-width:900px;

gap:30px;
}

.contact-content h1{

font-size:70px;
}

.contact-content p{

font-size:19px;
}

.whatsapp-section{

max-width:700px;
}

}

/* ==========================
DESKTOP
========================== */

@media(min-width:1100px){

.contact-cards{

grid-template-columns:repeat(4,1fr);

max-width:1300px;
}

.page-header{

padding:20px 70px;
}

.logo{

font-size:24px;
}

.page-header nav{

gap:35px;
}

.page-header nav a{

font-size:16px;
}

.contact-content h1{

font-size:90px;
}

.contact-content p{

max-width:700px;

margin:auto;

margin-top:25px;
}

}