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

body {
    background: url("background.jpg") no-repeat center top;
    background-size: cover;
    font-family: 'Cormorant Garamond', serif;
    color: #d9c6a3;
    height: 100vh;
    overflow-x: hidden;
}

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

/* ---------------- HEADER ---------------- */

.logo {
    position: absolute;
    top: 25px;
    width: 100%;
    text-align: center;
    color: #cfb68f;
    font-size: 40px;      /* تم تكبيره */
    letter-spacing: 7px;
    font-weight: 300;
}

.menu {
    position: absolute;
    top: 95px;   /* نزلته قليلاً مثل الصورة */
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 45px;   /* وسّعت المسافة */
}

.menu a {
    text-decoration: none;
    color: #cfb68f;
    letter-spacing: 4px;
    font-size: 20px;   /* كَبّرت الخط */
    font-weight: 300;
}

/* ---------------- TEXT BLOCK ---------------- */

.text-block {
    position: absolute;
    top: 900px;    /* ↓↓↓ نزلته أقوى لتحت */
    left: 120px;   /* →→→ سحبته يمين */
    color: #cfb68f;
}
.title {
    font-size: 70px;           /* كَبّرت الحجم بقوة */
    letter-spacing: 8px;
    line-height: 72px;
    font-weight: 300;
}

.desc {
    margin-top: 20px;
    font-size: 26px;           /* كبرت النص */
    letter-spacing: 3px;
}

.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    border: 1px solid #cfb68f;
    letter-spacing: 4px;
    font-size: 18px;
    color: #cfb68f;
    text-decoration: none;
}