/*
Theme Name: Zenora Decor
Author: pimowebservices
Version: 1.0
*/

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

body{
    font-family:Arial, sans-serif;
    background:#fff;
}

/* HEADER */

header{
    position:relative;
    width:100%;
    top:0;
    left:0;
    padding:20px 5%;
    z-index:999;
}

header h1{
    color:white;
    font-size:35px;
}

nav ul{
    display:flex;
    gap:25px;
    list-style:none;
    margin-top:15px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

body{
    overflow-x:hidden;
}

/* HERO SECTION */

.hero-section{
    min-height:100vh;
    background:url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1600');
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    position:relative;
    padding:120px 20px;
}

.hero-section::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    top:0;
    left:0;
}

.hero-content{
    position:relative;
    z-index:2;
  
}

.hero-content h1{
    font-size:70px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:24px;
    margin-bottom:30px;
}

.shop-btn{
    background:white;
    color:black;
    padding:15px 35px;
    text-decoration:none;
    font-weight:bold;
    border-radius:5px;
}

/* CATEGORY SECTION */

.category-section{
    padding:80px 5%;
    text-align:center;
}

.category-section h2{
    font-size:40px;
    margin-bottom:40px;
}

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

.category-box{
    background:#f5f5f5;
    padding:60px 20px;
    border-radius:10px;
    font-size:24px;
    font-weight:bold;
    transition:0.3s;
}

.category-box:hover{
    background:black;
    color:white;
}

/* FOOTER */

footer{
    background:black;
    color:white;
    text-align:center;
    padding:25px;
}

/* LUXURY FOOTER */

.luxury-footer{
    background:url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1600');
    background-size:cover;
    background-position:center;
    position:relative;
    color:white;
    margin-top:80px;
}

.footer-overlay{
    background:rgba(0,0,0,0.8);
    padding:80px 5% 30px;
}

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

.footer-column h2,
.footer-column h3{
    margin-bottom:20px;
}

.footer-column p{
    line-height:1.8;
    color:#ddd;
}

.footer-column ul{
    list-style:none;
    padding:0;
}

.footer-column ul li{
    margin-bottom:12px;
}

.footer-column ul li a{
    color:#ddd;
    text-decoration:none;
    transition:0.3s;
}

.footer-column ul li a:hover{
    color:white;
}

.footer-bottom{
    text-align:center;
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,0.2);
    padding-top:20px;
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

.footer-grid{
    grid-template-columns:1fr;
}

.hero-content h1{
    font-size:42px;
}

.category-grid{
    grid-template-columns:1fr 1fr;
}

body,
html{
    overflow-x:hidden;
}

.category-section{
    position:relative;
    z-index:5;
    background:white;
}