/* North Indian Temples - CSS Stylesheet */

:root {
    --primary-color: #d32f2f;
    --secondary-color: #ff9800;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f5f5f5;
    --border-color: #ddd;
    --white: #fff;
}

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

html, body {
    font-family: Barlow, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.navbar-brand .logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
/*
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
}*/

.hero {/*
    background: url(https://pikme.org/spiritual-tour/assets/images/states/banner-spiritual.webp) no-repeat center center / cover;*/
	background: url("https://pikme.in/cdn/spiritual-tour/spiritual-tour-banner/banner-spiritual.webp") no-repeat center center / cover;
	
	  
    color: white;
    padding: 140px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Search Section */
.search-section {
    padding: 40px 20px;
    background-color: var(--bg-light);
}

.search-form {
    display: flex;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.search-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
}

.search-form button {
    padding: 12px 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b71c1c;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #f57c00;
}

.btn-red {
    background-color: var(--primary-color);
    color: var(--white);
	width:100%;
}

.btn-red:hover {
    background-color: #b71c1c;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-search {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
}

.btn-contact {
	width: 100%;
    margin-top: 0px;
    background-color: #e53935 !important;
    color: #fff !important;
}

.btn-contact:hover {
    background-color: #45a049;
}

/* States Grid */
.states-section {
    padding: 60px 20px;
}

.states-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.state-card {
    background-color: var(--white);
    border: 2px solid #dbdbdb;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.state-card:hover .state-image img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.state-card:hover .state-image:hover img {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}

.state-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.state-info {
    padding: 15px;
}

.state-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #060606;
    font-weight: 600;
}

.region {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dfdfdf;
    position: relative;
    padding-left:15px;
}
a{text-decoration: none;}
.region .fa{    font-size: 19px;
    color: #d32f2f;
    position: absolute;
    top: 2px;
    left: 0px;}

.temple-count {
    color: var(--primary-color);
    margin-bottom: 0px;
    font-size: 15px;
	
}

.featured-temple {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 0px;
    
}

/* Temples Grid */
.temples-section {
    padding: 60px 20px;
}

.temples-section h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.temples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.temple-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.temple-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);border-color: #d32f2f;
}

.temple-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.temple-header h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.location {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 5px;
}

.state {
    color: var(--primary-color);
    font-size: 13px;
}

.temple-deity {
    padding: 0 20px;
    margin: 15px 0;
    color: #000;
}

.temple-description {
	padding: 0 20px;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
	width: 100%;
	white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.temple-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

/* Temple Detail */
.temple-detail {
    padding: 40px 20px;
}

.back-link {
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-block;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

.temple-detail-header {
    margin-bottom: 40px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 20px;
}

.temple-detail-header h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.state-location {
    color: var(--text-light);
    font-size: 16px;
}

.temple-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.detail-section {
   /*  margin-bottom: 40px;
    padding-bottom: 30px;
   border-bottom: 1px solid var(--border-color);
	*/
	float: left;
    width: 100%;
	margin-top: 45px;
}

.detail-section-deity{background-color: #f9fafb;
    border: 1px solid #eee5e7;
    border-radius: 5px;
    padding: 15px;}
	
	.detail-section-Opening,
	.detail-section-founded{
		background-color: #eff6ff;
    border: 1px solid #bedbff;
    border-radius: 5px;
    padding: 15px;
		
	}
	.detail-section-Opening p, .detail-section-founded p, .detail-section-deity p{margin-bottom:0px;}
.detail-section-importance{
		background-color: #fffbeb;
    border: 1px solid #fee685;
    border-radius: 5px;
    padding: 15px;
		
	}
	.detail-section-functions ul li{    background-color: #f9fafb;
    border: 1px solid #eee5e7;
    border-radius: 5px;
    padding: 15px;}
	
	
	.detail-section-volunteer{background-color: #faf5ff;
		border: 1px solid #e9d4ff;
    border-radius: 5px;
    padding: 15px;
		
	}
.detail-section h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.detail-section h4 {
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.detail-section ul {
    list-style-position: inside;
    color: var(--text-light);    padding: 0px;
}

.detail-section-directions div{background-color: #f9fafb;
    border: 1px solid #eee5e7;
    border-radius: 5px;
    padding: 15px;margin-bottom: 15px;}
	.detail-section-directions div:last-child{margin-bottom: 0px;}
.detail-section-directions div h4{font-size: 16px;
    margin-top: 2px;
    margin-bottom: 0px;    position: relative;
    padding-left: 20px;}
	
	.detail-section-directions div:last-child h4{padding-left: 0px;}
	
	.detail-section-directions div h4 .fa{position: absolute;     left: 0px;     top: 3px;}
.detail-section-directions div p{    margin-bottom: 0px;}	
	
	
	
.season-info-bestTime{display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;}	
	
	
.season-info-bestTime p{margin-bottom: 0rem;}	
	
.season-info-bestTime h4{margin-top: 0px;}		
	
	
	
.detail-section li {
    margin-bottom: 8px;
}

.highlight {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.reach-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.reach-info div {
    padding: 15px;
    background-color: var(--bg-light);
    border-radius: 5px;
}

.detail-section-distance{}
.detail-section-distance div{background-color: #f9fafb;
    border: 1px solid #eee5e7;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;}
	.detail-section-distance div h4{margin: 0px 0px 5px 0px;}
	.detail-section-distance div p{margin: 0px;}
	
.season-info {
    background-color: #f9fafb;
    border: 1px solid #eee5e7;
    border-radius: 5px;
    padding: 15px;
    
}

.distance-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.distance-table th,
.distance-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.distance-table th {
    background-color: var(--bg-light);
    font-weight: bold;
}

/* Book Now Box */
.book-now-box {
   /* background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 25px;
    position: sticky;
    top: 100px;*/
}

.sp-banner-tp{
	background: #ffebeb;
    padding: 0rem 1rem 4rem 1rem;
    float: left;
    width: 100%;
}
.sp-banner{
	background: #d32f2f;
    color: var(--white);
    
    padding: 36px 48px;
    
    margin: 0 auto;
    box-sizing: border-box;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.04);
    text-align: center;
    border-radius: 5px;
  }

  .sp-banner h1{
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 700;
  }

  .sp-banner p{
    margin: 0 0 26px;
    font-size: 15px;
    opacity: 0.95;
  }

  .sp-actions{
    display: inline-flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

.sp-banner .btn{
    display: inline-block;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid var(--white);
    text-decoration: none;
    line-height: 1;
    transition: transform .08s ease, opacity .12s ease;
  }

.sp-banner .btn:active{ transform: translateY(1px); }

  /* White filled button (left) */
.sp-banner .btn--white{
    background: var(--white);
    color:#d32f2f;
    box-shadow: none;
  }

  /* Outlined button (right) */
.sp-banner .btn--outline{
    background: transparent;
    color: var(--white);
  }

  /* Small responsive tweaks */
  @media (max-width:560px){
    .sp-banner{
      padding: 24px;
      border-radius: 10px;
    }
    .sp-banner h1{ font-size: 20px; }
    .sp-banner p{ font-size: 14px; margin-bottom:18px; }
    .sp-banner .btn{ padding: 10px 18px; font-size:14px; }
  }

.book-now-box h2 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 20px;
}

.highlights-box {
    
        border: 2px solid #d32f2f;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;background-color: #fffaeb;float: left;width: 100%;
}
.highlights-box{}
.highlights-box h3 {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.highlight-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.highlight-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.highlight-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.highlight-item p {
    color: var(--text-light);
    font-size: 14px;
}

.contact-box {
	background-color: #f9fafb;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}
.book-now-box h3{color: var(--primary-color);}
.book-now-box .fa{color: var(--primary-color);    position: absolute;
    top: 16px;
    left: 6px;}
.contact-item {
	display: flex;
    gap: 20px;
	padding: 1px 1px 10px 45px;
	position: relative;
	/*
    display: flex;
    gap: 12px;
    padding: 12px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    margin-bottom: 10px;*/
}
.detail-section_Location{
	background-color: #f9fafb;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;    margin-top: 0px;

	
}
.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: var(--text-dark);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Tour Packages Box */
.tour-packages-box {
	    background: linear-gradient(135deg, #fff5f5, #ffe8e8);
    border-top: 3px solid #d32f2f;
    margin: 2rem 0 0rem 0;
    padding: 4rem 1rem;
    float: left;
    width: 100%;
}

.tour-packages-box h2 {
    color: #1a1a1a;
    margin-bottom: .5rem;
    font-size: 2rem;
    font-weight: 700;text-align: center;
}

.tour-packages-box > p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;text-align: center;
}

.package-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
	width: 47%;
    margin: 10px;    float: left;
}

.package-card i {
	font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.package-card ul li .fa {
	font-size: 15px;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: absolute;
    left: -21px;top:3px;
}

.package-card ul li .fa-calendar-o{font-size: 12px;top: 7px;}
.package-card ul li .fa-users{font-size: 12px;top: 7px;}


.package-card h3 {
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 800;
    margin-top: 15px;
}

.package-card p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 15px;
}

.package-card ul {
    text-align: left;
    list-style-position: inside;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 13px;list-style-type: none;padding-left: 20px;
}

.package-card li {
    margin-bottom: 5px;position:relative;font-size: 15px;
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(211, 47, 47, 0.2);
}

.contact-info-wrapper h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-info-card {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.contact-info-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-info-card h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-info-card p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

/* Messages */
.success-message,
.error-message {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Features Section */
.features-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.features-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.page-info {
    color: var(--text-light);
}

/* Error Section */
.error-section {
    padding: 100px 20px;
    text-align: center;
}

.error-content h1 {
    font-size: 72px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.error-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.error-content p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.no-results p {
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 40px 20px 20px;
    margin-top: 60px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer-section p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--secondary-color);
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-content p {
        font-size: 16px;
    }

    .search-form {
        flex-direction: column;
    }

    .states-grid,
    .temples-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .temple-detail-content {
        grid-template-columns: 1fr;
    }

    .book-now-box {
       /* position: static;*/
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .reach-info {
        grid-template-columns: 1fr;
    }

    .detail-section h2 {
        font-size: 20px;
    }

    .temple-detail-header h1 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        padding: 10px 15px;
    }

    .navbar-brand .logo {
        font-size: 18px;
    }

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

    .states-section h2,
    .temples-section h1,
    .contact-section h1 {
        font-size: 24px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .temple-detail-header h1 {
        font-size: 20px;
    }
}
