/* General Reset */
body, header {
    margin: 0;
    padding: 0;
}

/* Header Styling */
header {
    text-align: center;
    background: linear-gradient(
            45deg,
            #999 5%,
            #fff 10%,
            #ccc 30%,
            #ddd 50%,
            #ccc 70%,
            #fff 80%,
            #999 95%
    );
    padding: 5px 5px;
}

body {
    background-color: rgb(227, 230, 230);
}

/* Navigation Buttons */
a.btnop {
    background: #c6c8c8;
    color: #434040;
    line-height: 50px;
    width: 70px;
    font-size: 20px;
    border-radius: 5px;
    border-width: 0px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

a.btnop:hover {
    color: #fff;
}

/* Main Content */
.content {
    font-size: 18px;
    color: #3e1d0d;
    font-family: Arial;
}

.contactinfo, .info {
    display: flex;
    justify-content: center;
    margin-left: 200px;
    margin-right: 200px;
    font-size: 18px;
    font-family: Arial;
}

.main-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 200px;
    margin-right: 200px;
}

#about {
    color: rgba(51, 50, 49, 0.63);
}

img {
    float: left;
    margin-right: 20px;
}

#title {
    font-size: 25px;
}

/* Gallery Section */
.gallery-container {
    text-align: center;
}

.gallery {
    display: inline-block;
}

/* Contact Form */
.contact-form {
    display: block;
    margin: 30px auto;
    padding: 20px;
    max-width: 600px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial;
}

.contact-form label {
    font-size: 18px;
    font-weight: bold;
    color: #434040;
    display: block;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form button {
    background: #434040;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #666;
}

/* Dark Mode */
body.dark-mode {
    background-color: #121212;
    color: #f4f4f4;
}

header.dark-mode {
    background: #1f1f1f;
    color: #f4f4f4;
}

.contact-form.dark-mode {
    background: #1f1f1f;
    color: #f4f4f4;
}

.contact-form.dark-mode input,
.contact-form.dark-mode textarea {
    background: #333;
    color: #fff;
    border: 1px solid #555;
}

.contact-form.dark-mode button {
    background: #555;
}

/* Social Media Icons */
.contactinfo p a {
    color: #434040;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
    margin: 10px 0;
}

.contactinfo p a i {
    margin-right: 8px;
}

.contactinfo p a:hover {
    color: #666;
}
/* Languages and Tech Section */
.tech-container {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
    margin-top: 50px;
}

.tech-container h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

.tech-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
#dark-mode-toggle {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #434040;
    transition: color 0.3s;
}

#dark-mode-toggle:hover {
    color: #666;
}
/* Center the container */
.contactinfo {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center;
    justify-content: center;
    gap: 15px; /* Spacing between buttons */
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Style the buttons */
.contact-button {
    background-color: #0077b6; /* Button background */
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}/* Info Page Styling */
.info-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.info-section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.hero {
    background-image: url('hero-background.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
.gallery-container {
    text-align: center;
    padding: 50px 20px;
}

.gallery-container h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery a {
    text-decoration: none;
    color: #333;
}

.gallery img {
    border-radius: 8px;
    transition: transform 0.3s;
    width: 320px;
    height: 200px;
}

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

.gallery div {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
}

.hero p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.cta-btn {
    background-color: #0077b6;
    color: #fff;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #005f73;
}

.info-section i {
    font-size: 50px;
    color: #0077b6;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.info-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.info-section p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.info-section:hover i {
    transform: scale(1.1);
    color: #005f73;
}

/* Add spacing between icon and text */
.contact-button i {
    margin-right: 8px;
}

/* Hover effect */
.contact-button:hover {
    background-color: #005f73; /* Darker blue on hover */
}

.dark-mode #dark-mode-toggle {
    color: #f4f4f4;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 24px;
    color: #434040;
}

.tech-item i {
    font-size: 50px;
    color: #0077b6;
    margin-bottom: 10px;
    transition: transform 0.3s, color 0.3s;
}

.tech-item p {
    font-size: 16px;
    margin-top: 0;
    color: #434040;
}

.tech-item:hover i {
    color: #005f73;
    transform: scale(1.2);
}
.tech-container {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}

.tech-container h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.tech-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 24px;
    color: #434040;
}

.tech-item i {
    font-size: 50px;
    color: #0077b6;
    margin-bottom: 10px;
    transition: transform 0.3s, color 0.3s;
}

.tech-item p {
    font-size: 16px;
    margin-top: 0;
    color: #434040;
}

.tech-item:hover i {
    color: #005f73;
    transform: scale(1.2);
}