/* static/css/
css */

/* Global Styles */
/* Default Theme Variables (Classic as base) */
/* :root {
    --primary-color: #87a6c5;
    --secondary-color: #e67e22;
    --text-color: #dfeef2;
    --light-color: #ecf0f1;
    --dark-color: #34495e;
    --border-color: #bdc3c7;
    --footer-color: #2c3e50;
    --section-padding: 80px 0;
} */


body[data-theme="Light"] {
    --primary-color: #8B5E3C;       /* Warm Brown */
    --secondary-color: #C9A66B;     /* Soft Gold */
    --text-color: #3C2F2F;          /* Deep Earth Brown */
    --light-color: #FBF8F2;         /* Gentle Cream */
    --dark-color: #4E3F3B;          /* Warm Charcoal */
    --border-color: #D9C7B3;        /* Light Coffee Border */
    --footer-color: #B09A89;        /* Rich Taupe */
}

body[data-theme="Dark"] {
    --primary-color: #c2b7d0;       /* Soft Lavender */
    --secondary-color: #03DAC6;     /* Teal Accent */
    --text-color: #E0E0E0;          /* Foggy White */
    --light-color: #2C2731;         /* Muted Plum Background */
    --dark-color: #141218;          /* Deep Charcoal */
    --border-color: #444050;        /* Dusty Gray Border */
    --footer-color: #1E1B22;        /* Night Purple */
}



h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

section {
    padding: var(--section-padding);
}

.section-padding {
    padding: var(--section-padding);
}

.section-header {
    margin-bottom: 50px;
    /* background-color: #cfdae6; */
}

.section-header h2 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.highlight {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
}

/* Header & Navigation */
.site-header {
    box-shadow: 0 2px 10px rgba(212, 201, 201, 0.443);
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgb(188, 176, 176);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    background-color: linear-gradient(135deg, #050c14a9, #222d39);
    padding: 80px 0;
    /* padding: 120px 0; */
    /* background-color: var(--light-color); */
    position: relative;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

/* Service Cards */
.service-card {
    background-color: white;
    padding: 30px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

/* Skills */
.skill-item {
    margin-bottom: 25px;
}

.skill-item h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.progress {
    height: 15px;
    border-radius: 5px;
}

.progress-bar {
    background-color: var(--primary-color);
}

/* Photography */
.photo-card {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.photo-card img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.photo-card:hover img {
    transform: scale(1.1);
}

.photo-card:hover .photo-overlay {
    transform: translateY(0);
}

/* Testimonials */
.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

/* Blog Cards */
.blog-card {
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-meta {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #6c757d;
}

.blog-meta span {
    margin-right: 15px;
}

.blog-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.blog-content h3 a {
    color: var(--text-color);
    text-decoration: none;
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    color: var(--secondary-color);
}

/* Contact CTA */
.contact-cta {
    background-color: #021424;
    color: white;
    padding: 60px 0;
}

.cta-content h2 {
    margin-bottom: 15px;
}

.contact-cta .btn {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    margin-top: 20px;
}

.contact-cta .btn:hover {
    background-color: darken(var(--secondary-color), 10%);
    border-color: darken(var(--secondary-color), 10%);
}

/* About Page */
.about-hero {
    background-color: var(--light-color);
    padding: 80px 0 40px;
}

.about-image img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.biography {
    margin-bottom: 25px;
}

.personal-info {
    margin-top: 25px;
}
/* complete code */
.personal-info h4 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
}


/* footer */
.site-footer {
    background-color: #222;
    color: #ddd;
    padding: 10px 0 10px;
    font-size: 15px;
    line-height: 1.8;
}

.site-footer h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.site-footer p {
    color: #bbb;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f39c12;
}

.social-links a {
    display: inline-block;
    color: #ddd;
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #f39c12;
    transform: scale(1.1);
}

.copyright {
    border-top: 1px solid #444;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: #aaa;
    font-size: 14px;
}
#themeIcon {
    border: none;
}
