
body {
    font-family: "Roboto", sans-serif;
    color: #2e2f42; 
    background-color: #ffffff;
    line-height: 1.5;
    margin: 0;
}

/* Başlıklar */
h1,
h2,
h3 {
    font-weight: 700;
    margin: 0 0 16px;
}

h1 {
    /* 56px / 60px => 1.07 */
    font-size: 56px;
    line-height: 1.07;
}

h2 {
    /* 36px / 40px => 1.11 */
    font-size: 36px;
    line-height: 1.11;
}

h3 {
    /* 20px / 24px => 1.2 */
    font-size: 20px;
    line-height: 1.2;
}

p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 16px;
}

/* Bağlantılar: */
a {
    text-decoration: none;
    color: inherit;
}

/* Listeler: nokta işaretlerini kaldır */
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ===============================
   Header
   =============================== */

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e7e9fc;
    padding: 16px 20px;
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Logo: yalnızca burada Raleway  */
.logo,
.footer-logo {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 24px;
}

.logo .web {
    color: #4d5ae5;
}

.logo .studio {
    color: #2e2f42;
}

.nav-list {
    display: flex;
    gap: 24px;
}

.nav-link {
    font-weight: 500;
    color: #2e2f42;
}

.nav-link:hover,
.nav-link:focus {
    color: #404bbf;
   
}

/* Address */
.contacts {
    display: flex;
    gap: 16px;
    font-style: normal;
    
}

.contact-link:hover,
.contact-link:focus {
    color: #404bbf;
    
}

/* ===============================
   Hero Section
   =============================== */

.hero {
    background-color: #2e2f42;
    color: #ffffff;
    text-align: center;
    padding: 100px 20px;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-btn {
    background-color: #4d5ae5;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
  
}

.hero-btn:hover,
.hero-btn:focus {
    background-color: #404bbf;
    
}

/* ===============================
   Features
   =============================== */

.section {
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.feature-item p {
    color: #434455;
}

/* ===============================
   Our Team
   =============================== */

.team {
    background-color: #f4f4fd;
    padding: 60px 20px;
}

.team-title {
    text-align: center;
    margin-bottom: 40px;
}

.team-list {
    display: grid;
    grid-template-columns: repeat(4, 264px);
    justify-content: center;
    gap: 20px;
}

.team-item {
    background-color: #ffffff;
    border: 1px solid #e7e9fc;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.team-item p {
    color: #434455;
}

/* ===============================
   Portfolio
   =============================== */

.portfolio-list {
    display: grid;
    grid-template-columns: repeat(3, 360px);
    justify-content: center;
    gap: 20px;
}

.portfolio-item {
    border: 1px solid #e7e9fc;
    background-color: #ffffff;
    padding: 16px;
    text-align: center;
}

.portfolio-item p {
    font-size: 14px;
    color: #434455;
}

/* ===============================
   Footer
   =============================== */

.footer {
    background-color: #2e2f42;
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
}

.footer-logo {
    display: inline-block;
    font-size: 20px;
    margin-bottom: 12px;
}

.footer-logo .web {
    color: #4d5ae5;
}

.footer-logo .studio {
    color: #f4f4fd;
}

.footer a:hover,
.footer a:focus {
    color: #404bbf;
    
}