/* ============================================
   ANCIENT MUSEUM - LIGHT THEME
   Elegant Hindu Temple Aesthetics
   ============================================ */

/* CSS Variables - Light Temple Palette */
:root {
    /* Colors - Light & Elegant */
    --primary-gold: #C9A961;
    --dark-gold: #B8932F;
    --light-gold: #E8D7A6;
    --accent-red: #C41E3A;
    --cream: #FFF8F0;
    --light-cream: #FFFBF7;
    --medium-cream: #F5EDE3;
    --marble-white: #F9F6F2;
    --text-dark: #2C2416;
    --text-medium: #5C4A35;
    --text-light: #8B7355;
    --border-gold: #D4AF37;
    --shadow-soft: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.12);
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}




.homepage_banner .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(26, 20, 16, 0.7) 100%);
    pointer-events: none;
}

   
   
.homepage_banner  .hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--light-cream), var(--cream));
}

.homepage_banner  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.homepage_banner  .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.homepage_banner  .hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
	z-index: 1;
}

 .homepage_banner  .hero-content {
	position: absolute;
	z-index: 9;
	text-align: center;
	padding: var(--spacing-lg) 0;
	left: 0;
	right: 0;
}

.homepage_banner  .hero-subtitle {
    font-size: 1.3rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.homepage_banner .hero-title {
    margin-bottom: 0 !important;
     color: #fff;
}

.homepage_banner  .hero-title .highlight {
     color: #fff;
    position: relative;
}

.homepage_banner  .hero-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.4rem;
     color: #fff;
    line-height: 1.9;
}
.homepage_banner  .hero-mandala {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.2;
}
.homepage_banner  .hero-mandala img {
	width: 800px;
	height: 800px;
	object-fit: contain;
	animation: rotate-slow 9s linear infinite;
}
/* Animations */
@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes float-up {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.2;
  }
  50% {
    transform: translateY(-12.5rem) translateX(1.25rem);
    opacity: 0.15;
  }
  100% {
    transform: translateY(-25rem) translateX(-0.625rem);
    opacity: 0;
  }
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--light-cream), var(--cream));
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

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

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
	z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-lg) 0;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-title {
	margin-bottom: 2rem;
	color: #FFC650;
}

.hero-title .highlight {
    color: var(--primary-gold);
    position: relative;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.9;
}





/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: white;
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-gold), var(--primary-gold));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

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




/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

p {
 	font-size: 1.4rem;
	  color:var(--text-dark);
	line-height: 1.9;
	font-weight: 600;
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--dark-gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   LAYOUT & CONTAINERS
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

/* ============================================
   NAVIGATION WITH DROPDOWN
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 248, 240, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--light-gold);
    box-shadow: 0 2px 20px var(--shadow-soft);
    z-index: 1000;
    transition: var(--transition-medium);
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
	background: rgba(255, 248, 240, 0.98);
}

.nav-brand .logo {
    font-size: 1.75rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
	font-family: var(--font-heading);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0.75rem 1.5rem;
	color: var(--text-dark);
	transition: var(--transition-fast);
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-weight: bold;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary-gold);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.25rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 30px var(--shadow-medium);
    border: 1px solid var(--light-gold);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-medium);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 1.05rem;
    transition: var(--transition-fast);
    border-bottom: 1px solid var(--medium-cream);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: var(--light-cream);
    color: var(--primary-gold);
    padding-left: 2rem;
}

/* Buy AM Coin Button */
.buy-coin-btn {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: white !important;
    padding: 0.75rem 2rem !important;
    border-radius: 30px;
    font-weight: 600;
    margin-left: 1rem;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.buy-coin-btn:hover {
    background: linear-gradient(135deg, var(--dark-gold), var(--primary-gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
    color: white !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--light-cream), var(--cream));
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

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

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at center, #000 0%, rgba(255, 248, 240, 0.71) 100%);
	z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-title {
    margin-bottom: 0;
    color: #fff;
}

.hero-title .highlight {
    color: var(--primary-gold);
    position: relative;
}

.hero-description {
    max-width: 930px;
    margin: 0 auto 3rem;
    font-size: 1.4rem;
    color: #fff; font-weight:600;
    line-height: 1.9;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: white;
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-gold), var(--primary-gold));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

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

/* ============================================
   FEATURED ARTIFACTS
   ============================================ */
.featured-artifacts {
    background: white;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 1.2rem;
    position: relative;
}

.section-title::after {
/*    content: '';
    display: block;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: 1rem auto 0;*/
 
	content: "";
	background-image: url("https://ancientmuseum.org/images/boder_icon.png");
	position: absolute;
	top: 60px;
	left: 0;
	right: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 300px;
	z-index: 9;
	opacity: 1;
	bottom: 0;
	height: 22px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color:var(--text-dark);
    margin-bottom: 4rem;
    font-style: italic;
	line-height: 1.9;
	font-weight: 600;
}
 
.artifacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.artifact-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-soft);
    transition: var(--transition-medium);
    border: 1px solid var(--medium-cream);
}

.artifact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-medium);
}

.artifact-image-wrapper {
	position: relative;
	height: 450px;
	background: linear-gradient(135deg, var(--light-cream), white);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3rem 3rem 0;
	overflow: hidden;
}

.artifact-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1), transparent 70%);
    animation: glow-pulse 4s ease-in-out infinite;
}

.artifact-image-wrapper img {
    position: relative;
    z-index: 2;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    /*filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));*/
}

.artifact-badge {
	position: absolute;
	top: 0.6rem;
	right: 0.6rem;
	background: white;
	color: var(--primary-gold);
	padding: 0.35rem 1rem;
	border-radius: 30px;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.95rem;
	box-shadow: 0 4px 15px var(--shadow-soft);
	border: 1px solid var(--light-gold);
	z-index: 9999;
}
.artifact-content {
	padding: 2.5rem;
	background: white;
	text-align: center;
}

.artifact-title {
	font-size: 2.5rem;
	margin-bottom: 0;
	color: var(--text-dark);
	text-align: center;
}

.artifact-origin {
	color: #000;
	font-size: 1.3rem;
	margin-bottom: 2rem;
	font-style: italic;
	text-align: center;
}

.artifact-specs {
    background: var(--light-cream);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem; position:relative;
   /* border-left: 4px solid var(--primary-gold);*/
}
.artifact-specs::after {
	content: "";
	background-image: url("https://ancientmuseum.org/images/boder_left.png");
	position: absolute;
	top: 0;
	left: -10px;
	background-repeat: no-repeat;
	background-position: left;
	background-size: 30px;
	z-index: 9;
	opacity: 1;
	bottom: 0;
	height: 280px;
	right: 0;
}
 
.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--medium-cream);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--text-light);
    font-weight: 600;font-size: 1.2rem;
}

.spec-value {
    color: var(--text-dark);
    font-weight: 600;font-size: 1.2rem;
}

.artifact-description {
	margin-bottom: 2rem;
	font-size: 1.4rem;
	color: var(--text-dark);
	line-height: 1.9;
	font-weight: 600;
	text-align: center;
	margin: ;
}

/* ============================================
   MUSEUM MISSION
   ============================================ */
.museum-mission {
	background: rgba(255, 248, 240, 0.98);
	position: relative;
	overflow: hidden; position:relative;
}
.museum-mission::before {
	content: "";
	background-image: url("https://ancientmuseum.org/images/artifacts/vajra-main.png");
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	z-index: 9;
	opacity: 0.05;
}


.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-text {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text-dark);
    color: var(--cream);
    padding: 3rem 0 1.5rem;
    border-top: 3px solid var(--primary-gold);
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 248, 240, 0.8);
    font-size: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 248, 240, 0.8);
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 97, 0.3);
    color: rgba(255, 248, 240, 0.6);
    font-size: 0.95rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .artifacts-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }
    
    .artifact-image-wrapper {
        height: 350px;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes glow-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}
 @media only screen and (max-width: 767px) {

.section-title::after {
 
	top: 34px; 
	background-size: 170px; 
}

 }
