/*----------------------------------------
  Genus Smart Hospitality Main Styles
----------------------------------------*/

:root {
    --color-bg: #000000;
    --color-gold: #D4AF37;
    --color-gold-light: #F0E68C;
    --color-white: #FFFFFF;
    --color-gray: #333333;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Cormorant Garamond', serif;
    --transition: all 0.4s ease;
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 400;
    letter-spacing: 0.05em;
}

h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--color-gold);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: var(--color-gold);
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--color-gold-light);
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    margin-right: 15px;
    border: 1px solid var(--color-gold);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-bg);
    border: 1px solid var(--color-gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-gold);
}

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

.btn-secondary:hover {
    background-color: var(--color-gold);
    color: var(--color-bg);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
    transition: var(--transition);
}

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

.site-title a {
    color: var(--color-white);
    font-size: 1.8rem;
    font-weight: 300;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-navigation a {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-navigation a:hover {
    color: var(--color-gold);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212,175,55,0.1) 0%, transparent 50%),
                linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    animation: moveBackground 20s infinite alternate;
}

@keyframes moveBackground {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, -2%); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-title {
    font-size: 5rem;
    font-family: var(--font-secondary);
    color: var(--color-gold);
    text-shadow: 0 0 20px rgba(212,175,55,0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--color-white);
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Sections */
section {
    padding: 100px 0;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    text-align: center;
}

.section-header h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Capabilities Grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.capability-item {
    padding: 30px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(212,175,55,0.2);
    transition: var(--transition);
}

.capability-item:hover {
    background: rgba(212,175,55,0.05);
    transform: translateY(-10px);
}

/* Deployment Grid */
.deployment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.deployment-item {
    padding: 30px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(212,175,55,0.2);
}

/* Contact Form */
.contact-section {
    background: linear-gradient(to top, rgba(212,175,55,0.05), transparent);
}

.genus-contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.genus-contact-form input,
.genus-contact-form select,
.genus-contact-form textarea {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-white);
    font-size: 1rem;
    transition: var(--transition);
}

.genus-contact-form input:focus,
.genus-contact-form select:focus,
.genus-contact-form textarea:focus {
    outline: none;
    border-color: var(--color-white);
    box-shadow: 0 0 10px rgba(212,175,55,0.3);
}

.genus-contact-form select option {
    background: var(--color-bg);
}

.genus-contact-form button {
    width: 100%;
    background: var(--color-gold);
    color: var(--color-bg);
    border: none;
    cursor: pointer;
}

.genus-contact-form button:hover {
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
}

.form-response {
    margin-top: 20px;
    text-align: center;
    font-size: 1.1rem;
}

/* Footer */
.site-footer {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(212,175,55,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .capabilities-grid,
    .deployment-grid {
        grid-template-columns: 1fr;
    }
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    .main-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}