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

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-image: url('https://6710i.ir/bg/uploads/1751578102_6866f5f6c3d76.png');
}

/* Header Section */
header {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.header-photo {
    max-width: 300px;
    height: auto;
}

h1{
    color: #ffffff;
}

/* Link Container */
.link-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    width: 400px;
}

/* Grid Links */
.grid-link {
    background-color: #ff9100;
    color: white;
    text-decoration: none;
    padding: 15px;
    margin: 5px 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0px 0px 10px #ff7b00;
}

.grid-link i {
    margin-right: 10px;
}

.grid-link:hover {
    background-color: #d17070;
}

/* Section Titles */
.section-title {
    text-align: center;
    color: white;
    font-size: 1.2rem;
    margin: 10px 0;
    background: none;
    border: none;
    color: white;
}

/* Contact Links */
.contact-link {
    background-color: #ff9100;
    color: white;
    text-decoration: none;
    padding: 15px;
    margin: 5px 0;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0px 0px 10px #ff7b00;
}

.contact-link:hover {
    background-color: #d17070;
}

.right-label {
    font-size: 0.9rem;
}
