/*
Theme Name: Ramshila Pro
Theme URI: https://ramshila.com
Author: Ramshila
Description: Luxury Real Estate, Construction & Interior Design WordPress Theme
Version: 1.0
Text Domain: ramshila
*/

:root{
    --gold:#D4AF37;
    --black:#050505;
    --dark:#0d0d0d;
    --light:#ffffff;
    --gray:#888888;
    --border:#222222;
    --max-width:1200px;
}

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

html{
    scroll-behavior:smooth;
}

body{
    background:var(--black);
    color:var(--light);
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.7;
}

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

a{
    text-decoration:none;
    transition:.3s ease;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:var(--max-width);
    margin:auto;
}

/* ===========================
HEADER
=========================== */

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(0,0,0,.95);
    z-index:999;
    border-bottom:1px solid var(--border);
}

.header-inner{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 20px;
}

.logo img{
    height:60px;
    width:auto;
}

.main-menu{
    display:flex;
    gap:30px;
}

.main-menu a{
    color:var(--light);
    font-size:15px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.main-menu a:hover{
    color:var(--gold);
}

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

.hero{
    height:100vh;
    background:
    linear-gradient(
    rgba(0,0,0,.65),
    rgba(0,0,0,.65)),
    url('assets/images/hero.jpg');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
}

.hero-content{
    width:100%;
    max-width:800px;
}

.hero h1{
    font-size:72px;
    color:var(--gold);
    margin-bottom:15px;
}

.hero p{
    font-size:22px;
    margin-bottom:35px;
}

.hero-btn{
    background:var(--gold);
    color:#000;
    padding:15px 35px;
    display:inline-block;
    font-weight:700;
    border-radius:3px;
}

.hero-btn:hover{
    transform:translateY(-2px);
}

/* ===========================
SECTION COMMON
=========================== */

.section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    color:var(--gold);
    font-size:40px;
    margin-bottom:60px;
    text-transform:uppercase;
}

/* ===========================
WHAT WE DO
=========================== */

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.service-card{
    background:var(--dark);
    border:1px solid var(--gold);
    padding:35px 25px;
    text-align:center;
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-6px);
}

.service-card h3{
    color:var(--gold);
    margin-bottom:15px;
}

.service-card p{
    color:#cccccc;
    font-size:15px;
}

/* ===========================
INSTAGRAM
=========================== */

.instagram-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.instagram-item{
    background:#111;
    border:1px solid var(--gold);
    min-height:300px;
}

.instagram-button{
    text-align:center;
    margin-top:40px;
}

/* ===========================
WHY CHOOSE US
=========================== */

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.feature-box{
    border:1px solid var(--gold);
    padding:30px;
    text-align:center;
    background:#111;
}

.feature-box h4{
    color:var(--gold);
    margin-bottom:15px;
}

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

.contact-box{
    max-width:800px;
    margin:auto;
    border:1px solid var(--gold);
    padding:40px;
    background:#111;
}

.contact-box p{
    margin-bottom:15px;
    font-size:18px;
}

.contact-box strong{
    color:var(--gold);
}

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

.site-footer{
    background:#000;
    border-top:1px solid var(--border);
    padding:40px 20px;
    text-align:center;
}

.site-footer p{
    color:#999;
}

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

@media(max-width:992px){

.services-grid,
.features-grid{
grid-template-columns:repeat(2,1fr);
}

.hero h1{
font-size:50px;
}

}

@media(max-width:768px){

.main-menu{
display:none;
}

.hero{
text-align:center;
}

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

.hero p{
font-size:18px;
}

.services-grid,
.features-grid,
.instagram-grid{
grid-template-columns:1fr;
}

.section{
padding:70px 0;
}

.section-title{
font-size:30px;
}

.contact-box{
padding:25px;
}

}

/* ===========================
PAGE TEMPLATE
=========================== */

.page-content{
    max-width:900px;
    margin:auto;
    color:#dddddd;
    font-size:18px;
    line-height:1.9;
}

.page-content p{
    margin-bottom:20px;
}

.page-content h2,
.page-content h3,
.page-content h4{
    color:var(--gold);
    margin:30px 0 15px;
}

.page-content ul,
.page-content ol{
    margin-left:25px;
    margin-bottom:20px;
}