:root {
    --primary-color: #121212; /* Dark for accents */
    --secondary-color: #2a2a2a; /* Lighter dark */
    --bg-color: #c5a059; /* Inkphony Gold Background */
    --surface-color: #b38f4d; /* Darker Gold for cards */
    --text-color: #121212;
    --text-secondary: #2a2a2a;
    --accent-gradient: linear-gradient(135deg, #121212 0%, #333333 100%);
}

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

body {
    font-family: 'Architects Daughter', cursive;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    background-image: radial-gradient(circle at 2px 2px, rgba(0, 0, 0, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
}


.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    background-color: rgba(197, 160, 89, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
}


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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0px;
    text-decoration: none;
}





.logo-img {
    width: 60px; /* Reduced 40% from 100px */
    height: 60px;
    border-radius: 12px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    border: 2px solid #000000;
}

.logo-text-container {
    height: 95px; 
    width: 400px; 
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo-text-img {
    height: 400px; 
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    margin-left: -25px; /* Brought closer to icon */
}







.nav-links {


    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 2.2rem;
    transition: color 0.3s;
}

.nav-links .btn {
    font-size: 2.2rem; /* Explicitly match nav links */
    padding: 8px 20px; /* Slightly smaller padding for navbar button */
}


.nav-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 12px; /* Slightly less rounded for hand-drawn feel */
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    font-size: 2.2rem; /* Doubled from 1.1rem */
}


.btn-primary {
    background: var(--primary-color);
    color: #ffffff !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links .btn-icon {
    height: 28px; /* Slightly smaller for navbar */
}

.btn-icon {
    height: 36px; /* Increased 50% from 24px */
    width: auto;
    filter: invert(1); /* Invert colors to work on dark background while preserving detail */
}





.btn-primary:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: scale(1.05) rotate(1deg);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 2.2rem; /* Doubled from 1.1rem */
}

/* Hero Section */
.hero {
    padding: 220px 0 100px;
    text-align: center;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Reduced gap to bring icon closer */
}

.hero-ai-icon {
    height: 80px;
    width: auto;
    filter: brightness(0); /* Make icon black */
}



.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto 48px;
}


.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
}

/* Video Section */
.video-section {
    padding: 40px 0 100px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 3px solid var(--primary-color);
    border-radius: 15px 225px 15px 255px/255px 15px 225px 15px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* Features Section */
.features {
    padding: 100px 0;
    background-color: rgba(0, 0, 0, 0.05);
}


.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 80px;
    color: var(--primary-color);
}


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

.feature-card {
    background: var(--surface-color);
    padding: 48px;
    border-radius: 24px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /* Hand-drawn effect */
    border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
}

.feature-card:hover {
    transform: translateY(-10px) rotate(1deg);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}


.feature-icon-img {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text-color);
}



.feature-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--bg-color);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    border-radius: 24px;
    border: 3px solid var(--primary-color);
    box-shadow: 20px 20px 0px var(--primary-color);
    max-width: 500px;
    border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
}


.about-content {
    flex: 1;
    text-align: left;
}

.about h2 {
    font-size: 3rem;
    margin-bottom: 32px;
    color: var(--primary-color);
}


.about p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.credits a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.credits a:hover {
    border-bottom-color: var(--primary-color);
}



/* Footer */
.footer {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.1);
    border-top: 2px solid var(--primary-color);
}


.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}



.social-links {
    display: flex;
    gap: 32px;
}

.social-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 2.2rem; /* Doubled from 1.1rem */
}


.social-links a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .about-content {
        text-align: center;
    }
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .footer .container {
        flex-direction: column;
        gap: 32px;
    }
}

