/* 
    Jaipur Jewellery Show - Premium Styles
    Gold & Black Theme
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@300;400;600&display=swap');

:root {
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #996515;
    --black: #000000;
    --rich-black: #0A0A0A;
    --white: #FFFFFF;
    --gray: #333333;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--rich-black);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

section {
    padding: 80px 0;
}

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

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    padding: 10px 0;
    border-bottom: 1px solid var(--gold-dark);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a:hover {
    color: var(--gold);
}

.cta-btn {
    background: var(--gold);
    color: var(--black);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid var(--gold);
}

.cta-btn:hover {
    background: transparent;
    color: var(--gold);
}

.menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Sections Styling */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
}

.section-title p {
    color: var(--gold-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Features/Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--black);
    padding: 40px;
    border: 1px solid #222;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* About Preview */
.about-preview {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-img {
    flex: 1;
    position: relative;
}

.about-img::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--gold);
    z-index: -1;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Form Styles */
.form-container {
    background: var(--black);
    padding: 50px;
    border: 1px solid var(--gold-dark);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--gold-light);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--gray);
    color: var(--white);
    outline: none;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold);
}

.checkbox-group {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 20px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 20px;
}

.submit-btn:hover {
    background: var(--gold-dark);
}

/* Footer */
footer {
    background: var(--black);
    padding: 80px 0 20px;
    border-top: 1px solid var(--gold-dark);
}

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

.footer-col h4 {
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 0.8rem;
    color: var(--gray);
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition: transform 1s, opacity 1s;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-btn {
        display: block;
        color: var(--gold);
    }
    
    .about-preview {
        flex-direction: column;
    }
    
    .about-img::after {
        display: none;
    }
}
