/* ===================================
   The CreativeEye - Main Styles
   =================================== */

/* Root Variables */
:root {
    --primary-color: #D94E28;
    --secondary-color: #2A4B5C;
    --accent-color: #F4A261;
    --dark-color: #1A1A1A;
    --light-color: #F8F6F3;
    --text-color: #333333;
    --border-color: #E0D8D0;
	--designeye-color: #1BA323; 
    --gray-light-color: #F5F5F5; 
    --gray-mid-color: #666666;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', 'Fanwood Text', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Yeseva One', serif;
    font-weight: normal;
    line-height: 1.3;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Navigation */
.main-nav {
    background-color: var(--dark-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: 'Yeseva One', serif;
    font-size: 1.5rem;
    color: white;
}

.nav-brand a {
    color: white;
    text-decoration: none;
}

.brand-creative {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: white;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-cta {
    background-color: var(--primary-color) !important;
    color: white !important;
    padding: 10px 25px !important;
    border-radius: 20px;
    font-family: 'Yeseva One', serif;
    font-size: 0.85rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-cta:hover {
    background-color: var(--accent-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 78, 40, 0.4);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 1), rgba(217, 78, 40, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 10px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.95;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-secondary {
    font-size: 1.4rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
    font-style: italic;
}

/* Intro Text Section */
.intro-text {
    padding: 100px 0;
    background-color: white;
}

.lead-text {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--secondary-color);
    font-style: normal;
}

.section-subheading {
    margin: 50px 0 30px;
    color: var(--primary-color);
}

.intro-text p {
    margin-bottom: 25px;
}


/* Section Hero (Half-Height) */


.section-hero {
    position: relative;
    height: 30vh;
    min-height: 200px;
    overflow: hidden;
    margin-bottom: 80px;
}

.section-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 2;
    font-size: 3.5rem;
    text-align: center;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}


/* What I Do Section */


.what-i-do-section {
    padding: 80px 0 100px;
    background-color: var(--light-color);
}

.what-i-do-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.what-i-do-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
}

.what-i-do-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.what-i-do-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.what-i-do-item:hover img {
    transform: scale(1.1);
}

.what-i-do-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 75, 92, 0.95), rgba(217, 78, 40, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.what-i-do-item:hover .what-i-do-overlay {
    opacity: 1;
}

.what-i-do-text {
    text-align: center;
    color: white;
    padding: 20px;
}

.what-i-do-text h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: white;
}

.what-i-do-text p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Different sizes for visual variety */
.what-i-do-item.size-small {
    grid-column: span 1;
    grid-row: span 1;
    height: 250px;
}

.what-i-do-item.size-medium {
    grid-column: span 1;
    grid-row: span 2;
    height: 520px;
}

.what-i-do-item.size-large {
    grid-column: span 2;
    grid-row: span 1;
    height: 250px;
}


/* Portfolio Section */


.portfolio-section {
    padding: 100px 0;
    background-color: white;
	background-image: url("images/Experimental-big-ones/Experimental-hero3.jpg");	
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 60px;
    font-style: italic;
}

.portfolio-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.portfolio-category {
    background-color: var(--light-color);
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.portfolio-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background-color: white;
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    color: white;
    transition: transform 0.3s ease;
}

.portfolio-category:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.portfolio-category h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.portfolio-category p {
    color: var(--text-color);
    font-size: 1.05rem;
}

/* Testimonials Section */
.testimonials-section {
    padding-bottom: 100px;
    background-color: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.testimonial-item {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: var(--text-color);
}

.testimonial-author {
    font-family: 'Yeseva One', serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--secondary-color);
}



/* thedesigneye Section */



.thedesigneye-section {
    padding: 100px 0;
    background-color: white;
}

.thedesigneye-section .section-title {
    text-align: left;
}

.thedesigneye-content {
    margin-top: 30px;
}

.thedesigneye-text {
    position: relative;
}


/* jc added designeye logo */


.thedesigneyelogo {
    font-family: Inter, sans-serif;
    line-height: 1.3;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -1px;
}

.thedesigneye-square-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    float: right;
    margin: 0 0 30px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.thedesigneye-eye-img {
    width: 150px;
    height: auto;
    float: left;
    margin: 10px 30px 40px 0;
    shape-outside: circle(50%);
    shape-margin: 20px;
}

.cta-box {
    position: relative;
    color: white;
    padding: 0;
    border-radius: 15px;
    margin-top: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.20);
    min-height: 300px;
}

.cta-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/Experimental-big-ones/Experimental-hero5.jpg?w=1200");
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    z-index: 1;
}

.cta-background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 33, 33, 0.2), rgba(20, 60, 20, 0.2));
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    padding: 50px;
    text-align: center;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: white;
}

.cta-box a {
    color: white;
    text-decoration: underline;
}

.cta-box a:hover {
    color: var(--primary-color);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--designeye-color);
    padding: 10px 30px;
    border-radius: 30px;
    font-family: 'Yeseva One', serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    font-weight: bold;
}

.cta-button:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Blog Preview Section */
.blog-preview-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

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

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

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

.blog-card-content {
    padding: 30px;
}

.blog-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.blog-card h3 a {
    color: var(--secondary-color);
}

.blog-card h3 a:hover {
    color: var(--primary-color);
}

.blog-card p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: bold;
    font-family: 'Yeseva One', serif;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--accent-color);
}

/* Contact Section */
.contact-section {
    padding-bottom: 100px;
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 40px;
}

.contact-details p {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-details i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 3px;
}

.contact-form-wrapper {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Yeseva One', serif;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Fanwood Text', serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    background-color: var(--primary-color);
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-family: 'Yeseva One', serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(217, 78, 40, 0.3);
}

/* CAPTCHA Styling */
.captcha-group {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
}

.captcha-group label {
    display: block;
    margin-bottom: 12px;
}

#captchaQuestion {
    font-family: 'Yeseva One', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    padding: 0 5px;
}

.refresh-captcha {
    display: inline-block;
    margin-top: 10px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.refresh-captcha:hover {
    background-color: var(--primary-color);
}

.refresh-captcha i {
    margin-right: 5px;
}

/* Footer */
.site-footer {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.site-footer p {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 968px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.7rem; }
    
    .hero-title {
        font-size: 3rem;
    }

    .hero-secondary {
        font-size: 1.2rem;
    }
    
    .section-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }

    .thedesigneye-square-img {
        width: 250px;
        height: 250px;
        margin: 0 0 20px 30px;
    }

    .thedesigneye-eye-img {
        width: 120px;
    }

    .what-i-do-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .what-i-do-item.size-medium {
        height: 420px;
    }

    .what-i-do-item.size-large {
        height: 200px;
    }

    .what-i-do-item.size-small {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }

    .nav-cta {
        margin-top: 10px;
    }
    
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-secondary {
        font-size: 1.1rem;
    }
    
    .services-grid,
    .portfolio-categories,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 30px;
    }

    .cta-content {
        padding: 30px;
    }

    .thedesigneye-square-img,
    .thedesigneye-eye-img {
        float: none;
        display: block;
        margin: 20px auto;
    }

    .thedesigneye-square-img {
        width: 100%;
        max-width: 300px;
    }

    .what-i-do-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .what-i-do-item.size-small,
    .what-i-do-item.size-medium,
    .what-i-do-item.size-large {
        grid-column: span 1;
        grid-row: span 1;
        height: 200px;
    }

    .what-i-do-text h3 {
        font-size: 1.4rem;
    }

    .what-i-do-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-secondary {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }

    .cta-content {
        padding: 25px;
    }

    .portfolio-category {
        padding: 40px 25px;
    }

    .category-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .what-i-do-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .what-i-do-item.size-small,
    .what-i-do-item.size-medium,
    .what-i-do-item.size-large {
        grid-column: span 1;
        grid-row: span 1;
        height: 250px;
    }
}

/* Custom Bullet Point Colors */
ul:not(.nav-menu) {
    list-style: none;
    padding-left: 0;
}

ul:not(.nav-menu) li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

ul:not(.nav-menu) li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}