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

:root {
    --color-black: #000000;
    --color-cream: #e2dbcc;
    --color-purple: #3050ff;
    --color-bg-purple: #003ecc;

    --color-orange: rgb(185, 80, 75);

    /*--color-orange: #fa5a0a; */
    --color-cyan: #039eac; 
    --color-dark-bg: #0c0c0c;
    --color-section-bg: rgba(12, 12, 12, 0.8);
}

body {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--color-black);
    color: var(--color-cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.app {
    min-height: 100vh;
    width: 100%;
}

/* Container */
.container {
    width: 100%;
    max-width: 1176px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
   
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
   
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: max(100vh, 800px); /* change */
    display: flex;
    flex-direction: column;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    height: 400px;
 
/*    background: linear-gradient(to bottom, rgba(112, 62, 177, 0.25), transparent); */
    background: black;
    pointer-events: none;
    z-index: 0;
}

.background-animation {
    position: absolute;
    inset: 0;
    /* opacity: 0.3; */
    pointer-events: none;
    z-index: 1;
}

.background-image-wrapper {
    position: absolute;
    /* top: 50%;
    left: 50%; */
    transform: none; /* translate(-50%, -25%); */
    inset: 0;
    line-height: 0;
    width: 100%;
    height: 100%;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: luminosity;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: top;
}

@media (min-width: 640px) {
    .hero-content {
        padding: 3rem 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-content {
        padding: 3rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 2rem 2rem;
    }
}

/* Header */
.header {
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .header {
        margin-bottom: 4rem;
    }
}

@media (min-width: 1024px) {
    .header {
        margin-bottom: 4rem;
    }
}

.logo {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-cream);
}

@media (min-width: 640px) {
    .logo {
        font-size: 1.5rem;
    }
}

/* Hero Main */
.hero-main {
    max-width: 56rem;
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.7em;
    min-height: 1.7em;
    color: var(--color-cream);
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 48rem;
    color: var(--color-cream);
}

@media (min-width: 640px) {
    .hero-description {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }
}

/* Form */
.index-form {
    margin-top: 1.5rem;
}

.form-label {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--color-cream);
}

@media (min-width: 640px) {
    .form-label {
        font-size: 1.125rem;
    }
}

.form-inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .form-inputs {
        flex-direction: row;
        gap: 1.5rem;
    }

}

.url-input-wrapper {
    flex: 1;
    min-width: 0;
    position: relative;
    border: 1px solid rgba(226, 219, 204, 0.3);
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.75);
    transition: border-color 0.2s;
}

.url-input-wrapper:focus-within {
    outline: 2px solid var(--color-orange);
    outline-offset: 2px;
    border-color: var(--color-orange);
}

.email-input:focus-within {
    outline: 2px solid var(--color-orange);
    outline-offset: 2px;
    border-color: var(--color-orange);
}


@media (min-width: 640px) {
    .url-input-wrapper {
        padding: 1rem;
    }
  
}

.url-prefix {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(226, 219, 204, 0.4);
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .url-prefix {
        font-size: 1rem;
    }
}

.globe-icon {
    width: 1.25rem;
    height: 1.25rem;
}

@media (min-width: 640px) {
    .globe-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.url-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--color-cream);
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .url-input {
        font-size: 1rem;
    }
}

.url-input::placeholder {
    color: rgba(226, 219, 204, 0.6);
}

.email-input {
    flex: 1;
    min-width: 0;
    border: 1px solid rgba(226, 219, 204, 0.3);
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.85);
    color: var(--color-cream);
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .email-input {
        padding: 1rem;
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .email-input {
        flex: 0.7;
    }
}

.email-input::placeholder {
    color: rgba(226, 219, 204, 0.6);
}

.submit-btn {
    background: var(--color-orange);
    color: var(--color-cream);
    border: none;
    border-radius: 0.375rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .submit-btn {
        width: auto;
    }
}

.submit-btn:hover {
    background: rgb(220, 100, 90)
}

.send-icon {
    width: 1.25rem;
    height: 1.25rem;
}

@media (min-width: 640px) {
    .send-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.hero-spacer {
    height: 8rem;
}

@media (min-width: 640px) {
    .hero-spacer {
        height: 12rem;
    }
}

@media (min-width: 1024px) {
    .hero-spacer {
        height: 16rem;
    }
}

/* Section 1 */
.section-1 {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

@media (min-width: 640px) {
    .section-1 {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .section-1 {
        padding: 8rem 0;
    }
    
}

.section-gradient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at center, 
        rgba(47, 26, 75, 1) 0%, 
        rgba(35, 20, 56, 1) 25%, 
        rgba(24, 13, 38, 1) 50%, 
        rgba(12, 7, 19, 1) 75%, 
        rgba(6, 3, 9, 1) 87.5%, 
        rgba(0, 0, 0, 1) 100%);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

.section-title {
    font-size: 1.875rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--color-cream);
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.125rem;
    max-width: 64rem;
    margin: 0 auto;
    color: var(--color-cream);
}

@media (min-width: 640px) {
    .section-description {
        font-size: 1.25rem;
    }
}

/* Features Grid */
.features-grid {

display: grid;

    grid-template-columns: 1fr;
 
    max-width: 50rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .features-grid {
  
       grid-template-columns: repeat(2, 1fr);

    }
}

.feature-card {

   
    padding: 1.5rem;
   
    text-align: right;
    
 
}
.border-bottom {
    border-bottom: 1px solid rgba(226, 219, 204, 0.2);
}
.border-right {
    border-right: 1px solid rgba(226, 219, 204, 0.2);
}
.border-top {
    border-top: 1px solid rgba(226, 219, 204, 0.2);
}
.border-left {
    border-left: 1px solid rgba(226, 219, 204, 0.2);
}

@media (min-width: 640px) {
    .feature-card {
        padding: 2rem;}

    .feature-card:nth-child(1) {
        padding: 2rem;
        border-right: 1px solid rgba(226, 219, 204, 0.2);
    }
}

.feature-card:nth-child(2) {
    
    text-align: left;
}

@media (min-width: 768px) {
    .feature-card:nth-child(2) {
        border-bottom: none;
       
    }
}

.feature-card:nth-child(3) {
   border-right: 1px solid rgba(226, 219, 204, 0.2);
}

@media (min-width: 768px) {
    .feature-card:nth-child(3) {
       
       border-top: 1px solid rgba(226, 219, 204, 0.2);
    }
}

.feature-card:nth-child(4) {
    border-top: 1px solid rgba(226, 219, 204, 0.2);
    text-align: left;
}

@media (max-width: 639px) {
    .feature-card {
        border: 1px solid rgba(226, 219, 204, 0.2);
        text-align: center;
    }
    
    .feature-card:nth-child(2),
    .feature-card:nth-child(4) {
        text-align: center;
    }
    
    .feature-image-wrapper {
        justify-content: center !important;
        align-items: center !important;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1rem;
        display: flex;
        height: 4rem;
    }
    
    .feature-image-wrapper img {
        margin: 0 auto;
    }
    
    .feature-card:nth-child(1) .feature-image-wrapper,
    .feature-card:nth-child(2) .feature-image-wrapper,
    .feature-card:nth-child(3) .feature-image-wrapper,
    .feature-card:nth-child(4) .feature-image-wrapper {
        justify-content: center !important;
        align-items: center !important;
    }
    
    .feature-icon-wrapper {
        justify-content: center !important;
        align-items: center !important;
        margin-left: auto;
        margin-right: auto;
        width: 4rem;
        height: 4rem;
        margin-bottom: 1rem;
    }
}

.feature-image-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.feature-card:nth-child(2) .feature-image-wrapper,
.feature-card:nth-child(4) .feature-image-wrapper {
    justify-content: flex-start;
}

.feature-image-wrapper img {
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    object-fit: cover;
    overflow: hidden;
}

@media (min-width: 640px) {
    .feature-image-wrapper img {
        width: 5rem;
        height: 5rem;
    }
}

.feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
   
}

@media (min-width: 640px) {
    .feature-icon-wrapper {
        width: 5rem;
        height: 5rem;
    }
}

.zero-guesswork-icon {
    width: 100%;
    height: 100%;
}

.feature-title {
    color: var(--color-orange);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .feature-title {
        font-size: 1.5rem;
    }
}

.feature-text {
    font-size: 0.875rem;
    color: var(--color-cream);
}

@media (min-width: 640px) {
    .feature-text {
        font-size: 1rem;
    }
}

/* Section 2 */
.section-2 {
    background: var(--color-section-bg);
    padding: 4rem 0;
}

@media (min-width: 640px) {
    .section-2 {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .section-2 {
        padding: 8rem 0;
    }
}

.mcp-section {
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .mcp-section {
        margin-bottom: 6rem;
    }
}

.mcp-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .mcp-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.mcp-title {
    font-size: 1.875rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .mcp-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .mcp-title {
        font-size: 3rem;
    }
}

.text-normal {
    color: var(--color-cream);
}

.text-orange {
    color: var(--color-orange);
}

.text-cyan {
    color: var(--color-cyan);
}

.mcp-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--color-cream);
}

@media (min-width: 640px) {
    .mcp-description {
        font-size: 1.25rem;
    }
}

.mcp-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--color-orange);
    color: var(--color-black);
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-text {
    flex: 1;
    font-size: 0.875rem;
    color: var(--color-cream);
}

@media (min-width: 640px) {
    .step-text {
        font-size: 1rem;
    }
}
.logowrap{
    display: flex; 
    gap: 15px;
    
}

.mcp-right {
    background: var(--color-black);
    border: 1px solid rgba(226, 219, 204, 0.2);
    border-radius: 0.5rem;
    padding: 1.5rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .mcp-right {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .mcp-right {
        padding: 2.5rem;
    }
}

.workflow-diagram {
    text-align: center;
    color: rgba(226, 219, 204, 0.5);
}

.diagram-placeholder {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .diagram-placeholder {
        font-size: 1rem;
    }
}

.diagram-subtitle {
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

/* Code Section */
.code-section {
    max-width: 96rem;
    margin: 0 auto;
}

.code-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--color-cream);
}

@media (min-width: 640px) {
    .code-title {
        font-size: 1.875rem;
    }
}

.code-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--color-cream);
}

@media (min-width: 640px) {
    .code-description {
        font-size: 1.25rem;
    }
}

.code-block {
    background: var(--color-black);
    border: 1px solid rgba(226, 219, 204, 0.2);
    border-radius: 0.5rem;
    padding: 1rem;
    overflow-x: auto;
}

@media (min-width: 640px) {
    .code-block {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .code-block {
        padding: 2rem;
    }
}

.code-content {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--color-cream);
    white-space: pre;
    margin: 0;
    background: var(--color-black);
}

@media (min-width: 640px) {
    .code-content {
        font-size: 0.875rem;
    }
}

/* Syntax highlighting renkleri */
.code-content .http-method {
    color: var(--color-purple); /* Mavi - HTTP method'lar için */
    font-weight: bold;
}

.code-content .endpoint {
    color: #E2DBCC; /* Mavi - Endpoint'ler için */
}

.code-content .url {
    color: var(--color-orange); /* Mavi - URL'ler için */
}

.code-content .json-key {
    color: var(--color-orange) ; /* Turuncu - JSON key'leri için */
}

.code-content .json-string {
    color:var(--color-cyan); /* Cyan - JSON string değerleri için */
}

.code-content .description {
    color: #6c6960; /* Gri - Açıklamalar için */
}

/* Section 3 */
.section-3 {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

@media (min-width: 640px) {
    .section-3 {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .section-3 {
        padding: 8rem 0;
    }
}

.section-3-gradient {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 390px;
    height: 390px;
    pointer-events: none;
    filter: blur(210px);
   background: linear-gradient(180deg,var(--color-bg-purple) 0%, #2F1A4B 100%);
}


.section-4-gradient {
    position: absolute;
    bottom: -280px;
    left: 50%;
    transform: translateX(-50%);
    width: 390px;
    height: 390px;
    pointer-events: none;
    filter: blur(210px);
/*    background: linear-gradient(180deg, #303eb1 0%, #2F1A4B 100%); */
    background-color: black;
}

.automation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 96rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .automation-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
}

.automation-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.automation-item:nth-child(1) {
    border-bottom: 1px solid rgba(226, 219, 204, 0.2);
    padding-bottom: 2rem;
}

.automation-item:nth-child(2) {
    border-bottom: 1px solid rgba(226, 219, 204, 0.2);
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .automation-item:nth-child(1) {
        border-bottom: none;
        border-right: 1px solid rgba(226, 219, 204, 0.2);
        padding-bottom: 0;
        padding-right: 3rem;
    }
    
    .automation-item:nth-child(2) {
        border-bottom: none;
        border-right: 1px solid rgba(226, 219, 204, 0.2);
        padding-bottom: 0;
        padding-right: 3rem;
    }
}

.automation-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.automation-icon svg {
    width: 1.70rem;
    height: 1.70rem;
}

.automation-title {
    color: var(--color-orange);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .automation-title {
        font-size: 1.5rem;
    }
}

.automation-text {
    font-size: 0.875rem;
    color: var(--color-cream);
}

@media (min-width: 640px) {
    .automation-text {
        font-size: 1rem;
    }
}

/* Section 4 */
.section-4 {
    padding: 4rem 0;
}

@media (min-width: 640px) {
    .section-4 {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .section-4 {
        padding: 8rem 0;
    }
}

.reliability-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .reliability-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

.reliability-chart {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 20rem;
    height: 20rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .reliability-chart {
        justify-content: flex-start;
    }
}

.chart-svg {
    width: 12rem;
    height: 12rem;
    transform: rotate(-90deg);
}

.progress-bg {
    opacity: 0.3;
}

.progress-bar {
    transition: stroke-dashoffset 2s ease-in-out;
}

@media (min-width: 640px) {
    .chart-svg {
        width: 14rem;
        height: 14rem;
    }
    
    .reliability-chart {
        width: 14rem;
        height: 14rem;
    }
}

.chart-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--color-cream);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

@media (min-width: 640px) {
    .chart-text {
        font-size: 3rem;
    }
    
}

.chart-tick {
    position: absolute;
    top: 30%;
    right: 15%;
    width: 4rem;
    height: 4rem;
    background: var(--color-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-tick svg {
    width: 2rem;
    height: 2rem;
}

.reliability-subtitle {
    color: var(--color-cyan);
    font-style: italic;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .reliability-subtitle {
        font-size: 1.25rem;
    }
}

.reliability-title {
    font-size: 1.875rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--color-cream);
}

@media (min-width: 640px) {
    .reliability-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .reliability-title {
        font-size: 3rem;
    }
}

.reliability-description {
    font-size: 1.125rem;
    color: var(--color-cream);
}

@media (min-width: 640px) {
    .reliability-description {
        font-size: 1.25rem;
    }
}

/* Section 5 */
.section-5 {
    background: linear-gradient(to bottom, transparent, rgb(185, 80, 75,0.6));
    padding: 4rem 0;
    text-align: center;
}

@media (min-width: 640px) {
    .section-5 {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .section-5 {
        padding: 8rem 0;
    }
}

.approach-title {
    font-size: 1.875rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--color-cream);
}

@media (min-width: 640px) {
    .approach-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .approach-title {
        font-size: 3rem;
    }
}


.approach-content {
    max-width: 80rem;
    margin: 0 auto;
    font-size: 1.125rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: var(--color-cream);
}

@media (min-width: 640px) {
    .approach-content {
        font-size: 1.25rem;
    }
   
}


.approach-content p {
    margin: 0;
}

/* Footer */
.footer {
    background: var(--color-dark-bg);
    padding: 4rem 0;
}

@media (min-width: 640px) {
    .footer {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .footer {
        padding: 8rem 0;
    }
    
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .footer-content {
        flex-direction: row;
        gap: 4rem;
        align-items: flex-start;
    }
}

.footer-text {
    flex: 1;
    text-align: center;
}

@media (min-width: 1024px) {
    .footer-text {
        text-align: left;
    }
}

.footer-title {
    font-size: 1.875rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--color-cream);
}

@media (min-width: 640px) {
    .footer-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .footer-title {
        font-size: 3rem;
    }
}

.footer-description {
    font-size: 1.125rem;
    color: var(--color-cream);
}

@media (min-width: 640px) {
    .footer-description {
        font-size: 1.25rem;
    }
}

.footer-btn {
    background: var(--color-orange);
    color: var(--color-cream);
    border: none;
    border-radius: 0.25rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.footer-btn:hover {
    background: rgb(220, 100, 90)
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-copyright {
    text-align: center;
    opacity: 0.5;
    color: var(--color-cream);
    font-size: 1.125rem;
max-width:  80%;
text-align: left;
}


/* Utility Classes */
.hidden {
    display: none;
}

/* Image Fallback */
img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .footer-copyright {
        text-align: center;
        opacity: 0.5;
        color: var(--color-cream);
        font-size: 1.125rem;
    max-width: 100%;
    text-align: center;
    }
}

/* Responsive Image Handling */
@media (max-width: 640px) {
 
    
    .background-image-wrapper {
        /* height: 400px; */
    }
    
    .feature-image-wrapper img {
        transform: none;
    }
    
    .feature-card:nth-child(3) .feature-image-wrapper img {
        transform: none;
    }
}

/* Accessibility */
button:focus,
input:focus {
    outline: 2px solid var(--color-orange);
    outline-offset: 2px;
}

/* Website input için focus'u kaldır, wrapper'a uygula */
#websiteInput:focus {
    outline: none;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}



/* From Bilal */

#myText{
  /*  font-size: 100px; */
    color: rgb(255,255,255);
    z-index: 2;
    white-space: nowrap;
/*    font-family: monospace; */
    text-shadow: 1px 1px 10px rgb(255,255,255)
}

.text{
    /* position:  fixed; */
    left: 10%;
    top: 20%;
    display: flex;
    align-items: center;
    width: fit-content;
    overflow: visible;
}

.caret {
    width: 50px; 
    height: 100px;
    margin-left: 5px;
    margin-bottom: 0.8rem;
    background: #ffffff;
    animation: blink 0.5s steps(1) infinite;
    display: none;
    box-shadow: 1px 1px 10px rgb(255,255,255)
  }

@keyframes blink {
  50% {
    opacity: 0;
  }
}

#myCanvas{
/*    width: 100vw;
    height: 100vh; */
    width: 100%;
    height: 100%;
    inset: 0;
    box-sizing: border-box;
    position: absolute;
/*    left: 0px;
    top: 0px; */
    z-index: -1;
    touch-action: none;
}


