:root {
    --gold: #d4af37;
    --dark-gold: #aa8a2e;
    --black: #0a0a0a;
    --light-black: #1a1a1a;
    --white: #ffffff;
    --gray: #b0b0b0;
}

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

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

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    padding: 1rem 5%;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    border-radius: 50%;
}

.logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--white);
    font-weight: 400;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

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

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--gold);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('project1.png') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray);
    opacity: 0;
    transform: translateY(30px);
}

.btn {
    display: inline-block;
    padding: 12px 35px;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background: var(--white);
    transform: scale(1.05);
}

/* Projects Section */
.projects {
    padding: 100px 5%;
    background-color: var(--light-black);
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 60px;
}

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

.project-card {
    background: var(--black);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

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

.project-img {
    height: 250px;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    color: var(--gold);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.project-info p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* About Section */
.about {
    padding: 100px 5%;
    background: var(--black);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.about-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--gray);
}

/* Footer */
footer {
    background: var(--light-black);
    padding: 60px 5% 20px;
    border-top: 2px solid var(--gold);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.footer-info p {
    margin-bottom: 10px;
    color: var(--gray);
}

.footer-info p i {
    color: var(--gold);
    margin-right: 10px;
}

.footer-info a {
    color: var(--gray);
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    font-size: 1.5rem;
    color: var(--gold);
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--white);
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 20px;
    color: var(--gray);
    font-size: 0.8rem;
}

/* Support Section */
.support {
    padding: 100px 5%;
    background-color: var(--black);
}

.support-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--light-black);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--white);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.support-form .btn {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 1s ease-out forwards;
}

.hero h1 { animation-delay: 0.3s; }
.hero p { animation-delay: 0.6s; }
.hero .btn { animation-delay: 0.9s; }

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-social {
        justify-content: center;
    }
}