/* Styles for the body */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a0f00 0%, #2e1a0a 50%, #3d2410 100%);
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    width: auto;
    min-height: 100vh;
    color: #f5e6d3;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #fbbf24 100%);
    color: #1a0f00;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    width: auto;
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.4);
    backdrop-filter: blur(10px);
}

header h1 {
    margin: 0 0 10px 0;
    font-size: 2.5em;
    color: #1a0f00;
}

.header-subtitle {
    margin: 0;
    font-size: 1.2em;
    color: #422006;
    font-weight: 300;
}

p {
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(46, 26, 10, 0.3);
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

h1{
    margin-top: 20px;
    color: #fbbf24;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.4);
}

.Download-English{
    display: inline-block;
    padding: 15px 25px;
    border: 2px solid #1e3a8a;
    background: linear-gradient(145deg, #0f3460, #1e3a8a);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    margin: 10px;
}

.Download-English:hover {
    background: linear-gradient(145deg, #1e3a8a, #3b82f6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.5);
}


/* Styles for the main content */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Section with Profile */
.hero-section {
    background: linear-gradient(135deg, #2e1a0a 0%, #3d2410 100%);
    padding: 80px 20px;
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(217, 119, 6, 0.3);
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.profile-showcase {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.profile-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.main-profile {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fbbf24;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    transition: all 0.3s ease;
}

.main-profile:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
}

.additional-photos {
    display: flex;
    gap: 15px;
}

.travel-photo, .adventure-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f59e0b;
    transition: all 0.3s ease;
    cursor: pointer;
}

.travel-photo:hover, .adventure-photo:hover {
    transform: scale(1.1);
    border-color: #fbbf24;
}

.profile-intro {
    text-align: left;
}

.profile-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.profile-description {
    font-size: 1.2em;
    line-height: 1.6;
    color: #f5e6d3;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-subtitle {
    font-size: 1.1em;
    color: #e0cdb0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Personal Profile Cards */
.personal-profile {
    margin-bottom: 80px;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.profile-card {
    background: linear-gradient(145deg, #2e1a0a, #3d2410);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(217, 119, 6, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.4);
}

.card-icon {
    font-size: 3em;
    color: #fbbf24;
    margin-bottom: 20px;
}

.profile-card h3 {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.profile-card p {
    color: #f5e6d3;
    line-height: 1.6;
    text-align: left;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

/* Experience Section */
.experience-section {
    margin-bottom: 80px;
}

.experience-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.experience-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 25px;
    background: linear-gradient(145deg, #2e1a0a, #3d2410);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(217, 119, 6, 0.3);
    transition: all 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(217, 119, 6, 0.4);
}

.experience-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #d97706, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    color: #1a0f00;
}

.experience-content h3 {
    color: #fbbf24;
    margin-bottom: 5px;
    font-size: 1.4em;
}

.experience-content h4 {
    color: #e0cdb0;
    margin-bottom: 10px;
    font-weight: 600;
}

.experience-period {
    color: #fbbf24;
    font-weight: 600;
    margin-bottom: 15px;
    background: rgba(251, 191, 36, 0.15);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
}

.achievement-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.achievement-list li {
    color: #f5e6d3;
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.achievement-list li:before {
    content: "▸";
    color: #fbbf24;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.skill-tag {
    background: rgba(251, 191, 36, 0.15);
    color: #fcd34d;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85em;
    border: 1px solid rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(251, 191, 36, 0.25);
    transform: translateY(-2px);
}

.language-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.language-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(217, 119, 6, 0.15);
    border-radius: 8px;
}

.language-name {
    color: #f5e6d3;
    font-weight: 600;
}

.language-level {
    color: #fbbf24;
    font-size: 0.9em;
}

/* Travel Timeline */
.achievements-section {
    margin-bottom: 80px;
}

.travel-timeline {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
}

.travel-timeline:before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #fbbf24, #f59e0b);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #d97706, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a0f00;
    font-size: 1.2em;
    z-index: 1;
    border: 3px solid #2e1a0a;
}

.timeline-content {
    flex: 1;
    background: linear-gradient(145deg, #2e1a0a, #3d2410);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(217, 119, 6, 0.3);
    margin-top: 10px;
}

.timeline-content h3 {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.timeline-content p {
    color: #f5e6d3;
    line-height: 1.6;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    margin: 0;
}

/* CV Download Section */
.cv-download {
    margin-bottom: 60px;
}

.download-card {
    max-width: 600px;
    margin: 40px auto 0;
    background: linear-gradient(145deg, #2e1a0a, #3d2410);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(217, 119, 6, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(217, 119, 6, 0.4);
}

.download-icon {
    font-size: 4em;
    color: #fbbf24;
    margin-bottom: 20px;
}

.download-content h3 {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.download-content p {
    color: #e0cdb0;
    margin-bottom: 25px;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(145deg, #d97706, #f59e0b);
    color: #1a0f00;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1em;
}

.download-btn:hover {
    background: linear-gradient(145deg, #f59e0b, #fbbf24);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.6);
    color: #1a0f00;
}

/* Legacy styles for compatibility */
.Download-English{
    display: inline-block;
    padding: 15px 25px;
    border: 2px solid #f59e0b;
    background: linear-gradient(145deg, #d97706, #f59e0b);
    border-radius: 10px;
    color: #1a0f00;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
    margin: 10px;
    font-weight: 500;
}

.Download-English:hover {
    background: linear-gradient(145deg, #f59e0b, #fbbf24);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.6);
}

/* Styles for headings */
h1, h2, h3 {
    color: #fbbf24;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.4);
    margin-bottom: 15px;
}

/* Styles for links */
a {
    color: #f59e0b;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

nav {
    text-align: center;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #2e1a0a 0%, #3d2410 100%);
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(145deg, #d97706, #f59e0b);
    color: #1a0f00;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
    border: 1px solid rgba(251, 191, 36, 0.3);
    font-weight: 500;
}

nav ul li a:hover {
    background: linear-gradient(145deg, #f59e0b, #fbbf24);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.6);
    color: #1a0f00;
}

/* Enhanced Footer */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h4 {
    color: #1a0f00;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-link {
    color: #1a0f00;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    padding: 5px 0;
    font-weight: 500;
}

.contact-link:hover {
    color: #422006;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(26, 15, 0, 0.3);
    color: #1a0f00;
    font-weight: 500;
}

footer {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #fbbf24 100%);
    color: #1a0f00;
    padding: 30px 0;
    text-align: center;
    width: 100%;
    box-shadow: 0 -4px 20px rgba(217, 119, 6, 0.4);
    backdrop-filter: blur(10px);
    margin-top: auto;
}

.footer-Index {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-Index h4 {
    margin-bottom: 10px;
    color: #1a0f00;
    font-weight: 600;
}

.footer-Index a {
    color: #1a0f00;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-Index a:hover {
    color: #422006;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

/* Adjustments for mobile phones */
@media only screen and (max-width: 767px) {
    header {
        padding: 20px 15px;
    }
    
    header h1 {
        font-size: 1.8em;
    }
    
    .header-subtitle {
        font-size: 1em;
    }
    
    nav ul {
        flex-direction: column;
        gap: 8px;
    }
    
    nav ul li a {
        padding: 10px 20px;
        width: 90%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .hero-section {
        padding: 40px 15px;
        margin: 15px 10px;
    }
    
    .profile-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .main-profile {
        width: 150px;
        height: 150px;
    }
    
    .travel-photo, .adventure-photo {
        width: 60px;
        height: 60px;
    }
    
    .profile-title {
        font-size: 2em !important;
    }
    
    .profile-description {
        font-size: 1em;
        text-align: center;
    }
    
    .main-content {
        padding: 20px 10px;
    }
    
    .section-header h2 {
        font-size: 1.8em;
        flex-direction: column;
        gap: 10px;
    }
    
    .section-header .section-subtitle {
        font-size: 1em;
        padding: 0 15px;
    }
    
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .profile-card {
        padding: 25px;
    }
    
    .experience-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
        text-align: center;
    }
    
    .experience-icon {
        margin: 0 auto;
    }
    
    .travel-timeline:before {
        left: 15px;
    }
    
    .timeline-item {
        gap: 20px;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1em;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .download-card {
        padding: 30px 20px;
        margin: 40px 10px 0;
    }
    
    .download-icon {
        font-size: 3em;
    }
    
    .download-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .contact-info {
        align-items: center;
    }
}

/* Adjustments for tablets and larger screens */
@media only screen and (min-width: 768px) {
    header {
        padding: 20px;
    }
    nav ul li a {
        padding: 15px 30px;
    }
    .main-content {
        padding: 20px;
    }
   
}

/* Adjustments for laptops and desktops */
@media only screen and (min-width: 992px) {
    header {
        padding: 30px;
    }
    nav ul li a {
        padding: 20px 40px;
    }
    .main-content {
        padding: 30px;
    }
}

/* Adjustments for extra-large screens */
@media only screen and (min-width: 1200px) {
    .main-content {
        width: 50%;
        margin-left:25%;
    }
}