

body {
    background-image: url('images/stars-1845140_1920.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100vh;
    color: #F5F5DC;
    font-family: 'Verdana', 'Garamond', Times, serif;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}


/* Simple page fade-in */
.page > * {
  opacity: 0;
  animation: fadeIn 0.4s ease-out forwards;
}

.page > *:nth-child(1) { animation-delay: 0.05s; }
.page > *:nth-child(2) { animation-delay: 0.1s; }
.page > *:nth-child(3) { animation-delay: 0.15s; }
.page > *:nth-child(4) { animation-delay: 0.2s; }
.page > *:nth-child(5) { animation-delay: 0.25s; }

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .page > * {
    animation: none;
    opacity: 1;
  }
}


h1, h2 {
    margin: 10px 0;
    text-align: center;
}

.navbar {
    background: transparent;
}

.navbar-social {
    color: #F5F5DC;
    font-size: 20px;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
    
}

.navbar-social:hover {
    color: #FFD700;
}

.nav-link {
    color: #F5F5DC;
    transition: color 0.3s;
    margin-right: 20px;
}

.nav-link:hover {
    color: #FFD700 !important;
}

.album-card {
    background-color: rgba(0, 0, 0, 0.7);
    /* border: 1px solid #F5F5DC; */
    transition: all 0.3s ease;
    color: #F5F5DC;
}

.album-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    border-color: #FFD700;
}

.album-card .card-title {
    color: #F5F5DC;
}

.album-card .card-text {
    color: #B0B0B0;
}

.album-card .card-body {
    display: none;
}

.project-card {
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid #4A90E2;
    transition: all 0.3s ease;
    color: #F5F5DC;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.project-card .card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-card .badge {
    margin-top: auto;
    align-self: center;
}

.project-card:hover {
   transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    border-color: #FFD700;
}

.project-card .card-title {
    border-color: #FFD700;
}

.project-card-disabled {
    opacity: 0.8;
}

.project-card-disabled:hover {
    transform: none;
    box-shadow: 0 4px 10px #FFD700;
}

.card-icon {
    font-size: 48px;
    color: #4A90E2;
    display: flex;
    justify-content: center;
    padding: 20px 0 0 0;
}

.project-card .card-img-top {
    height: 200px;
    object-fit: cover;
    padding: 12px;
    box-sizing: border-box;
}

.project-card .card-img-bottom {
    height: 200px;
    object-fit: cover;
    border-bottom-left-radius: calc(0.375rem - 1px);
    border-bottom-right-radius: calc(0.375rem - 1px);
    padding: 12px;
    box-sizing: border-box;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 10px;
}

.home-image {
    width: 70%;
   
    max-width: 100%;
    max-height: 50%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    opacity: 0.9;
    
}


.container {
    display: flex;
    gap: 20px;
    padding: 20px;
    align-items: flex-start;
}

.text-section {
    flex: 1;
    padding-right: 20px;
}

.bio-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.bio-image img {
    width: 90%; 
    border-radius: 150px;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.6);
}
/* Contact Form Styles */
.form-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.contact-form {
    width: 90%; 
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(245, 245, 220, 0.2);
}

.contact-form .form-label {
    color: #F5F5DC;
    font-weight: 500;
}

.contact-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(245, 245, 220, 0.3);
    color: #F5F5DC;
}

.contact-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #FFD700;
    color: #F5F5DC;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.contact-form .btn-primary {
    background-color: #FFD700;
    border: none;
    color: #000;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background-color: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.contact-form .btn-primary:active {
    transform: translateY(0);
}