/* style.css */

/* Genel Stil Ayarları */
body {
    font-family:  Calibri;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    color: #4b6382;
}

main {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

h1, h2, h3 {
    text-align: center;
    color: #4b6382
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    background-color: #fff;
    padding: 10px 10px;
    text-align: center; /* Center the h1 title */
}

/* Return to Main Menu Button (Fixed Position) */
.btn-fixed-return {
    position: fixed; /* Fixes the button relative to the viewport */
    top: 20px; /* Distance from the top */
    right: 20px; /* Distance from the right */
    padding: 8px 15px;
    border: 3px solid #4b6382;
    border-radius: 5px;
    color: #4b6382;
    background-color: #fff;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    white-space: nowrap;
    z-index: 1000; /* Ensures the button is on top of other content */
}

.btn-fixed-return:hover {
     
      transform: translateY(-5px);
    box-shadow:   5px 5px 10px rgba(0, 0, 0, 0.2)
}

/* Section Headings */
section {
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
   box-shadow:   3px 3px 5px 4px rgba(0, 0, 0, 0.1);
    padding: 5px;
    margin-top: 20px;
}

/* Button Groups */
.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

/* Individual Button & Explanation Container */
.utility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 250px;
}

/* General Button Style */
.btn {
    padding: 12px 15px;
     border: none;
    border-radius: 12px;
   
    background-color: #c6d3d8;
    font-weight: bold;
    color: #4b6382;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100px;
    width: 100%;
    box-sizing: border-box;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.btn:hover {
  
      transform: translateY(-5px);
   box-shadow:   5px 5px 10px rgba(0, 0, 0, 0.4)
}

.explanation {
    margin-top: 10px;
    color: #4b6382;
    font-size: 1.2em;
}

/* Important Note Section */
.important-note {
    background-color: #fffacd;
    border-left: 5px solid #ffcc00;
    padding: 5px;
    margin-top: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    text-align: center;
}

.important-note p {
    margin: 0;
}