@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:wght@300;400;600&display=swap');

:root {
    --gold: #bc9c6c;
    --dark: #4a3f35;
    --beige: #fdf8f3;
    --white: #ffffff;
}
* {
    box-sizing: border-box; /* Genişliği padding dahil hesapla */
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* Yatayda kaymayı engelle */
    -webkit-text-size-adjust: 100%; /* iPhone yan döndüğünde fontu bozmasın */
}

.mobile-card {
    width: 100vw; /* Ekran genişliğinin %100'ü */
    min-height: 100vh; /* Ekran yüksekliğinin %100'ü */
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

/* Üstteki fotoğrafın ekranı tam kaplaması için */
.header-image {
    width: 100%;
    height: 35vh; /* Ekranın %35'ini kaplasın */
    background-size: cover;
    background-position: center;
    border-radius: 0 0 40px 40px;
}

body {
    background-color: var(--beige);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    color: var(--dark);
}

.mobile-card {
    background: var(--white);
    width: 100%;
    max-width: 500px; /* Masaüstünde çok yayılmaması için */
    min-height: 100vh;
    box-sizing: border-box;
    padding-bottom: 40px;
}

/* Üst Kısım: Çift Fotoğrafı ve Overlay */
.header-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 0 0 40px 40px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.couple-names {
    font-family: 'Great Vibes', cursive;
    font-size: 3.2rem;
    color: var(--gold);
    margin: 20px 0 5px 0;
    text-align: center;
}

.section-title {
    text-align: center;
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* Form Elemanları */
.input-group {
    padding: 0 25px;
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gold);
}

.input-group input, .input-group textarea {
    width: 100%;
    border: 1.5px solid #eee;
    border-radius: 15px;
    padding: 15px;
    font-size: 1rem;
    background: #fafafa;
    transition: all 0.3s;
    box-sizing: border-box;
}

.input-group input:focus {
    border-color: var(--gold);
    outline: none;
    background: #fff;
}

/* Dosya Yükleme Alanı - Görseldeki Gibi */
.upload-area {
    margin: 20px 25px;
    border: 2px dashed #e0d5c8;
    border-radius: 25px;
    padding: 40px 20px;
    text-align: center;
    background: #fffaf5;
    cursor: pointer;
}

.upload-area i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

/* Gönder Butonu - Kocaman ve Parlak */
.btn-submit {
    margin: 20px 25px;
    background: var(--dark);
    color: white;
    padding: 20px;
    border-radius: 20px;
    border: none;
    width: calc(100% - 50px);
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Progress Bar */
#progressContainer {
    padding: 0 25px;
}

.progress-bg {
    background: #eee;
    height: 12px;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), #d4af37);
    width: 0%;
    transition: width 0.4s ease;
}