@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Instrument+Serif:ital@0;1&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #F5F5DC;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Top Banner */
.top-banner {
    background-color: #000000;
    border-bottom: 1px solid #333;
    padding: 8px 0;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #FFFFFF;
    
}
.banner-content span{
    font-family: "Instrument Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}   

.flag-icon {
    width: 18px;
    height: 14px;
}

/* Government Seals */
.seals-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    padding: 180px 0px 0px 0px;
    background-color: #000000;
}

.seal {
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.seal img {
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.seal-center img {
    width: 160px;
    height: 160px;
}

.seal-left img,
.seal-right img {
    width: 80px;
    height: 80px;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Title Section */
.title-section {
    text-align: center;
    margin-bottom: 60px;
}

.main-title {
    font-family: 'Instrument Serif', serif;
    font-style: normal;
    font-weight: 500;
    color: rgb(255, 255, 255);
    font-size: 128px;
    line-height: 141px;
    margin-bottom: 10px;
    letter-spacing: -5px;
    background: linear-gradient(to top, rgb(255, 227, 153) 0%, rgb(254, 247, 229) 39%) 0% 0% / 100% 1.2em repeat-y text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: rgb(255, 255, 255); /* fallback for browsers that don't support background-clip:text */
}


.description {
    font-family: 'Instrument Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgb(255, 255, 255);
    font-size: 24px;
    line-height: 32px;
    padding: 30px 0px;
}

/* Trump Card */
.card-container {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.trump-card-image {
    width: 620px;
    height: auto;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Form Section */
.form-section {
    width: 100%;
   max-width: 900px;
   margin: 0 auto;
   padding-bottom: 70px;
}

.notification-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.form-row label {
    font-family: 'Instrument Serif', serif;
    font-style: normal;
    font-weight: 500;
    color: rgb(255, 255, 255);
    font-size: 72px;
    line-height: 86px;
    white-space: nowrap;
}

.input-placeholder {
    font-family: 'Instrument Serif', serif;
    font-style: normal;
    font-weight: 500;
    font-size: 72px;
    line-height: 86px;
    white-space: nowrap;
    color: #999999;
    text-underline-offset: 4px;
    padding: 12px 0;
    background-color: transparent;
    outline: none;
    border: none;
    border-bottom: 1px solid #666666;
    min-width: 200px;
    flex: 1;
}

.form-input,
.form-select {
    background-color: #000000;
    border: 1px solid #999999;
    border-radius: 30px;
    padding: 18px 15px;
    color: #999999;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    min-width: 200px;
    flex: 1;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-input::placeholder {
    color: #999999;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #999999;
    background-color: #333333;
}

.submit-btn {
    background-color: color-mix(in oklab, #FFFFFF 40%, transparent);;
    border: 1px solid #666666;
    color: #000;
    padding: 15px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #333333;
    border-color: #999999;
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 50px 0;
    border-top: 1px solid #333;
}



.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
 
    margin: 0 auto;
    padding: 0 30px;
    font-size: 14px;
}

.footer-left {
    color: #999999;
    font-family: 'Inter', sans-serif;
}

.footer-right {
    color: #999999;
    font-family: 'Inter', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.8rem;
    }
    
    .trump-card-image {
        width: 320px;
        height: auto;
    }
    
    .seals-container {
        gap: 20px;
    }
    
    .seal-center img {
        width: 80px;
        height: 80px;
    }
    
    .seal-left img,
    .seal-right img {
        width: 60px;
        height: 60px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .form-input,
    .form-select {
        min-width: auto;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
}
