/* CSS Styles for Photography Portfolio */
body {
    font-family: Arial, sans-serif;
    margin:10 0;
    padding: 20px 0;
    background-color: #2a3856;
    box-shadow: inset 20px 20px 15px rgba(21, 188, 217, 0.1);
                inset: -20px -20px 15px rgba(234, 35, 13, 0.1)   ;
}
.container {
    width: 80%;
    margin: auto;
    padding: 30px;
}


/* Header Styles */
h1,h2,h3,h4 {
    color: #1cc909;
    font-weight: 500;
    margin:10px 0;
    padding: 15px;
    border-radius: 12px;
   
}
p {
    line-height: 1.6;
    color: #e5860a;
}
/* Header and Navigation */
header {
    background: #1a2123;
    color: #c60707;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #abe81d 3px solid;
    border-radius: 120px;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
header h1 {
    color: #987b4e94;
    margin: 0;
    font-size: 40px;

}
nav ul {
    display:flex;
    list-style: none;
}
nav ul li {
    margin-left: 20px;
}
nav ul li a {
    color: #07b607;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
} 
nav ul li a:hover {
    color: #0dc0d4;
}   
/* 5. HERO SECTION */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.9)), 
                url(https://unsplash.com/photos/ice-capped-mountain-at-daytime-xfngap_DToE)
    color: rgb(220, 23, 23);
    padding: 6rem 0;
    text-align: center;
}

.intro-box {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 10px;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.intro-quote {
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-quote i.fa-quote-left {
    margin-right: 10px;
    color: #3498db;
}

.intro-quote i.fa-quote-right {
    margin-left: 10px;
    color: #3498db;
}

.author {
    font-size: 1.2rem;
    color: #bdc3c7;
    text-align: right;
    font-style: italic;
}

/* 6. BIOGRAPHY SECTION */
.biography {
    padding: 5px 0;
    background-image: url(https://media3.giphy.com/media/v1.Y2lkPTc5MGI3NjExYXNmbmZnMnM3eWwxanY1cTRuMHc5OWRkY3JxNWtmN2h1Y2dnYjZhdyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/Y1wEgYUY21PPQyzHV5/giphy.gif);
}

.bio-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
}

.profile-card {
    flex: 1;
    width: 300px;
    text-align: center;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 20 5px 15px rgba(0, 0, 0, 0.05);
}

.profile-img {
    width: 10px;
height: 10px;
    border: 5px solid white;
}

.profile-card h3 {
    margin-bottom: 0.5rem;
}

.title {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 1.5rem;
    
}

.bio-text {
    flex: 2;
    min-width: 300px;
    box-shadow: inset 20px 20px 15px rgba(116, 26, 3, 0.1);
    border-radius: 10px;
}

.skills {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #e0d98c;
    border-radius: 50px;
    box-shadow: inset 20px 20px 15px rgba(234, 192, 6, 0.511);
    inset: -20px -20px 15px rgba(6, 171, 151, 0.1);
}

.skills h4 {
    margin-bottom: 1rem;
    color: #6d0dd4;
}

.skills ul {
    list-style: none;
}

.skills li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.skills li i {
    color: #2ecc71;
    margin-right: 10px;
}

/* 7. PHOTO GALLERY */
.gallery {
    padding: 20px;
    background-image: url(https://media4.giphy.com/media/v1.Y2lkPTc5MGI3NjExeTB5ZGdmYzh0ZG5uZXUycHRob2h5dm85ZDY2d2ZqNHFmYmtqaW1oaCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/IxEAHjhSco4Rq/giphy.gif);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #e3910c;
    font-size: 1.2rem;
}

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

.photo-card {
    background-color: rgb(118, 21, 21);
    border-radius: 10px;
    overflow: flex wrap;
    box-shadow: 10 5px 15px rgba(177, 225, 4, 0.08);
    transition: transform 0.3s ease,  0.3s ease;
}

.photo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

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

.photo-info {
    padding: 1.5rem;
}

.photo-info h4 {
    margin-bottom: 0.5rem;
    color: #4e2c50;
}

.photo-info p {
    color: #7f808d;
    font-size: 0.9rem;
    margin: 0;
}

/* 8. CONTACT SECTION */
.contact {
    padding: 5rem 0;
    background-color: rgb(220, 108, 108);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background-color: #e6d2fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.2rem;
    color: #3498db;
    margin-right: 15px;
    margin-top: 5px;
}

.info-item h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.info-item p {
    margin: 0;
    color: #555;
}

/* 9. FORM SECTION */
form {
    flex: 2;
    min-width: 300px;
    background-color: rgb(18, 4, 4);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

form h3 {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

form h3 i {
    margin-right: 10px;
    color: #3498db;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
}

.form-group label i {
    margin-right: 8px;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 20px 15px 10px rgba(52, 152, 219, 0.2);
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.3rem;
    min-height: 1.2rem;
}

.submit-btn {
    background-color: #3498db;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
}

.submit-btn i {
    margin-right: 10px;
}

.submit-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.form-status {
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* 10. FOOTER */
footer {
    background-color: #d0ebf0;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

