/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #eeece2;
    color: #000000;
    line-height: 1.6;
}

button {
    font-family: 'Outfit', sans-serif;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #eeece2;
    box-shadow: 0 4px 8px rgba(244, 241, 241, 0.1);
    border-radius: 8px;
    overflow: auto;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.animate {
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

.fade-in {
    animation-name: fadeIn;
}

.slide-up {
    animation-name: slideUp;
}

/* Layout */
.content-wrapper {
    
    gap: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
}


/* Signup Section */
.signup-container {
    background-color: #eeece2;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    
    
}

.text-content {
    margin-bottom: 2rem;
}

.signup-section h2 {
    text-align: left;
    margin-bottom: 1.8rem;
    color: #995b00;
    font-size:4rem;
    font-weight: 1200;
}

.signup-section form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.input-container {
    margin-bottom: 1rem;
}

.image-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden; /* Ensure no overflow */
    text-align: center; /* Optional: Center the image */
}

.image-container img {
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
    display: block;
    margin: 0 auto; /* Center the image if it's smaller than the container */
}
   

.input-container label {
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.input-container input {
   
    width: 80%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 19px;
    background-color: #fefefe;
    color: #333;
}

.input-container input::placeholder {
    color: #aaa;
}

.signup-section button {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 19px;
    background-color: #995b00;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signup-section button:hover {
    opacity: 0.8;
}

/* Card Container */
#announcement1{
    text-align: center;
    margin-bottom: 1.8rem;
    color: #995b00;
    font-size: 2rem;
    font-weight: 600;
}

.card-container {
    text-align: center;
}

.card-image-container img {
    width: 100%;
    border-radius: 8px;
}

.card-title {
    margin-top: 10px;
    font-size: 20px;
}

.card-content {
    font-size: 16px;
    color: #666;
}
.card-container {
    text-align: center;
    margin-bottom: 2rem;
}

.card-text {
    font-size: 1.2rem;
    color: #555555;
    margin-top: 1rem;
}

.card {
    background-color: #ffffff;
    padding: 30px;
    margin: 10px auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    transform: translateY(0);
    max-height: 500px;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}


.share-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.share-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    background-color: #f1f1f1;
    border-radius: 50%;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s ease;
}

.share-button:hover {
    background-color: #e0e0e0;
}

.share-button i {
    font-size: 20px;
}

/* Color overrides for specific buttons */
.share-button.facebook {
    color: #3b5998;
}

.share-button.whatsapp {
    color: #25d366;
}

.share-button.linkedin {
    color: #0077b5;
}

.share-button.twitter {
    color: #1da1f2;
}

/* Upload Section */
.upload-section {
    text-align: center;
    padding: 2rem;
    background-color: #eeece2;;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.upload-section h2 {
    color: #995b00;
    margin-bottom: 1.5rem;
}

.upload-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.upload-section form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-container {
    position: relative;
    width: 100%;
    margin-bottom: 1.5rem;
}

.input-container label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.input-container input[type="file"] {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #eeece2;
    color: #000;
    font-size: 1rem;
}

.input-container input[type="file"]::file-selector-button {
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 19px;
    background-color: #995b00;
    color: #fff;
    margin-right: 1rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.input-container input[type="file"]::file-selector-button:hover {
    opacity: 0.8;
}

.input-container input[type="file"]::placeholder {
    color: #000;
}

.upload-section button[type="button"] {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 19px;
    background-color: #995b00;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.upload-section button[type="button"]:hover {
    opacity: 0.8;
}

.card-container,
.share-buttons {
    display: none;
}

.upload-progress-container {
    display: none; /* Initially hidden */
    text-align: center;
    margin-top: 20px;
}

.progress-bar {
    width: 300px;
    height: 20px;
    background-color: #ddd;
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background-color: #995b00;
    transition: width 0.5s ease;
}

.progress-text {
    margin-top: 10px;
    font-weight: bold;
    color: #995b00;
}

.success-message {
    color: green;
    font-weight: bold;
    margin-top: 10px;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .content-wrapper {
        flex-direction: row;
        gap: 4rem;
    }

    .signup-container,
    .upload-section {
        flex: 1;
    }
}

@media (max-width: 612px) {
    .image-container{
        display:none;
    }
    .content-wrapper {
        gap: 2rem;
        display: grid;
        grid-template-columns: 1fr ;
    }
    
}
