

/* styles.css */



/* Header CSS Common to all pages */


.nav{
    position:fixed;
    width:100%;
    display:flex;
    justify-content:space-between;
    padding:30px 8%;
    z-index:1000;
    mix-blend-mode:difference;
}

.logo{
    font-family:'Playfair Display';
    font-size:20px;
}

.nav a{
    color:white;
    text-decoration:none;
    margin-left:40px;
    font-size:14px;
    letter-spacing:2px;
}

/* NAV LINKS */
.nav-links a {
    margin-left: 30px;
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

/* Hover underline effect */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: #c6a75e;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a:hover::after {
    width: 100%;
}

/* AI Content Section - Editorial Luxury */
.ai-content {
    max-width: 1100px;
    margin: 100px auto 80px;
    padding: 0 30px;
    color: rgba(255, 255, 255, 0.78);
    font-family: "Inter", sans-serif;
    line-height: 1.9;
}

/* Heading */
.ai-content h2 {
    font-size: 38px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

/* Subheadings */
.ai-content h3 {
    font-size: 22px;
    font-family: "Playfair Display", serif;
    color: #c6a75e;
    margin-top: 40px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Paragraph */
.ai-content p {
    font-size: 17px;
    max-width: 800px;
    margin-bottom: 20px;
}

/* List */
.ai-content ul {
    margin-top: 10px;
    padding-left: 20px;
}

.ai-content li {
    margin-bottom: 10px;
    position: relative;
}

/* Custom bullet (luxury touch) */
.ai-content li::marker {
    color: #c6a75e;
}

/* Subtle divider */
.ai-content::before {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    margin-bottom: 30px;
    position: relative;
    background: linear-gradient(90deg, #c6a75e, #e6c97a);
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.2s ease forwards;
    animation-delay: 0.2s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional subtle background glow */
.ai-content::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -50px;
    height: 200px;
    background: radial-gradient(
            circle at center,
            rgba(198,167,94,0.08),
            transparent 70%
    );
    z-index: -1;
}