/* DDC Regular 2026 - Black & Orange Premium Theme */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Lexend:wght@100..900&family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Oxanium:wght@200..800&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --color-black: #0a0a0a;
    --color-dark-grey: #1a1a1a;
    --color-medium-grey: #2d2d2d;
    --color-grey: #404040;
    --color-light-grey: #6b6b6b;
    --color-silver: #9a9a9a;
    --color-platinum: #c4c4c4;
    --color-white: #ffffff;
    --color-accent: #ff6200;
    --color-accent-hover: #ff8533;
    --color-accent-glow: rgba(255, 98, 0, 0.4);

    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --gradient-card: linear-gradient(145deg, #1e1e1e 0%, #151515 100%);
    --gradient-accent: linear-gradient(135deg, #ff6200 0%, #ff8533 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);

    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Anton', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --shadow-glow: 0 0 20px var(--color-accent-glow);
}

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

body {
    background-color: var(--color-black);
    color: var(--color-platinum);
    font-family: var(--font-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.3) 0%, 
        rgba(0,0,0,0.6) 50%, 
        var(--color-black) 100%);
}

.video-text {
    z-index: 10;
    text-align: center;
}

.video-text h1 {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 10rem);
    color: var(--color-white);
    letter-spacing: 15px;
    margin-bottom: 0px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: linear-gradient(to bottom, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.video-text p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--color-accent);
    letter-spacing: 8px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ===== Section Headers ===== */
.hero-section1 {
    padding: 100px 5% 50px;
    text-align: center;
}

.hero-text1 h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-white);
    letter-spacing: 8px;
    position: relative;
    display: inline-block;
}

.hero-text1 h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--color-accent);
}

/* ===== Specifications Section ===== */
.ddc-specs-section {
    padding: 80px 5%;
    background: var(--color-black);
}

.ddc-specs-header {
    text-align: center;
    margin-bottom: 60px;
}

.ddc-specs-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-white);
    letter-spacing: 5px;
}

.ddc-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.ddc-specs-panel {
    background: var(--gradient-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--color-medium-grey);
    transition: all var(--transition-medium);
}

.ddc-specs-panel:hover {
    border-color: var(--color-accent);
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.ddc-specs-panel-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ddc-specs-panel-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-black);
}

.ddc-specs-panel-header h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-white);
}

.ddc-specs-list {
    list-style: none;
}

.ddc-specs-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.ddc-specs-label {
    color: var(--color-silver);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ddc-specs-value {
    color: var(--color-white);
    font-weight: 600;
}

/* ===== Team Section ===== */
.ddc-team-section {
    padding: 60px 5%;
}

.ddc-team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.ddc-team-member {
    width: 240px;
    margin: 20px;
    display: inline-block;
    vertical-align: top;
    text-align: center;
}

.ddc-team-member #pass {
    height: 250px;
    width: 200px;
    border-radius: 10px;
    object-fit: cover;
    filter: none;
    opacity: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.ddc-team-member:hover #pass {
    transform: translateY(-5px);
}

.ddc-team-member .row1-data1 {
    width: 220px;
    margin: 15px auto 0;
    text-align: left;
    position: relative;
}

.ddc-team-member .name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.ddc-team-member .name {
    color: #ff6200;
    font-size: 1.3rem;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.ddc-team-member .row1-data1 a i {
    color: #00acee !important; /* Professional Blue */
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.ddc-team-member .row1-data1 a:hover i {
    transform: scale(1.2);
}

.ddc-team-member .separator1 {
    width: 100%;
    height: 2px;
    background: #ff6200;
    margin: 8px 0;
}

.ddc-team-member .role {
    display: block;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
}

/* ===== Design Process ===== */
.design-process-section {
    padding: 80px 5%;
}

.design-process-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.design-text-area h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 25px;
}

.design-text-area p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--color-silver);
}

.design-video-area {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--color-medium-grey);
    box-shadow: var(--shadow-glow);
}

.process-video {
    width: 100%;
    display: block;
}

/* ===== Gallery Section ===== */
.gallery-tabs-section {
    padding: 60px 5% 100px;
}

.gallery-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-spec-card {
    background: var(--gradient-card);
    border-radius: 24px;
    border: 1px solid var(--color-medium-grey);
    overflow: hidden;
    transition: all var(--transition-medium);
}

.gallery-spec-card:hover {
    border-color: var(--color-accent);
}

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

.gallery-spec-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.gallery-spec-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-white);
}

.gallery-image-view {
    position: relative;
    height: 350px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-img-display {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--color-white);
    font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .design-process-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-specs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-text1 h2 {
        font-size: 2rem;
    }
    
    .ddc-specs-panel {
        padding: 30px;
    }
}