:root {
            --primary: #0067A5;
            --white: #FFFFFF;
            --black: #111111;
            --gray: #666666;
            --light-gray: #f9f9f9;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* Scotch Display + System Sans */
        body {
            font-family: "neue-haas-grotesk-text", -apple-system, BlinkMacSystemFont, sans-serif;
            font-weight: 400;
            background-color: var(--white);
            color: var(--black);
            -webkit-font-smoothing: antialiased;
            line-height: 1.6;
        }
        
        /* Typography System */
        h1, h2, h3, h4, .logo {
            font-family: "scotch-display", serif;
            font-weight: 300; /* Light weight */
            font-style: normal;
            line-height: 1.1;
            letter-spacing: -0.5px;
        }
        
        h1 {
            font-size: 3.5rem;
            letter-spacing: -1px;
            font-weight: 300;
        }
        
        h2 {
            font-size: 2.75rem;
            font-weight: 300;
        }
        
        h3 {
            font-size: 1.75rem;
            font-weight: 300;
        }
        
        p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--gray);
        }
        
        .btn, .nav-links a {
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-family: "neue-haas-grotesk-text", sans-serif;
        }
        
        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 300;
            color: var(--primary);
            letter-spacing: 0.5px;
        }
        
        .nav-links {
            display: flex;
            gap: 2.5rem;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--primary);
            font-weight: 500;
            transition: color 0.3s;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
        }
        
        .nav-links a:hover {
            color: var(--black);
        }
        
        /* Hero Video Section */
.video-hero {
    position: relative;
    width: 100%;
    height: 70vh; /* Container = video height */
    margin-top: 90px;
    overflow: hidden;
}

.video-background {
    position: absolute;
    width: 100%;
    height: 100%; /* Fill container */
    object-fit: cover;
}
.popupvideo-background {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    top: 0;
    left: 0;
}
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 103, 165, 0.2);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20%;
        }
        
        .video-overlay h1 {
            color: var(--white);
            font-size: 4.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
            font-weight: 300;
            letter-spacing: 0.5px;
        }
        
        .video-overlay p {
            color: var(--white);
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        }
        .video-overlay .btn {
            opacity: 1 !important;
            visibility: visible !important;
            transform: none !important;
        }
        
        .btn {
            background-color: var(--primary);
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            letter-spacing: 1.5px;
        }
        
        .btn:hover {
            background-color: #00558a;
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Featured Gemstones */
        .featured-section {
            padding-right: 5%;
            padding-bottom: 6rem;
            padding-left: 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title h2 {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        
        .section-title p {
            color: var(--gray);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .guide-section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        
.guide-section-title h2 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4); /* soft drop shadow */
}

.guide-section-title p {
  color: #ffffff;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4); /* soft drop shadow */
}

        
        .gems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .gem-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .gem-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .gem-image {
            height: 250px;
            overflow: hidden;
        }
        
        .gem-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gem-card:hover .gem-image img {
            transform: scale(1.1);
        }
        
        .gem-info {
            padding: 1.5rem;
        }
        
        .gem-info h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }
        
        .gem-info p {
            color: var(--gray);
            margin-bottom: 1rem;
            line-height: 1.5;
        }
        
        .gem-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        /* Buyer's Guide Section */
        .buyers-guide {
            background-color: var(--light-gray);
            padding: 5rem 5%;
        }
        
        .guide-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
     .guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 2rem;
    margin-top: 3rem;
}
/* Animation adjustments for proper staggering */
.guide-card:nth-child(1) { 
    data-aos: "fade-right";
    data-aos-delay: "0";
}
.guide-card:nth-child(2) { 
    data-aos: "fade-right";
    data-aos-delay: "100";
}
.guide-card:nth-child(3) { 
    data-aos: "fade-right";
    data-aos-delay: "200";
}
.guide-card:nth-child(4) { 
    data-aos: "fade-left";
    data-aos-delay: "0";
}
.guide-card:nth-child(5) { 
    data-aos: "fade-left";
    data-aos-delay: "100";
}
.guide-card:nth-child(6) { 
    data-aos: "fade-left";
    data-aos-delay: "200";
}

        
        .guide-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .guide-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        
        .guide-card h3 {
            font-family: "scotch-display", serif;
            font-weight: 400; /* Light weight */
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        .guide-card p {
            color: var(--gray);
            line-height: 1.6;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary);
            color: var(--white);
            padding: 3rem 5% 1rem;
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .footer-logo {
             font-family: "scotch-display", serif;
            font-weight: 400; /* Light weight */
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .footer-about p {
            margin-bottom: 1.5rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-links a {
            color: var(--white);
            font-size: 1.5rem;
            transition: transform 0.3s;
        }
        
        .social-links a:hover {
            transform: translateY(-5px);
        }
        
        .footer-links h3, .footer-contact h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--white);
        }
        
        .footer-contact p {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
    .copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff; /* Changed from rgba to solid white */
}

        
        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                padding: 1rem;
            }
            
            .nav-links {
                margin-top: 1rem;
                gap: 1rem;
            }
            
            .video-overlay {
                padding: 0 10%;
            }
            
            .video-overlay h1 {
                font-size: 2.5rem;
            }
            
            .video-overlay p {
                font-size: 1rem;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 900px) {
    .guide-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 600px) {
    .guide-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}
/* Modern Hover Popup Styles */
.btn-container {
    position: relative;
    display: inline-block;
}

.gem-details-popup {
    position: fixed; /* Changed from absolute to fixed */
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%) translateY(-20px); /* Center and slight offset */
    width: 320px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000; /* Higher z-index */
    pointer-events: none;
}

.view-details:hover ~ .gem-details-popup,
.gem-details-popup:hover {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) translateY(0);
    pointer-events: auto;
}

/* Remove the arrow since we're centering */
.gem-details-popup::after {
    display: none;
}

/* Rest of your existing popup styles remain the same */
.popup-content {
    display: flex;
    flex-direction: column;
}

.popup-image {
    height: 180px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

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

.popup-info {
    padding: 1.2rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin: 1rem 0;
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-weight: 600;
    color: #0067A5;
    font-size: 0.8rem;
}

.spec-value {
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.popup-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0067A5;
    margin: 0.5rem 0;
}

.inquire-btn {
    display: block;
    background: #0067A5;
    color: white;
    padding: 0.8rem;
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.8rem;
}

/* Arrow for popup */
.gem-details-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

/* Responsive */
@media (max-width: 768px) {
    .gem-details-popup {
        width: 280px;
        left: 0;
        transform: translateX(0) translateY(-10px);
    }
    
    .view-details:hover ~ .gem-details-popup,
    .gem-details-popup:hover {
        transform: translateX(0) translateY(0);
    }
}


        
        /* Luxury Divider Styles */
.luxury-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.divider-line {
    height: 1px;
    width: 100px;
    background: linear-gradient(to right, transparent, #0067A5, transparent);
}

.divider-icon {
    margin: 0 20px;
    color: #0067A5;
    font-size: 1.5rem;
}

/* Munich Show Section Styles */
.munich-show-section {
    padding: 60px 20px;
    background-color: #f9f9f9; /* Light background to make image stand out */
    text-align: center;
    margin: 0px 0;
}

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

.munich-image-wrapper {
    display: inline-block;
    max-width: 100%;
    padding: 20px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.munich-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

/* Optional hover effect */
.munich-image:hover {
    transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .munich-show-section {
        padding: 40px 15px;
    }
    
    .munich-image-wrapper {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .munich-show-section {
        padding: 30px 10px;
    }
    
    .munich-image-wrapper {
        padding: 10px;
    }
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr !important;
  }
  
  .prototype-showcase {
    padding: 3rem 5% !important;
  }
}


