/* Reset & Base Styles */
:root {
    --border: 2px solid rgba(255, 215, 0, 0.2);

    --color-gold: #FFD700;
    --color-gold-hover: #918021;
    --bg-footer: #0a0a0a;
    --text-color : #b0b0b0;
    --card-radius: 20px;
    --card-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
}

a:visited {
    color: black
}

.frame-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 50px
}



/* cards */
.card {
    padding: 30px;
    border: var(--border);
    border-radius: var(--card-radius);
    background-color: #151515;
    width: 40%;
    overflow: hidden;
    color: var(--text-color)
}

.card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #FFC700 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-4px);
    border-color: #FFD700;
    box-shadow: var(--card-shadow);
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.95) 0%, rgba(15, 15, 15, 1) 100%);
}

.card-subtext{
    color: var(--text-color);
    font-size: 14px;
    margin-top: 10px;
}




/* Common Section Styles */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #FFD700;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 60px;
}


.frame-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 70px
}





/* Hero Section / Contact Form */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}
.container-form{
    width: 60%;
}
.form-group {
    position: relative;
    margin-bottom: 25px;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    opacity: 0.7;
    z-index: 1;
}

.form-group textarea+.input-icon {
    top: 25px;
    transform: none;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px 18px 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #FFD700;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #808080;
}

.btn-submit {
    width: 100%;
    padding: 18px 40px;
    background: #FFD700;
    color: #000000;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}


/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

