/* DesignHive Theme: Luxury Gold and Black */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Montserrat:wght@300;400;600&display=swap');

:root {
    --gold: #D4AF37;
    --gold-light: #F1D592;
    --gold-dark: #996515;
    --black: #0A0A0A;
    --black-soft: #1A1A1A;
    --white: #FFFFFF;
    --gray: #A0A0A0;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-sans);
    line-height: 1.8;
    overflow-x: hidden;
}

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

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

/* Sticky Navigation */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px 0;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition);
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Main Content */
main {
    padding: 80px 0;
}

article {
    background: var(--black-soft);
    padding: 60px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

article h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 30px;
    line-height: 1.3;
}

article h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--gold-light);
    margin: 40px 0 20px;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

article p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #E0E0E0;
    text-align: justify;
}

/* Hyperlink */
article a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

article a:hover {
    color: var(--gold-light);
    border-bottom: 1px solid var(--gold-light);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Footer */
footer {
    background: #050505;
    padding: 60px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
    text-decoration: none;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.copyright {
    color: #555;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Contact Form */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    color: var(--gold);
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: #111;
    border: 1px solid #333;
    color: white;
    font-family: var(--font-sans);
    outline: none;
    transition: var(--transition);
}

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

.gold-btn {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 15px 40px;
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.gold-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .nav-links { display: none; }
    article { padding: 30px 20px; }
    article h2 { font-size: 1.8rem; }
}
