/* =====================================================
   HOTEL CARPETS INDIA
   MAIN.CSS
   Global Styles
===================================================== */

/* ===============================
   GOOGLE FONT
================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===============================
   CSS VARIABLES
================================ */

:root{

    --primary:#C8A96A;
    --primary-dark:#B18D4A;

    --dark:#111111;
    --dark-light:#222222;

    --white:#ffffff;

    --text:#444444;

    --light:#F8F8F8;

    --border:#ECECEC;

    --radius:14px;

    --transition:.35s ease;

    --shadow: 0 10px 35px rgba(0,0,0,.08);

    --container:1320px;

}

/* ===============================
   RESET
================================ */

*,
*::before,
*::after{

    margin:0;
    padding:0;

    box-sizing:border-box;

}

/* ===============================
   HTML
================================ */

html{

    scroll-behavior:smooth;

}

/* ===============================
   BODY
================================ */

body{

    font-family:'Poppins',sans-serif;

    color:var(--text);

    background:#fff;

    font-size:16px;

    line-height:1.8;

    overflow-x:hidden;
padding-top:82px;
}
 

 

/* ===============================
   IMAGES
================================ */

img{

    display:block;

    max-width:100%;

}

/* ===============================
   LINKS
================================ */

a{

    text-decoration:none;

    color:inherit;

    transition:var(--transition);

}

/* ===============================
   LISTS
================================ */

ul{

    list-style:none;

}

/* ===============================
   CONTAINER
================================ */

.container{

    width:min(var(--container),92%);

    margin:auto;

}

/* ===============================
   SECTION
================================ */

section{

    padding:100px 0;

}

/* ===============================
   HEADINGS
================================ */

h1{

    font-size:4rem;

    line-height:1.1;

    color:#222;

}

h2{

    font-size:2.9rem;

    line-height:1.2;

    color:#222;

}

h3{

    font-size:1.5rem;

    color:#222;

}

p{

    color:var(--text);

}

/* ===============================
   SECTION HEADING
================================ */

.section-heading{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.section-tag{

    display:inline-block;

    color:var(--primary);

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.section-heading h2{

    margin-bottom:20px;

}

.section-heading p{

    font-size:17px;

}

/* ===============================
   BUTTONS
================================ */

.btn,

.hero-buttons a,

.quote-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 30px;

    border-radius:40px;

    font-weight:600;

    cursor:pointer;

    transition:var(--transition);

}

.btn-primary{

    background:var(--primary);

    color:#fff;

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

.btn-outline{

    border:2px solid #fff;

    color:#fff;

}

.btn-outline:hover{

    background:#fff;

    color:#222;

}

/* ===============================
   HERO BUTTONS
================================ */

.hero-buttons{

    display:flex;

    gap:18px;

    justify-content:center;

    flex-wrap:wrap;

}

/* ===============================
   COMMON CARDS
================================ */

.card{

    background:#fff;

    border-radius:18px;

    box-shadow:var(--shadow);

}

/* ===============================
   ANIMATION
================================ */

.card,

img,

.btn{

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-8px);

}

/* ===============================
   UTILITIES
================================ */

.text-center{

    text-align:center;

}

.mb-20{

    margin-bottom:20px;

}

.mb-40{

    margin-bottom:40px;

}

.mt-40{

    margin-top:40px;

}

.hidden{

    display:none;

}

/* =====================================================
   HEADER & NAVIGATION
===================================================== */

/* ======================================
   HEADER
====================================== */

.site-header{

position:fixed;

top:0;

left:0;

width:100%;

height:82px;

background:#111;

z-index:9999;

box-shadow:0 5px 20px rgba(0,0,0,.12);

}

.site-header .container{

max-width:1320px;

width:92%;

margin:auto;

height:82px;

display:flex;

align-items:center;

justify-content:space-between;

gap:50px;

}

/* Header after scrolling */

.site-header.scrolled{

    background:#111;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}
 
 

/* =====================================
LOGO
===================================== */
  

.logo{

display:flex;

flex-direction:column;

justify-content:center;

min-width:250px;

}

.logo-line-1{

    font-size:30px;

    font-weight:700;

    color:#ffffff;

    letter-spacing:4px;

    text-transform:uppercase;

    transition:.35s;

}

.logo-line-2{

    margin-top:8px;

    font-size:12px;

    font-weight:500;

    color:var(--primary);

    letter-spacing:12px;

    text-transform:uppercase;

    transition:.35s;

}

.logo:hover .logo-line-1{

    color:var(--primary);

}

.logo:hover .logo-line-2{

    letter-spacing:14px;

}

/* Mobile */

@media(max-width:768px){

.logo-line-1{

font-size:22px;

letter-spacing:2px;

}

.logo-line-2{

font-size:10px;

letter-spacing:7px;

margin-top:5px;

}

}


 

/* ======================================
   NAVIGATION
====================================== */

nav{

margin-left:auto;

margin-right:40px;

}

 

.nav-links{

display:flex;

align-items:center;

gap:42px;

flex-wrap:nowrap;

}

.nav-links li{

    position:relative;

}

.nav-links a{

    color:#fff;

    font-size:15px;

    font-weight:500;

    letter-spacing:.3px;

    position:relative;

    padding:8px 0;

}

/* Hover */

.nav-links a:hover{

    color:var(--primary);

}

/* Active */

.nav-links a.active{

    color:var(--primary);

}

/* Underline */

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-4px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.35s;

}

.nav-links a:hover::after,

.nav-links a.active::after{

    width:100%;

}

/* ======================================
   REQUEST QUOTE
====================================== */

.quote-btn{

    padding:14px 32px;

    background:var(--primary);

    color:#fff;

    border-radius:40px;

    font-weight:600;

    transition:.35s;
    white-space:nowrap;

display:inline-flex;

align-items:center;

justify-content:center;


}

.quote-btn:hover{

    transform:translateY(-3px);

    background:var(--primary-dark);

}

/* ======================================
   MOBILE TOGGLE
====================================== */

.mobile-toggle{

    width:34px;

    display:none;

    cursor:pointer;

    z-index:10001;

}

.mobile-toggle span{

    display:block;

    height:3px;

    margin:7px 0;

    background:#fff;

    border-radius:5px;

    transition:.35s;

}

/* Hamburger Animation */

.mobile-toggle.active span:nth-child(1){

    transform:translateY(10px) rotate(45deg);

}

.mobile-toggle.active span:nth-child(2){

    opacity:0;

}

.mobile-toggle.active span:nth-child(3){

    transform:translateY(-10px) rotate(-45deg);

}

/* ======================================
   MOBILE MENU
====================================== */

@media(max-width:992px){

nav{

justify-content:flex-end;

}

.quote-btn{

display:none;

}

.mobile-toggle{

display:block;

}

.nav-links{

position:fixed;

top:82px;

right:-340px;

width:320px;

height:calc(100vh - 82px);

background:#111;

flex-direction:column;

align-items:flex-start;

gap:0;

padding:35px 0;

box-shadow:-10px 0 30px rgba(0,0,0,.20);

transition:right .35s ease;

overflow-y:auto;

}

.nav-links.active{

right:0;

}

.nav-links li{

width:100%;

}

.nav-links a{

display:block;

width:100%;

padding:18px 30px;

font-size:16px;

}

.nav-links a::after{

display:none;

}

}

/* ======================================
   SMALL MOBILE
====================================== */

@media(max-width:768px){

.site-header{

height:72px;

}

.site-header .container{

height:72px;

}

.logo img{

height:46px;

max-width:170px;

}

.nav-links{

top:72px;

height:calc(100vh - 72px);

width:280px;

}

}
/* ==========================================
FOOTER
========================================== */

.luxury-footer{

background:#111;

color:#aaa;

padding:80px 0 30px;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr 1.3fr;

gap:50px;

}

.footer-brand img{

height:60px;

margin-bottom:25px;

}

.footer-brand p{

line-height:1.9;

max-width:350px;

}

.footer-column h4{

color:#fff;

margin-bottom:25px;

font-size:18px;

position:relative;

}

.footer-column h4:after{

content:"";

display:block;

width:40px;

height:2px;

background:#C8A96A;

margin-top:10px;

}

.footer-column ul{

list-style:none;

padding:0;

}

.footer-column li{

margin-bottom:12px;

}

.footer-column a{

color:#aaa;

transition:.3s;

}

.footer-column a:hover{

color:#C8A96A;

padding-left:5px;

}

.contact-column p{

margin-bottom:18px;

}

.footer-social{

display:flex;

gap:14px;

margin-top:30px;

}

.footer-social a{

width:42px;

height:42px;

border:1px solid rgba(255,255,255,.12);

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

transition:.3s;

}

.footer-social a:hover{

background:#C8A96A;

color:#fff;

}

.luxury-footer hr{

margin:60px 0 30px;

border:none;

height:1px;

background:rgba(255,255,255,.08);

}

.footer-bottom{

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

gap:20px;

}

.footer-links{

display:flex;

gap:25px;

}

.footer-links a{

color:#888;

}

.footer-links a:hover{

color:#C8A96A;

}

@media(max-width:1100px){

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.footer-brand p{

max-width:100%;

}

.footer-brand img{

margin:0 auto 25px;

}

.footer-social{

justify-content:center;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

}

/* =====================================================
   FORMS
===================================================== */

form{

    background:#fff;

    padding:40px;

    border-radius:18px;

    box-shadow:var(--shadow);

}

label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

    color:#222;

}

input,
textarea,
select{

    width:100%;

    padding:15px 18px;

    border:1px solid var(--border);

    border-radius:10px;

    font-size:15px;

    margin-bottom:20px;

    font-family:inherit;

    transition:var(--transition);

}

textarea{

    resize:vertical;

    min-height:140px;

}

input:focus,
textarea:focus,
select:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 0 3px rgba(200,169,106,.15);

}

button{

    border:none;

    cursor:pointer;

    font-family:inherit;

}

/* =====================================================
   COMMON IMAGE EFFECTS
===================================================== */

.image-hover{

    overflow:hidden;

    border-radius:18px;

}

.image-hover img{

    transition:.45s ease;

}

.image-hover:hover img{

    transform:scale(1.06);

}

/* =====================================================
   COMMON CARD
===================================================== */

.shadow-card{

    background:#fff;

    border-radius:18px;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.shadow-card:hover{

    transform:translateY(-8px);

}

/* =====================================================
   WHATSAPP FLOAT
===================================================== */

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    z-index:999;

    transition:var(--transition);

}

.whatsapp-float img{

    width:65px;

    height:65px;

    border-radius:50%;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.whatsapp-float:hover{

    transform:scale(1.08);

}

/* =====================================================
   SCROLL TO TOP
===================================================== */

.scroll-top{

    position:fixed;

    right:25px;

    bottom:105px;

    width:48px;

    height:48px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:var(--transition);

    z-index:998;

}

.scroll-top.show{

    opacity:1;

    visibility:visible;

}

/* =====================================================
   UTILITY CLASSES
===================================================== */

.text-center{

    text-align:center;

}

.text-white{

    color:#fff;

}

.bg-light{

    background:#faf8f4;

}

.bg-dark{

    background:#111;

}

.mt-20{margin-top:20px;}
.mt-30{margin-top:30px;}
.mt-40{margin-top:40px;}
.mt-60{margin-top:60px;}

.mb-20{margin-bottom:20px;}
.mb-30{margin-bottom:30px;}
.mb-40{margin-bottom:40px;}
.mb-60{margin-bottom:60px;}

.py-80{

    padding:80px 0;

}

.py-100{

    padding:100px 0;

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1200px){

.footer-grid{

grid-template-columns:repeat(2,1fr);

gap:40px;

}

}

@media(max-width:992px){

h1{

font-size:3.2rem;

}

h2{

font-size:2.4rem;

}

section{

padding:80px 0;

}

}

@media(max-width:768px){

.footer-grid{

grid-template-columns:1fr;

}

.section-heading{

margin-bottom:50px;

}

.section-heading h2{

font-size:2rem;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.hero-buttons a{

width:240px;

}

form{

padding:30px 20px;

}

.whatsapp-float img{

width:58px;

height:58px;

}

}

@media(max-width:576px){

h1{

font-size:2.3rem;

}

h2{

font-size:1.8rem;

}

section{

padding:60px 0;

}

.container{

width:94%;

}

}