
/* ===========================
   EKANKI CREATIONS
   Premium Coming Soon Website
=========================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f4eb;
    color:#333;
    overflow-x:hidden;
}

/* ===========================
      CONTAINER
=========================== */

.container{
    width:100%;
    max-width:1400px;
    margin:0 auto;
    padding:0 40px;
}

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

header{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    background:rgba(255,255,255,.15);
    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.25);
}

.nav{

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

height:90px;

position:relative;

}

/* ===========================
      LOGO
=========================== */

.logo img{

    height:90px;

    transition:.4s;

}

.logo img:hover{

    transform:scale(1.05);

}

/* ===========================
      HAMBURGER
=========================== */

.hamburger{

display:none;

width:35px;

cursor:pointer;

z-index:1001;

}

.hamburger span{

display:block;

height:3px;

margin:7px 0;

background:#4b3820;

transition:.35s;

border-radius:10px;

}

.hamburger.active span:nth-child(1){

transform:rotate(45deg) translate(7px,7px);

}

.hamburger.active span:nth-child(2){

opacity:0;

}

.hamburger.active span:nth-child(3){

transform:rotate(-45deg) translate(7px,-7px);

}
/* ===========================
      MENU
=========================== */

nav ul{

    display:flex;

    list-style:none;

    gap:40px;

}

nav a{

    text-decoration:none;

    color:#4c3b1f;

    font-weight:500;

    transition:.3s;

    position:relative;

}

nav a:hover{

    color:#b68a3d;

}

nav a::after{

    content:"";

    position:absolute;

    bottom:-8px;

    left:0;

    width:0;

    height:2px;

    background:#b68a3d;

    transition:.4s;

}

nav a:hover::after{

    width:100%;

}

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

.btn-header{

    background:linear-gradient(135deg,#b68a3d,#d7b36a);

    color:white;

    text-decoration:none;

    padding:13px 28px;

    border-radius:50px;

    transition:.4s;

    box-shadow:0 10px 30px rgba(182,138,61,.25);

}

.btn-header:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 40px rgba(182,138,61,.45);

}

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

.hero{
    position:relative;

    min-height:100vh;
    min-height:100svh;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:140px 20px 80px;

    overflow:hidden;

    background:
    linear-gradient(rgba(255,248,236,.82),
    rgba(255,248,236,.82)),
    url("images/background.jpeg");

    background-size:cover;
    background-position:center;
}

/* dark overlay */

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
    to bottom,
    rgba(255,255,255,.10),
    rgba(255,255,255,.55)
    );

}

/* ===========================
      HERO CONTENT
=========================== */

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

    width:100%;
    max-width:900px;

    margin:0 auto;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    animation:fadeUp 1.3s ease;
}

.hero-logo{

    width:clamp(90px,15vw,180px);

    margin-bottom:25px;

    animation:floatLogo 5s ease-in-out infinite;

}

/* ===========================
      TEXT
=========================== */

.tagline{

    color:#b68a3d;

    letter-spacing:4px;

    font-size:15px;

    margin-bottom:18px;

    font-weight:600;

}

.hero h1{

    font-size:clamp(42px,8vw,82px);

    color:#4b3820;

    letter-spacing:6px;

    margin-bottom:15px;

    font-family:'Cinzel',serif;

}

.hero h2{

    font-size:clamp(24px,4vw,40px);

    color:#73531d;

    margin-bottom:25px;

    font-family:'Cinzel',serif;

}

.subtitle{

    font-size:clamp(16px,2vw,23px);

    max-width:650px;

    margin:auto auto 45px;

}

/* ===========================
      BUTTON
=========================== */

.main-btn{

    display:inline-block;

    background:linear-gradient(135deg,#b68a3d,#e0bd71);

    color:white;

    text-decoration:none;

    padding:18px 42px;

    border-radius:60px;

    font-size:18px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 18px 45px rgba(182,138,61,.35);

}

.main-btn:hover{

    transform:translateY(-6px);

    box-shadow:0 28px 60px rgba(182,138,61,.50);

}

/* ===========================
      ANIMATIONS
=========================== */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes floatLogo{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}
/* ===========================
      FEATURES SECTION
=========================== */

.features{

    padding:120px 0;

    background:#ffffff;

}

.feature-grid{

    display:grid;

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

    gap:35px;

}

.card{

    background:white;

    padding:45px 30px;

    border-radius:22px;

    text-align:center;

    transition:.4s;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    border:1px solid rgba(182,138,61,.12);

}

.card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(182,138,61,.25);

}

.card i{

    font-size:48px;

    color:#b68a3d;

    margin-bottom:25px;

}

.card h3{

    margin-bottom:18px;

    font-size:24px;

    color:#4b3820;

}

.card p{

    color:#666;

    line-height:1.8;

}

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

footer{

    background:#222;

    color:white;

    padding-top:80px;

}

.footer-grid{

    display:grid;

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

    gap:50px;

    padding-bottom:50px;

}

.footer-grid h3{

    margin-bottom:20px;

    color:#d7b36a;

    font-size:24px;

}

.footer-grid p{

    line-height:1.9;

    color:#d8d8d8;

}

.footer-grid ul{

    list-style:none;

}

.footer-grid li{

    margin-bottom:15px;

    color:#d8d8d8;

    cursor:pointer;

    transition:.3s;

}

.footer-grid li:hover{

    color:#d7b36a;

    padding-left:6px;

}

/* ===========================
      SOCIAL ICONS
=========================== */

.social{
    display:flex;
    gap:18px;
    margin-top:20px;
}

.social a{
    text-decoration:none;
}

.social a i{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#333;
    color:#d7b36a;          /* Gold icon */
    cursor:pointer;
    transition:.35s;
    font-size:20px;
}

.social a i:hover{
    background:#b68a3d;      /* Gold background */
    color:#ffffff;           /* White icon */
    transform:translateY(-6px);
}

/* ===========================
      COPYRIGHT
=========================== */

.copyright{

    text-align:center;

    padding:30px;

    border-top:1px solid rgba(255,255,255,.08);

    color:#cfcfcf;

    font-size:15px;

}

/* ===========================
      SCROLLBAR
=========================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f3f3f3;

}

::-webkit-scrollbar-thumb{

    background:#b68a3d;

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:#8d6724;

}

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

@media(max-width:1000px){

.hero h1{

font-size:60px;

}

.hero h2{

font-size:30px;

}

.subtitle{

font-size:20px;

}

nav ul{

gap:22px;

}

}


/* ===============================
TABLET
================================ */

@media(max-width:992px){

.hero h1{

font-size:60px;

}

.hero h2{

font-size:32px;

}

.subtitle{

font-size:20px;

}

nav ul{

gap:25px;

}

}

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

@media(max-width:768px){

.container{

padding:0 20px;

}

.nav{

height:80px;

}

.hamburger{

display:block;

}

nav{

position:absolute;

top:80px;

left:0;

width:100%;

background:white;

box-shadow:0 15px 40px rgba(0,0,0,.08);

padding:0;

max-height:0;

overflow:hidden;

transition:max-height .35s ease;

}

nav.active{

max-height:420px;

}

nav ul{

display:flex;

flex-direction:column;

gap:0;

padding:15px 0;

}

nav li{

    width:100%;
    text-align:center;
    border-bottom:1px solid #ececec;

}

nav li:last-child{

    border-bottom:none;

}

nav a{

    display:block;
    padding:18px 20px;
    font-size:20px;

}

.btn-header{

display:none;

}

.hero{

padding:120px 20px 70px;

}

.hero-logo{

width:120px;

}

.hero h1{

font-size:44px;

letter-spacing:2px;

}

.hero h2{

font-size:28px;

}

.subtitle{

font-size:18px;

}

.main-btn{

width:220px;

text-align:center;

}

.feature-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.social{

justify-content:center;

}

}

/* ===============================
SMALL PHONES
================================ */

@media(max-width:480px){

.hero{

padding-top:110px;

}

.hero-logo{

width:90px;

}

.hero h1{

font-size:34px;

}

.hero h2{

font-size:22px;

}

.subtitle{

font-size:16px;

}

.main-btn{

width:100%;

max-width:220px;

}

}
