
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans&display=swap');

html, body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.small-text {
    font-size: 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

p {
    font-size: 25px;
}

a {
    text-decoration: none;
    color: #2BD6D5;
    transition: color 0.3s ease;
}

a:hover {
    color: #0e7275;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
}

h1 {
    font-size: 2.5em;
    font-weight: 700;
}

h2 {
    font-size: 2em;
    font-weight: 600;
}

h3 {
    font-size: 1.5em;
    font-weight: 400;
}

/* Intro Section */
.intro {
    background-color: #1a2a3a;
    width: 100%;
    padding: 80px 20px;
    text-align: center;
}

.intro h1 {
    color: white;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.intro p {
    color: white;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Social Links */
.fa-discord{
    background-color: #5865F2;
}
.contact {
    transition: all .15s ease-in-out; 
    font-size: 30px;
    padding: 20px;
    border-radius: 18px;
    box-sizing: border-box;
    text-shadow: 4px 4px black;
    outline: black;
  }
.fa-google-play{
    background-color:#333231;
    color:white;
}
.fa-github{
    background-color: #27272A;
}
.fa-envelope{
    background-color: red;
}
.fa-linkedin{
    background-color: #0072b1
}
.contact:hover {
    transform: scale(1.2); 
}

/* Gallery */
.gallery-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.gallery {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 40px;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide:hover::before {
    opacity: 1;
}

.slide:hover {
    filter: brightness(1.1);
}

.slide h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.slide p {
    font-size: 1.2em;
    max-width: 80%;
    position: relative;
    z-index: 1;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 8px;
}

.nav-button:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

/* Content */
.content {
    background-color: #f5f5f5;
    color: #333333;
    padding: 60px 20px;
}

section {
    max-width: 1200px;
    margin: 0 auto 80px auto;
}

section h1 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

section h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #2c3e50;
    border-radius: 2px;
}

/* Video Container */
.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin: 30px 0;
}

.video {
    flex-basis: 100%;
    max-width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.video:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.video iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: none;
}

@media (min-width: 768px) {
    .video {
        flex-basis: calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

/* GitHub Button */
.github-button {
    width: 90%;
    max-width: 600px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin: 30px auto;
    display: block;
}

.github-button:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* List Styling */
ul {
    display: inline-block;
    text-align: left;
    margin: 20px 0;
    padding-left: 40px;
}

li {
    font-size: 22px;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Experience Section */
#section2, #section3 {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

#section2 h2, #section3 h2 {
    color: #2c3e50;
    border-bottom: 3px solid #3498db;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

#section2 h3, #section3 h3 {
    color: #3498db;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.75em;
    }

    h3 {
        font-size: 1.25em;
    }

    .slide {
        height: 300px;
    }

    .intro {
        padding: 60px 15px;
    }

    #section2, #section3 {
        padding: 30px 20px;
    }
}
