/*İndex.html sayfası için biçimlendirme*/
body {
    padding: 0;
    margin: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-color: #f8eeee;
    color: #333;
    width: 100%;
    box-sizing: border-box;
}



/*Site Logosu*/
.sitelogo {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
}


.sitelogo img {
    width: 105px;
    height: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 50%;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    height: 130px;
    background-color: #f8eeee;
}



/*Menü Alanı*/
#navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 270px;
}


#navbar a {
    text-decoration: none;
    color: #333;
    font-size: 19px;
    font-weight: bold;
    transition: color 0.3s;
}


#navbar a:hover {
    color: #7d6b65;
}


/*Ana İçerik Alanı*/
.hero {
    text-align: left;
    padding: 60px;
    background: linear-gradient(to right, #f8e3d2, #9e7e82);
}


.hero img {
    float: right;
    max-width: 420px;
    height: auto;
    margin-right: 30px;
    margin-top: 22px;
}


.hero h1 {
    font-size: 95px;
    font-weight: bold;
    color: #333;
    line-height: 30px;
}


.hero p {
    text-align: justify;
    font-size: 19px;
    color: #333;
    margin-bottom: 20px;
    max-width: 850px;
    line-height: 30px;
}


#p1 {
    margin: -4px;
    font-size: 40px;
    color: #333;
    line-height: 80px;
    letter-spacing: 1px;
}

#p2 {
    font-size: 19px;
}


.hero button {
    background-color: #9e7e82;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    border-radius: 18px;
    cursor: pointer;
}


.hero button:hover {
    background-color: #7d6b65;
}


.hr-with-text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333;
    font-size: 2.2em;
    margin: -18px 0;
    margin-bottom: 10px;
}

.hr-with-text::before,
.hr-with-text::after {
    content: '';
    border-bottom: 3px solid #333;
    margin: 0 10px;
}

.hr-with-text span {
    font-weight: bold;
    color: #333;
    padding: 0 10px;
}



.kutu1 {
    width: 100%;
    max-width: 75%;
    margin: 0 auto;
    margin-top: 40px;
}


.box {
    background-color: #fffcfc;
    border: 1px solid #dddddd;
    box-shadow: 0 4px 60px rgba(0, 0, 0, 0.1);
    text-align: justify;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0px;
    padding-left: 20px;
    border-radius: 10px;
}


.box img {
    border-radius: 0 10px 10px 0;
    width: 45%;
    height: auto;
    margin-bottom: 0;
    flex-shrink: 0;
}


.box h2 {
    font-size: 19px;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}


.box p {
    color: #333;
    text-align: justify;
    font-size: 19px;
    line-height: 26px;
}





/* Footer Bölümü */
footer {
    position: relative;
    width: 100%;
    background-color: #ac9094;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;

    align-items: center;
    box-sizing: border-box;
    margin-top: 60px;
}

footer p {
    margin-left: 20px;
    font-size: 15px;
}

footer .social-media {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    margin-right: 20px;
}

footer .social-media a {
    color: white;
    font-size: 20px;
    text-decoration: none;
}

footer .social-media a:hover {
    color: #7d6b65;
}

footer .social-media a:active {
    color: #7d6b65;
}



/*Hakkimizda.html sayfası için biçimlendirme*/
.anakisim {
    text-align: left;
    background-color: rgb(231, 222, 222);
    text-align: justify;
    padding: 80px;
    padding-left: 100px;
    padding-bottom: 100px;

}

.anakisim img {
    float: right;
    max-width: 420px;
    height: auto;
    margin-right: 50px;
    width: 50%;
    margin-left: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-top: -600px;
    transition: transform 0.3s ease;
}

.anakisim img:hover {
    transform: scale(1.05);
}


.anakisim h2 {
    font-size: 45px;
    font-weight: bold;
    color: #333;
    line-height: 30px;
    margin-left: 40px;

}

.anakisim h3 {
    font-size: 30px;
    font-weight: bold;
    color: #333;
    line-height: 30px;
    margin-left: 40px;
}

.anakisim p {
    text-align: justify;
    font-size: 19px;
    color: #333;
    margin-bottom: 20px;
    max-width: 750px;
    line-height: 30px;
    margin-left: 40px;
}

#slogan {
    text-align: center;
}

.ikincikisim-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    margin-top: 0px;
    margin-bottom: -80px;
    background-color: rgb(231, 222, 222);
    padding: 80px;
    padding-left: 100px;

}

.ikincikisim-text {
    background-color: #fffcfc;
    padding: 50px;
    border-radius: 10px;
    width: 40%;
    text-align: justify;
    margin-left: auto;
    margin-right: auto;
    font-size: 19px;
    height: 50%;
    line-height: 26px;
}


.ikincikisim img {
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
    margin-top: 190px;
    margin-left: 40px;
}

.ikincikisim img:hover {
    transform: scale(1.05);
}

.ikincikisim p {
    font-size: 19px;
    color: #333;
    margin-bottom: 20px;
    max-width: 850px;
    line-height: 1.4;
}

#slogan2 {
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
}

#h3 {
    text-align: center;
    font-size: 30px;
}



/*Menü.html sayfası için biçimlendirme*/

.kutu3 {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('images/bardaklar.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px;
    box-sizing: border-box;
}

.kutu3 h2,
.kutu3 p {
    color: white;
    position: relative;
    z-index: 1;
}

.kutu3 h2 {
    font-size: 45px;
    margin-bottom: 20px;
}

.kutu3 p {
    font-size: 20px;
    line-height: 30px;
    width: 900px;
    text-align: justify;
}

.kutu3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}


.kutu4 {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #fcf6f6;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px;
    box-sizing: border-box;
    margin-top: -100px;
    padding-top: 20px;

}

.kutu4 h3,
.kutu4 p {
    color: #333;
    position: relative;
    z-index: 1;
    text-align: center;
}

.kutu4 h3 {
    font-size: 40px;
    margin-bottom: 30px;
}

.kutu4 p {
    font-size: 19px;
}



.header {
    margin: 0px;
    padding: 0px;
    background-color: #fcf6f6;
    margin-bottom: -40px;

}

.navbar {
    margin-top: -90px;
    background-color: #fcf6f6;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.navbar a {
    color: #333;
    text-decoration: none;
    margin: 0 20px;
    font-size: 19px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 10px;
}

.navbar a:hover {
    color: #7d6b65;
    font-size: 23px;
}


.menu-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #fcf6f6;
}

.menu-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

.menu-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.menu-item {
    background-color: white;
    padding: 100px;
    margin: 90px;
    margin-left: 130px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 1000px;
    height: 50px;
    text-align: justify;
}

.menu-item h3 {
    font-size: 24px;
    color: #333;
    margin-left: 20px;
    margin-bottom: 10px;
}

.menu-item p {
    margin-left: 20px;
    color: #777;
    font-size: 18px;
}


.menu-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.menu-item-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-right: 20px;
    overflow: hidden;
}


#arka {
    background-color: #f8eeee;
    padding: 30px;
    margin-top: -40px;
    margin-bottom: -40px;
    transition: background-color 0.2s ease;
}

#arka:hover {
    background-color: #e8dede;


    font-size: 32px;
}

/*İletişim Sayfası İçin Biçimlendirme*/

#iletisimlogo{
   
    width: 200px;
    height:200px;
    border-radius: 50%;
    margin-bottom: 40px;
    margin-left: 200px;
    padding-left: 50px;
    padding-right: 20px;
}

#resim{ 
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 40px;
    float: left;
    padding-left: 50px;
    margin-top: 50px;


}


#form {
    background-color:#e8dede;
    padding-top: 50px;
    margin-bottom: 0px;
    text-align: center;
}


#form p {
    text-align: center;
    font-size: 18px;
    color: #333;
    margin-bottom: 50px;
    max-width: 850px;
    line-height: 28px;
    margin-left: 20%;
}


form {
    max-width: 380px;
    margin: 0 auto;

  }
  

  label {
    display: block; 
    margin-bottom: 8px; 
  }
  
  input[type="text"], input[type="email"], input[type="tel"], textarea {
    width: 100%; 
    padding: 8px;
    margin-bottom: 15px; 
    box-sizing: border-box; 
  }
  
  textarea {
    height: 120px; 
  }
  
  button[type="submit"] {
    padding: 12px 40px;
    background-color:#9e7e82;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    margin-bottom: 40px;
  }
  
  button[type="submit"]:hover {
    background-color: #7d6b65; 
  }

  #rugbyiletisim {
    background: linear-gradient(to right, #f8e3d2, #9e7e82);
    padding-top: 8px;
    margin-bottom: -80px;
    text-align: center;
    padding-bottom: 0.5px;
}



#rugbyiletisim p {
    color: #333;
    margin-bottom: 30px; 
    line-height: 1.7; 
   
}

 