/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Header Styles */
.header {
    background: #fed012;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid #e6c200;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    min-height: 100px;
}

/* Navigation Menu (Top-left) */
.nav-menu {
    position: relative;
    z-index: 1001;
}

.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex !important;
    flex-direction: column;
    gap: 4px;
    transition: transform 0.3s ease;
    z-index: 1003;
    position: relative;
}

.nav-toggle:hover {
    transform: scale(1.1);
}

.hamburger {
    width: 25px;
    height: 3px;
    background: white !important;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown .nav-link {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: black;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 0 8px;
}

.nav-dropdown .nav-link:hover {
    background: #fed012;
    color: black;
}

.nav-dropdown .nav-link.active {
    background: #fed012;
    color: black;
    font-weight: 600;
}

/* Centered Logo */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-image {
    height: 87px;
    width: 87px;
    object-fit: contain;
    transition: transform 0.3s ease;
    /* SVG specific styling */
    fill: currentColor;
    stroke: none;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.logo-link:active {
    transform: scale(0.95);
}

.logo h1 {
    font-size: 2rem;
    color: #2c3e50;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0;
}

/* Spacer for balance */
.nav-spacer {
    width: 60px; /* Same width as nav-menu to balance the layout */
}

/* Main Content */
.main {
    margin-top: 0;
    background: #fafafa;
}

/* Hero Section */
.hero {
    position: relative;
    background: #191919;
    color: #2c3e50;
    padding: 80px 0 0 0;
    text-align: center;
    overflow: hidden;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header Section */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: #191919;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Navigation in header left */
.header .nav {
    position: relative;
    top: auto;
    left: auto;
    z-index: 1002;
    justify-content: flex-start !important;
    padding: 0 !important;
    margin: 0 !important;
    min-height: auto !important;
    max-width: none !important;
}

/* Logo in header center */
.header .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    top: 50%;
    transform: translate(-50%, -50%);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hero-text {
    flex: 0 0 40%;
    text-align: left;
    padding-right: 20px;
}

.hero-image {
    flex: 0 0 60%;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cover-image {
    width: 100%;
    height: 100vh;
    min-height: 800px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.hero-title {
    font-family: 'Alex Brush', cursive;
    font-size: 4.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    white-space: nowrap;
}

.hello-text {
    color: white;
    font-style: italic;
}

.name-text {
    color: #fed012;
}

.i-feel-text {
    font-family: 'Carlito', sans-serif;
    font-weight: 400;
}

.hero-subtitle {
    font-family: 'Carlito', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
    font-weight: 400;
    font-style: italic;
    font-optical-sizing: auto;
    transform: skew(-2deg);
    position: relative;
}


.cta-button {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid #2c3e50;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #34495e;
    border-color: #34495e;
    transform: translateY(-2px);
}

/* Gallery Preview Section */
.gallery-preview {
    background: #fed012;
    padding: 80px 0;
}

.gallery-preview-content {
    text-align: center;
}

.gallery-preview h3 {
    font-size: 2.5rem;
    color: black;
    margin-bottom: 1rem;
    font-family: 'Alex Brush', cursive;
}

.series-name {
    font-size: 1.8rem;
    color: black;
    margin-bottom: 3rem;
    font-family: 'Carlito', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Featured Series Container */
.featured-series-container {
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.series-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.series-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.series-item:last-child {
    margin-bottom: 0;
}

.series-image {
    flex: 0 0 40%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    max-height: 500px;
}

.series-image .gallery-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.series-image:hover .gallery-image {
    transform: scale(1.05);
}

.series-text {
    flex: 1;
    padding: 1rem 0;
}

.series-text h4 {
    font-size: 1.8rem;
    color: black;
    margin-bottom: 1rem;
    font-family: 'Carlito', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.series-text h4:hover {
    color: #3d0fb8;
}

.series-text p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
    font-family: 'Carlito', sans-serif;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    text-align: center;
}

.gallery-caption h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: 'Carlito', sans-serif;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #5d17eb;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fed012;
    font-weight: 400;
    font-family: 'Alex Brush', cursive;
    letter-spacing: 1px;
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fed012;
    font-weight: 400;
    font-family: 'Alex Brush', cursive;
    letter-spacing: 1px;
}

.about-text h4 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem 0;
    color: #5d17eb;
    font-weight: 400;
    font-family: 'Great Vibes', cursive;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.8;
    font-family: 'Carlito', sans-serif;
    font-weight: 400;
}

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

.about-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.placeholder-image {
    width: 300px;
    height: 400px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.2rem;
    border: 2px dashed #ccc;
}

/* Background Section */
.background {
    background: #191919;
    padding: 60px 0;
}

/* Project Gallery Section */
.project-gallery {
    background: #fed012;
    padding: 80px 0 20px 0;
}

.project-gallery-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.project-gallery h3 {
    font-size: 2.2rem;
    color: black;
    font-family: 'Alex Brush', cursive;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Section Headings - All use Alex Brush font like hero title */
h2 {
    font-family: 'Alex Brush', cursive;
    font-weight: 400;
    font-size: 3rem;
}

h3 {
    font-family: 'Alex Brush', cursive;
    font-weight: 400;
    font-size: 2.8rem;
}

/* Override for series-name to use Carlito font like "The Burst" */
.gallery-preview h3.series-name {
    font-family: 'Carlito', sans-serif !important;
    font-weight: 400;
    font-size: 1.8rem !important;
}

/* More specific override to ensure it works */
section.gallery-preview h3.series-name {
    font-family: 'Carlito', sans-serif !important;
    font-weight: 400;
    font-size: 1.8rem !important;
}

/* Internal Links Styling */
.internal-link {
    color: #dc3545;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.internal-link:hover {
    color: #c82333;
    border-bottom: 1px solid #c82333;
    text-decoration: none;
}

/* Show More Button Styling */
.show-more-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    width: 100%;
    padding: 20px 0;
}

.show-more-btn {
    background: #fed012;
    color: black;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Carlito', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(254, 208, 18, 0.3);
    text-decoration: none;
    display: inline-block;
    min-width: 150px;
    text-align: center;
}

.show-more-btn:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 208, 18, 0.4);
}

.show-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(254, 208, 18, 0.3);
}


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

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.project-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Photo Gallery Section */
.photo-gallery {
    background: #cdc6e4;
    padding: 0 0 40px 0;
}

.photo-gallery-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.photo-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Testimonials Section */
.testimonials {
    background: #5d17eb;
    padding: 80px 0;
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: #fed012;
    font-family: 'Alex Brush', cursive;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials h3 {
    font-size: 2.5rem;
    color: #fed012;
    font-family: 'Alex Brush', cursive;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-item {
    background: #fed012;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.testimonial-text p {
    font-size: 1.1rem;
    color: black;
    font-family: 'Carlito', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    color: black;
    font-family: 'Alex Brush', cursive;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: black;
    font-family: 'Carlito', sans-serif;
    font-weight: 400;
    margin: 0;
}

/* Contact Section */
.contact {
    background: #191919;
    padding: 80px 0;
    color: white;
}

/* Instagram Button */
.instagram-button-container {
    text-align: center;
    margin: 40px 0;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-family: 'Carlito', sans-serif;
}

.instagram-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

.instagram-icon {
    font-size: 1.3rem;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.contact h3 {
    font-size: 2.5rem;
    color: #fed012;
    font-family: 'Alex Brush', cursive;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 3rem;
}

/* Main contact layout */
.contact-main-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h4 {
    font-size: 1.5rem;
    color: #fed012;
    font-family: 'Alex Brush', cursive;
    font-weight: 400;
    margin-bottom: 1rem;
}

.contact-item p {
    font-size: 1.1rem;
    color: white;
    font-family: 'Carlito', sans-serif;
    font-weight: 400;
    margin: 0;
}

.contact-message p {
    font-size: 1.2rem;
    color: white;
    font-family: 'Carlito', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Form Styles */
.contact-form-container {
    margin-top: 0;
    max-width: 100%;
}

.contact-form-container h4 {
    color: #fed012;
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Alex Brush', cursive;
    font-weight: 400;
}

.contact-form {
    background: black;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #fed012;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #fed012;
    font-weight: 500;
    font-size: 0.9rem;
    font-family: 'Carlito', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #fed012;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: black;
    color: white;
    font-family: 'Carlito', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(254, 208, 18, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fed012;
    box-shadow: 0 0 0 3px rgba(254, 208, 18, 0.2);
    background: black;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: #fed012;
    color: black;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Carlito', sans-serif;
}

.submit-btn:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 208, 18, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
    font-family: 'Carlito', sans-serif;
}

.form-message.success {
    background: rgba(212, 237, 218, 0.2);
    color: #d4edda;
    border: 1px solid rgba(195, 230, 203, 0.3);
    display: block;
}

.form-message.error {
    background: rgba(248, 215, 218, 0.2);
    color: #f8d7da;
    border: 1px solid rgba(245, 198, 203, 0.3);
    display: block;
}

.background-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.background-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.background-left {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: left;
}

.background-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-left: 20px;
}

.background h2 {
    font-size: 2.5rem;
    color: #fed012;
    margin-bottom: 2rem;
    font-family: 'Alex Brush', cursive;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
}

.background h3 {
    font-size: 2.2rem;
    color: #fed012;
    margin-bottom: 1.5rem;
    font-family: 'Alex Brush', cursive;
    font-weight: 400;
    letter-spacing: 1px;
}

.logo-item {
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
    padding: 0.3rem 0;
    min-height: 65px;
    justify-content: flex-start;
}

.logo-icon {
    font-size: 1.8rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 2px solid #fed012;
    flex-shrink: 0;
}

.logo-item h4 {
    font-size: 1.1rem;
    color: #fff0c8;
    font-family: 'Carlito', sans-serif;
    font-weight: 400;
    margin: 0 0 0.3rem 0;
}

.logo-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-align: left;
}


.education-details, .work-details, .art-details {
    margin-top: 0.25rem;
    text-align: left;
}

.university {
    font-size: 1rem;
    color: #fed012;
    font-family: 'Carlito', sans-serif;
    font-weight: 600;
    margin: 0.25rem 0 0 0;
}

.separator-line {
    width: 40px;
    height: 2px;
    background: #fed012;
    margin: 0.5rem 0;
    align-self: flex-start;
}

.degree {
    font-size: 0.9rem;
    color: white;
    font-family: 'Carlito', sans-serif;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
}


.job-title, .business-name {
    font-size: 1rem;
    color: #fed012;
    font-family: 'Carlito', sans-serif;
    font-weight: 600;
    margin: 0.25rem 0 0 0;
}

.duration, .start-date {
    font-size: 0.9rem;
    color: white;
    font-family: 'Carlito', sans-serif;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
}

.background-text {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(254, 208, 18, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 0.5rem;
    text-align: left;
}

.background-text p {
    font-size: 1rem;
    color: white;
    line-height: 1.6;
    font-family: 'Carlito', sans-serif;
    font-weight: 400;
    margin-bottom: 1rem;
}

/* Philosophy Section */
.philosophy {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.philosophy h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 300;
}

.philosophy p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Portfolio Page Styles */
.portfolio-main {
    margin-top: 0;
}

.portfolio-header {
    background: #fed012;
    color: black;
    padding: 100px 0 60px 0;
    text-align: center;
    margin-top: 80px;
}

.portfolio-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.portfolio-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Portfolio-specific section colors */
.portfolio-main .gallery {
    background: white;
}

/* Featured Series section on portfolio page - black background */
.portfolio-main .gallery .gallery-content:first-child {
    background: black;
    padding: 60px 40px;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.portfolio-main .gallery .gallery-content:first-child h3 {
    color: #fed012;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Alex Brush', cursive;
    text-align: center;
}

.portfolio-main .gallery .gallery-content:first-child .series-name {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    font-family: 'Carlito', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    text-align: center;
}

.portfolio-main .gallery .gallery-content:first-child .series-text h4 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Carlito', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
}

.portfolio-main .gallery .gallery-content:first-child .series-text p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    font-family: 'Carlito', sans-serif;
}

/* Project Gallery section on portfolio page - yellow background */
.portfolio-main .gallery .gallery-content:last-child {
    background: #fed012;
    padding: 60px 40px;
    border-radius: 12px;
}

.portfolio-main .gallery .gallery-content:last-child h3 {
    color: black;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Alex Brush', cursive;
    text-align: center;
}

.portfolio-main .gallery .gallery-content:last-child .series-name {
    color: black;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    font-family: 'Carlito', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    text-align: center;
}

.portfolio-main .gallery .gallery-content:last-child .series-text h4 {
    color: black;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Carlito', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
}

.portfolio-main .gallery .gallery-content:last-child .series-text p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    font-family: 'Carlito', sans-serif;
}

/* Gallery Styles */
.gallery {
    padding: 60px 0;
    background: white;
}

.painting {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    min-height: 80vh;
    padding: 0 20px;
}

.painting:nth-child(even) {
    flex-direction: row-reverse;
}

.painting-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}

.placeholder-painting {
    width: 100%;
    max-width: 600px;
    height: 500px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.5rem;
    border: 3px dashed #ccc;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.placeholder-painting:hover {
    transform: translateY(-5px);
}

.placeholder-painting span {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.placeholder-painting p {
    font-size: 1.2rem;
    margin: 0;
}

.painting-info {
    flex: 1;
    padding: 0 40px;
}

.painting-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 300;
}

.painting-info p:first-of-type {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.painting-info p:last-of-type {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #191919;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.footer p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsive Design */
/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        padding: 1rem;
        min-height: 70px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .logo-image {
        height: 60px;
        width: 60px;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .main,
    .portfolio-main {
        margin-top: 0;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: 100vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .gallery-preview h3,
    .about-text h2,
    .about-text h3,
    .background h2,
    .background-right h3,
    .project-gallery h3,
    .testimonials h2,
    .testimonials h3,
    .contact h3 {
        font-size: 2.5rem;
    }
    
    .gallery-preview h3.series-name {
        font-size: 1.8rem !important;
    }
    
    section.gallery-preview h3.series-name {
        font-size: 1.8rem !important;
    }
    
    .gallery-preview h4 {
        font-size: 1.3rem;
    }
    
    .about-content,
    .background-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .background-left {
        order: 2;
    }
    
    .background-right {
        order: 1;
    }
    
    .logo-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1.5rem;
        padding: 1rem 0;
    }
    
    .logo-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .gallery-preview-grid,
    .project-gallery-grid,
    .photo-gallery-grid,
    .testimonials-grid,
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-image,
    .project-image,
    .photo-image {
        height: 250px;
    }
    
    .testimonial-item {
        padding: 1.5rem;
    }
    
    .painting {
        flex-direction: column !important;
        margin-bottom: 40px;
        min-height: auto;
    }
    
    .painting-image,
    .painting-info {
        padding: 15px;
        width: 100%;
    }
    
    .placeholder-painting {
        height: 250px;
    }
    
    .painting-info h3 {
        font-size: 2rem;
    }
    
    .portfolio-header h2 {
        font-size: 2.5rem;
    }
    
    .footer {
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    * {
        margin: 0;
        padding: 0;
    }
    
    html, body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    .container {
        padding: 0 10px;
    }
    
    .nav {
        padding: 0.8rem;
        min-height: 60px;
    }
    
    .logo-image {
        height: 50px;
        width: 50px;
    }
    
    .main {
        margin-top: 0;
    }
    
    .portfolio-main {
        margin-top: 0;
    }
    
    .hero {
        padding: 0;
        margin: 0;
        min-height: 100vh;
        position: relative;
        height: auto;
        display: flex;
        flex-direction: column;
    }
    
    /* Fix logo and nav positioning on small mobile */
    .hero .logo {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        order: 1;
        text-align: center;
        padding: 5px 0;
    }
    
    
    .hero-content {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        padding: 1rem;
        margin: 0;
        order: 3;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .about-text h3,
    .philosophy h3 {
        font-size: 1.6rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .project-image,
    .photo-image {
        height: 150px;
    }
    
    .painting-info h3 {
        font-size: 1.4rem;
    }
    
    .painting-info p {
        font-size: 0.85rem;
    }
    
    .placeholder-painting {
        height: 200px;
    }
    
    .portfolio-header h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-item {
        padding: 1rem;
    }
    
    .testimonial-text p {
        font-size: 0.9rem;
    }
    
    .contact-item h4 {
        font-size: 1.1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .gallery-preview-grid,
    .project-gallery-grid,
    .photo-gallery-grid,
    .testimonials-grid,
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content,
    .background-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        padding: 1rem;
        min-height: 70px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .logo-image {
        height: 60px;
        width: 60px;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .main,
    .portfolio-main {
        margin-top: 0;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: 100vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .gallery-preview h3,
    .about-text h2,
    .about-text h3,
    .background h2,
    .background-right h3,
    .project-gallery h3,
    .testimonials h2,
    .testimonials h3,
    .contact h3 {
        font-size: 2.5rem;
    }
    
    .gallery-preview h3.series-name {
        font-size: 1.8rem !important;
    }
    
    section.gallery-preview h3.series-name {
        font-size: 1.8rem !important;
    }
    
    .gallery-preview h4 {
        font-size: 1.3rem;
    }
    
    .about-content,
    .background-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .background-left {
        order: 2;
    }
    
    .background-right {
        order: 1;
    }
    
    .logo-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1.5rem;
        padding: 1rem 0;
    }
    
    .logo-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .gallery-preview-grid,
    .project-gallery-grid,
    .photo-gallery-grid,
    .testimonials-grid,
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-image,
    .project-image,
    .photo-image {
        height: 250px;
    }
    
    .testimonial-item {
        padding: 1.5rem;
    }
    
    .painting {
        flex-direction: column !important;
        margin-bottom: 40px;
        min-height: auto;
    }
    
    .painting-image,
    .painting-info {
        padding: 15px;
        width: 100%;
    }
    
    .placeholder-painting {
        height: 250px;
    }
    
    .painting-info h3 {
        font-size: 2rem;
    }
    
    .portfolio-header h2 {
        font-size: 2.5rem;
    }
    
    .footer {
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .nav {
        padding: 0.8rem;
        min-height: 60px;
    }
    
    .logo-image {
        height: 50px;
        width: 50px;
    }
    
    .logo h1 {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .gallery-preview h3,
    .about-text h3,
    .background-right h3,
    .project-gallery h3,
    .testimonials h3,
    .contact h3 {
        font-size: 2rem;
    }
    
    .gallery-preview h4 {
        font-size: 1.1rem;
    }
    
    .about-text p,
    .background-right p,
    .contact-message p {
        font-size: 0.95rem;
    }
    
    .gallery-image,
    .project-image,
    .photo-image {
        height: 200px;
    }
    
    .testimonial-item {
        padding: 1rem;
    }
    
    .testimonial-text p {
        font-size: 0.9rem;
    }
    
    .painting-info h3 {
        font-size: 1.8rem;
    }
    
    .painting-info p {
        font-size: 0.9rem;
    }
    
    .portfolio-header h2 {
        font-size: 2rem;
    }
    
    .portfolio-header p {
        font-size: 1rem;
    }
    
    .placeholder-painting {
        height: 200px;
    }
    
    .placeholder-painting span {
        font-size: 1rem;
    }
    
    .placeholder-painting p {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .gallery-preview h3,
    .about-text h3,
    .background-right h3,
    .project-gallery h3,
    .testimonials h3,
    .contact h3 {
        font-size: 1.8rem;
    }
    
    .gallery-preview h4 {
        font-size: 1rem;
    }
    
    .about-text p,
    .background-right p,
    .contact-message p {
        font-size: 0.9rem;
    }
    
    .gallery-image,
    .project-image,
    .photo-image {
        height: 180px;
    }
    
    .painting-info h3 {
        font-size: 1.6rem;
    }
    
    .painting-info p {
        font-size: 0.85rem;
    }
    
    .portfolio-header h2 {
        font-size: 1.8rem;
    }
    
    .placeholder-painting {
        height: 180px;
    }
}

/* FINAL OVERRIDE - Ensure series-name is always 1.8rem */
section.gallery-preview h3.series-name,
.gallery-preview h3.series-name {
    font-size: 1.8rem !important;
    font-family: 'Carlito', sans-serif !important;
    font-weight: 400 !important;
}

