/* Global Styles */
:root {
    --primary-color: #cb531e;
    --secondary-color: #f1c40f;
    --background-color: #ffffff;
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --dark-gray: #777777;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

/* Header Styles */
header {
    background-color: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo span {
    color: var(--secondary-color);
}

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

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

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

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Button Styles */
.btn, .submit-btn, .upload-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn:hover, .submit-btn:hover, .upload-btn:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Banner Section */
.banner-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/people_bg_2.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
}

.banner-section.secondary-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/gift_bg.png');
    margin-bottom: 0;
}



.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.banner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.banner-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Countdown Section */
.countdown-section {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--light-gray);
}

.countdown-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-box {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    min-width: 120px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.countdown-box span {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.countdown-box p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Registration Section */
.registration-section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.registration-container h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.registration-form {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 0.5rem;
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.gallery-header p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.upload-form-container {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.photo-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.photo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.photo-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.photo-info {
    padding: 1.5rem;
}

.photo-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.photo-info .author {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.photo-info .description {
    font-size: 0.95rem;
    color: var(--text-color);
}

/* Photo Detail Section */
.photo-detail-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.photo-container {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.photo-container h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.photo-author {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    display: block;
}

.photo-display {
    margin: 2rem 0;
}

.main-photo {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.photo-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.upload-date {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Comment Section */
.comment-section {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comment-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.comment-form {
    margin-bottom: 3rem;
}

.comments-list h3 {
    margin-bottom: 1.5rem;
}

.comment {
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

.comment:last-child {
    border-bottom: none;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.comment-author {
    font-weight: 600;
    color: var(--primary-color);
}

.comment-date {
    font-size: 0.8rem;
    color: var(--dark-gray);
}

.comment-text {
    line-height: 1.6;
}

.no-comments {
    font-style: italic;
    color: var(--dark-gray);
    text-align: center;
    padding: 2rem 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-gray);
    margin-top: 3rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        top: 70px;
        background-color: white;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.5s ease-in;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .burger {
        display: block;
    }

    .banner-content h1 {
        font-size: 2.2rem;
    }

    .banner-content h2 {
        font-size: 2rem;
    }

    .countdown-box {
        min-width: 80px;
        padding: 1rem;
    }

    .countdown-box span {
        font-size: 2rem;
    }

    .photo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .countdown-container {
        gap: 1rem;
    }

    .countdown-box {
        min-width: 70px;
        padding: 0.8rem;
    }

    .countdown-box span {
        font-size: 1.5rem;
    }

    .countdown-box p {
        font-size: 0.8rem;
    }
}


/* Message Styling */
.message {
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    font-weight: 500;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Specific message types */
.message.success {
    background-color: #f0fff4;
    color: #2f855a;
    border-left: 4px solid #38a169;
}

.message.error {
    background-color: #fff5f5;
    color: #c53030;
    border-left: 4px solid #e53e3e;
}

.message.info {
    background-color: #ebf8ff;
    color: #2b6cb0;
    border-left: 4px solid #3182ce;
}

.message.warning {
    background-color: #fffaf0;
    color: #c05621;
    border-left: 4px solid #dd6b20;
}

.message.debug {
    background-color: #f7fafc;
    color: #4a5568;
    border-left: 4px solid #718096;
    font-family: monospace;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    height: 60px; /* Adjust based on your logo's aspect ratio */
}

.logo img {
    height: 70px; /* Maintains aspect ratio */
    width: auto; /* Prevents stretching */
    max-height: 100%;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05); /* Subtle hover effect */
}

/* Optional responsive adjustments */
@media (max-width: 768px) {
    .logo {
        height: 50px; /* Slightly smaller on mobile */
    }
}

@media (max-width: 480px) {
    .logo {
        height: 40px;
    }
}

/* Upload Section */
.upload-section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.upload-container {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.upload-container h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.cancel-btn {
    display: inline-block;
    background-color: var(--light-gray);
    color: var(--text-color);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-left: 1rem;
    text-align: center;
}

.cancel-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Upload Section - Enhanced Styling */
.upload-section {
    padding: 6rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.upload-container {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.upload-container h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    text-align: center;
}

.upload-container .subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.upload-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.upload-form .form-group {
    margin-bottom: 0;
}

.upload-form .form-group label {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    display: block;
    color: var(--text-color);
}

.upload-form .form-group input,
.upload-form .form-group textarea,
.upload-form .form-group select {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.upload-form .form-group input:focus,
.upload-form .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(203, 83, 30, 0.2);
}

.upload-form .form-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.upload-form .submit-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.upload-form .cancel-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    background-color: #f5f5f5;
    color: #555;
}

.upload-form .cancel-btn:hover {
    background-color: #e0e0e0;
}

/* File input styling */
.upload-form .file-input-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.upload-form .file-input-wrapper input[type="file"] {
    position: absolute;
    font-size: 100px;
    opacity: 0;
    right: 0;
    top: 0;
    cursor: pointer;
}

.upload-form .file-input-label {
    display: block;
    padding: 1rem;
    background-color: #f9f9f9;
    border: 1px dashed #ddd;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-form .file-input-label:hover {
    background-color: #f0f0f0;
    border-color: var(--primary-color);
}

.comment-anonymous {
    font-style: italic;
    color: var(--dark-gray);
}

/* Custom Alert Messages */
.custom-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 5px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s ease;
}

.custom-alert.show {
    opacity: 1;
    transform: translateY(0);
}

.custom-alert-message {
    flex-grow: 1;
    padding-right: 15px;
}

.custom-alert-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 0 0 10px;
}

/* Alert Types */
.custom-alert-success {
    background-color: #38a169;
    border-left: 4px solid #2f855a;
}

.custom-alert-error {
    background-color: #e53e3e;
    border-left: 4px solid #c53030;
}

.custom-alert-warning {
    background-color: #dd6b20;
    border-left: 4px solid #c05621;
}

.custom-alert-info {
    background-color: #3182ce;
    border-left: 4px solid #2b6cb0;
}

.custom-alert-debug {
    background-color: #718096;
    border-left: 4px solid #4a5568;
}

/* Back to Gallery button styles - top version */
.back-to-gallery-top {
    margin-bottom: 2rem;
    text-align: left;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--light-gray);
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: none;
    letter-spacing: normal;
    border: 1px solid #ddd;
    font-size: 0.9rem;
}

.back-btn:hover {
    background-color: var(--dark-gray);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.back-btn:before {
    content: "";
    display: inline-block;
    margin-right: 8px;
}

/* Quiz CTA Section */
.quiz-cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/quiz_bg.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
}

.quiz-cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.quiz-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.quiz-cta-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.quiz-cta-btn {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
}

.quiz-cta-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Remembrance Section */
.remembrance-section {
    background-color: #2e3b4e;
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

.remembrance-container {
    max-width: 800px;
    margin: 0 auto;
}

.remembrance-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.remembrance-title {
    font-size: 3rem;
    font-weight: 700;
    color: #f47539;
    margin-bottom: 2rem;
}

.remembrance-text {
    font-size: 1.1rem;
    color: #d0d0d0;
    line-height: 1.6;
}

/* Organizers Section */
.organizers-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

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

.organizers-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.organizers-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.organizers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.organizer-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.organizer-card:hover {
    transform: translateY(-5px);
}

.organizer-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid var(--primary-color);
}

.organizer-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .organizers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .organizers-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .organizer-image {
        width: 120px;
        height: 120px;
    }
}


/* Style for required field indicator */
.required-note {
    color: #e53e3e;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
}

/* Style for form help text */
.form-help {
    display: block;
    margin-top: 0.25rem;
    color: #718096;
    font-size: 0.85rem;
}

.error-message {
    color: #e53e3e;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Highlight invalid fields */
input:invalid, select:invalid, textarea:invalid {
    border-color: #e53e3e;
}

/* Tribute Section */
.tribute-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.tribute-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tribute-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tribute-form-container {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.tribute-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tribute-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tribute-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    position: relative;
    border-left: 4px solid var(--primary-color);
}

.tribute-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.tribute-date {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.tribute-content h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.tribute-content p {
    line-height: 1.6;
    color: #555;
}

.tribute-footer {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-end;
}

.share-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-btn:hover {
    text-decoration: underline;
}

.empty-tributes {
    text-align: center;
    padding: 3rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    color: var(--dark-gray);
}

/* Responsive */
@media (max-width: 768px) {
    .tribute-card {
        padding: 1.5rem;
    }
    
    .tribute-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Tribute Card Header Styles */
.tribute-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.tribute-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(203, 83, 30, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.tribute-icon i {
    /* Adjust icon positioning if needed */
    margin-top: 2px;
}

/* Alternative dove icon style */
/* .tribute-icon i.fa-dove {
    color: #5d8aa8;
    font-size: 1.1rem;
} */

/* Responsive adjustments */
@media (max-width: 768px) {
    .tribute-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}


/* Footer Sticky Fix */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content-wrap {
    flex: 1;
}

/* Existing footer styles - update them to: */
footer {
    background-color: var(--light-gray);
    text-align: center;
    padding: 2rem;
    margin-top: auto; /* This pushes the footer to the bottom */
}

/* For pages with very short content */
.tribute-section, .tribute-form-container {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
}

.tribute-list, .tribute-form {
    flex: 1;
}

/* Tribute Header Styles */
.tribute-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: rgba(203, 83, 30, 0.05);
    border-radius: 10px;
    text-align: center;
}

.tribute-header-content {
    margin-bottom: 0.5rem;
}

.tribute-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.tribute-header .subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

.tribute-cta, .tribute-login-prompt {
    margin-top: 0.5rem;
}

.btn-tribute {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-tribute:hover {
    background-color: #b5451a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-tribute i {
    font-size: 0.9rem;
}

.tribute-login-prompt p {
    color: var(--dark-gray);
}

.tribute-login-prompt a {
    color: var(--primary-color);
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tribute-header {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .tribute-header h1 {
        font-size: 2rem;
    }
    
    .tribute-header .subtitle {
        font-size: 1rem;
    }
}

/* Profile Page */
.profile-section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.profile-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.profile-container h2 {
    padding: 1.5rem;
    background-color: var(--primary-color);
    color: white;
    margin: 0;
}

.profile-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
}

.profile-tab {
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.profile-tab:hover {
    color: var(--primary-color);
    background-color: rgba(203, 83, 30, 0.05);
}

.profile-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.profile-content {
    padding: 2rem;
}

.profile-form,
.password-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .profile-tabs {
        flex-direction: column;
    }
    
    .profile-tab {
        border-bottom: 1px solid #eee;
        border-left: 3px solid transparent;
    }
    
    .profile-tab.active {
        border-left-color: var(--primary-color);
        border-bottom-color: #eee;
    }
}
