/*
Theme Name: ID Design v3
Theme URI: https://iddesign.com
Author: ID Design
Author URI: https://iddesign.com
Description: Premium multi-page portfolio theme for visual communications and design agencies. Features hero slider, portfolio gallery, elegant animations, and multi-page architecture with separate page templates.
Version: 3.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: iddesign
Tags: portfolio, business, agency, design, custom-header, custom-menu, featured-images, full-width-template, one-column, two-columns, theme-options, multi-page

ID Design WordPress Theme v3, Copyright 2026
ID Design is distributed under the terms of the GNU GPL
*/

:root {
    --color-primary: #C13145;
    --color-black: #1a1a1a;
    --color-white: #fefefe;
    --color-cream: #f5f3f0;
    --color-gray: #666;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Work Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-black);
    background: var(--color-white);
    overflow-x: hidden;
}

/* Custom Cursor */
body {
    cursor: none;
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: all 0.5s ease;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 60px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.logo {
    height: 60px;
    transition: all 0.3s ease;
}

nav.scrolled .logo {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 50px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-black);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section with Slider */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--color-white);
    z-index: 2;
    width: 80%;
    max-width: 1200px;
}

.slide-content h1 {
    font-family: var(--font-display);
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease forwards 0.3s;
}

.slide-content p {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards 0.6s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-nav {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--color-white);
    transform: scale(1.3);
}

/* About Section */
.about {
    padding: 150px 60px;
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(193, 49, 69, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(50px, 6vw, 90px);
    font-weight: 400;
    margin-bottom: 80px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--color-primary);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-text h3 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--color-primary);
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 25px;
}

.about-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 2px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    pointer-events: none;
    transition: all 0.6s ease;
}

.about-image:hover::after {
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
}

/* Services Section */
.services {
    padding: 150px 60px;
    background: var(--color-white);
    position: relative;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
}

.service-card {
    position: relative;
    padding: 60px 40px;
    background: var(--color-cream);
    transition: all 0.5s ease;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-black);
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    margin-top: 25px;
}

.service-list li {
    font-size: 15px;
    color: var(--color-gray);
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-list li::before {
    content: '→';
    color: var(--color-primary);
    margin-right: 10px;
    font-weight: 600;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--color-black);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: grayscale(0.3);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(193, 49, 69, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 2px;
}

/* Contact Section */
.contact {
    padding: 150px 60px;
    background: var(--color-white);
    position: relative;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 40px;
    color: var(--color-primary);
}

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

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gray);
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-detail p {
    font-size: 14px;
    color: var(--color-black);
    line-height: 1.6;
}

.contact-detail a {
    color: var(--color-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--color-primary);
}

/* Contact Form - Artistic Enhanced Style */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    color: var(--color-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.form-group input,
.form-group textarea {
    padding: 16px 0;
    font-family: var(--font-body);
    font-size: 14px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    background: transparent;
    transition: all 0.4s ease;
    color: var(--color-black);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--color-primary);
    border-bottom-width: 2px;
    padding-bottom: 15px;
}

.form-group input:focus + label,
.form-group textarea:focus + label {
    color: var(--color-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-size: 14px;
    line-height: 1.8;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.3);
    font-size: 13px;
    font-style: italic;
}

.submit-btn {
    padding: 16px 45px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    font-family: var(--font-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.4s ease;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn:hover {
    background: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(193, 49, 69, 0.3);
}

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

/* Contact Form 7 Plugin Styling Override */
.wpcf7-form-control-wrap {
    width: 100%;
    display: block;
}

.wpcf7-form p {
    margin: 0;
}

.wpcf7-form .form-group {
    margin-bottom: 30px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 16px 0;
    font-family: var(--font-body);
    font-size: 14px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    background: transparent;
    transition: all 0.4s ease;
}

.wpcf7-form input[type="submit"] {
    padding: 16px 45px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    font-family: var(--font-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 500;
}

.wpcf7-form input[type="submit"]:hover {
    background: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(193, 49, 69, 0.3);
}

/* Footer */
footer {
    padding: 60px;
    background: var(--color-black);
    color: var(--color-white);
    text-align: center;
}

footer p {
    font-size: 14px;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* ====================
   PAGE TEMPLATES STYLING
   ==================== */

/* Page Hero Section */
.page-hero {
    height: 50vh;
    min-height: 400px;
    background: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(193, 49, 69, 0.1) 0%, rgba(26, 26, 26, 0.9) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(50px, 7vw, 90px);
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: clamp(16px, 2vw, 20px);
    letter-spacing: 2px;
    opacity: 0.9;
}

/* Page Content */
.page-content {
    padding: 100px 60px;
    background: var(--color-white);
}

.page-content-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Impressum Specific Styling */
.impressum-content {
    max-width: 900px;
    margin: 0 auto;
}

.impressum-section {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.impressum-section:last-child {
    border-bottom: none;
}

.impressum-section h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--color-primary);
}

.impressum-section h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    margin: 30px 0 15px;
    color: var(--color-black);
}

.impressum-section p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--color-gray);
    margin-bottom: 15px;
}

.impressum-section strong {
    color: var(--color-black);
    font-weight: 600;
}

.impressum-section a {
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.impressum-section a:hover {
    border-bottom-color: var(--color-primary);
}

.company-details {
    background: var(--color-cream);
    padding: 30px;
    border-radius: 2px;
    margin: 30px 0;
}

.company-details p {
    margin-bottom: 10px;
    font-size: 14px;
}

/* Standalone Page About/Services/etc */
.standalone-section {
    padding: 80px 60px;
}

.standalone-section.alt-bg {
    background: var(--color-cream);
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--color-primary);
    z-index: 9999;
    transition: width 0.2s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    nav {
        padding: 20px 40px;
    }

    .nav-links {
        gap: 30px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 20px;
    }

    .logo {
        height: 50px;
    }

    .nav-links {
        display: none;
    }

    .about,
    .services,
    .contact {
        padding: 80px 30px;
    }

    .section-title {
        font-size: 50px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }

    body {
        cursor: auto;
    }
}

/* Animation on Scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HAMBURGER GUMB ===== */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-black);
    margin: 6px 0;
    transition: all 0.3s ease;
}

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

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

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

/* ===== DROPDOWN MENI ===== */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px 30px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        font-size: 15px;
    }
}
.simple-page-wrapper {
    padding: 120px 0 80px;
    min-height: 60vh;
}

.simple-page-content {
    max-width: 800px;
    margin: 0 auto;
}

.simple-page-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-dark, #1a1a1a);
}

.simple-page-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text, #444);
}
.simple-text ul,
.simple-text ol,
.simple-text li {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.9;
    color: var(--color-gray);
}

.simple-text ul {
    margin: 15px 0;
    padding-left: 20px;
}

.simple-text li {
    margin-bottom: 8px;
}

.simple-text ul li::marker {
    font-family: var(--font-body);
}
.simple-text ul li,
.simple-text ol li {
    font-weight: 400;
}
.simple-text li {
    font-weight: 400 !important;
    font-style: normal !important;
}