

:root {
   --primary-bg: #ffffff;
   --secondary-bg: #f9f9f9;
   --text-color: #333333;
   --accent-color: #e67e22;
   --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


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


body {
   font-family: var(--font-main);
   background-color: var(--primary-bg);
   color: var(--text-color);
   line-height: 1.6;
}


a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }


.container {
   max-width: 1100px;
   margin: 0 auto;
   padding: 0 20px;
}


.section { padding: 60px 0; }
.section-title {
   text-align: center;
   font-size: 2rem;
   margin-bottom: 40px;
   color: var(--accent-color);
   text-transform: uppercase;
   letter-spacing: 1px;
}


header {
   background: var(--primary-bg);
   box-shadow: 0 2px 5px rgba(0,0,0,0.05);
   position: sticky;
   top: 0;
   z-index: 1000;
}


.header-content {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px 20px;
}


.logo-link {
   text-decoration: none;
   color: inherit;
}


.logo {
   display: flex;
   align-items: baseline;
   line-height: 1;
}


.script-devanagari {
   font-family: 'Yatra One', system-ui;
   font-size: 3.2rem;
   color: var(--accent-color);
   text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}


.script-roman {
   font-family: 'Cinzel', serif;
   font-size: 2.8rem;
   font-weight: 600;
   letter-spacing: 2px;
   color: #2c3e50;
   text-transform: uppercase;
}






.nav-links { display: flex; gap: 20px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; }
.nav-links a:hover { color: var(--accent-color); }










.hero {
   position: relative;
   width: 100%;
   height: 60vh;
   overflow: hidden;
}


.hero img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}


.hero-text {
   position: absolute;
   bottom: 20px;
   left: 20px;
   background: rgba(255, 255, 255, 0.9);
   padding: 15px 25px;
   border-left: 5px solid var(--accent-color);
}


.grid-2 {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
}


.card {
   border: 1px solid #eee;
   padding: 30px;
   text-align: center;
   border-radius: 8px;
   transition: transform 0.2s;
}


.card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }


.card h3 { margin-bottom: 15px; }


.btn {
   display: inline-block;
   margin-top: 15px;
   padding: 10px 25px;
   background-color: var(--accent-color);
   color: #fff;
   border: none;
   border-radius: 4px;
   cursor: pointer;
}


.btn:hover { opacity: 0.9; }


.bg-light { background-color: var(--secondary-bg); }


.grid-3 {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 30px;
}


.art-piece { text-align: center; }
.art-piece img {
   width: 100%;
   height: 250px;
   object-fit: cover;
   margin-bottom: 15px;
   border-radius: 4px;
}
.art-piece h4 { font-size: 1.2rem; margin-bottom: 5px; }
.art-piece p { color: #666; font-size: 0.9rem; font-style: italic; }


.testimonials {
   display: flex;
   flex-wrap: wrap;
   gap: 30px;
   justify-content: center;
}


.quote-box {
   background: #fff;
   border-left: 4px solid var(--accent-color);
   padding: 20px;
   max-width: 400px;
   box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}


.quote-box span {
   display: block;
   margin-top: 10px;
   font-weight: bold;
   color: var(--accent-color);
}
footer {
   background-color: #222;
   color: #fff;
   padding: 40px 0;
   margin-top: 40px;
}


.footer-content {
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
}
