/* Global Styles */
body {
    font-family: 'Raleway', sans-serif;
    color: #f5f5f5; /* Light text */
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #121212; /* Dark background */
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 { font-size: 3.5rem; margin-bottom: 0.5rem; }
h2 { font-size: 2.5rem; text-align: center; margin: 4rem 0 2rem; position: relative; padding-bottom: 1rem; }
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #27ae60; /* Emerald Green underline */
}

a { text-decoration: none; color: #e67e22; transition: 0.3s; } /* Sunset Orange links */
a:hover { color: #d35400; }

/* Navigation */
header {
    background-color: #1a1a1a;
    padding: 1.5rem 5%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
}

nav ul a {
    color: #bdc3c7;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}
nav ul a:hover { color: #27ae60; }

/* Hero Section */
#hero {
    background: linear-gradient(rgba(18,18,18,0.85), rgba(18,18,18,0.85)), url('https://images.unsplash.com/photo-1507676184212-d03ab07a01bf?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 6rem 10%;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #2c3e50;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
}

.hero-text { flex: 1.5; }
.hero-image img {
    width: 350px;
    height: 480px;
    object-fit: cover;
    border: 12px solid #1a1a1a;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: transform 0.5s ease;
}
.hero-image img:hover {
    transform: scale(1.02);
}

.subtitle {
    font-size: 1.4rem;
    color: #27ae60; /* Emerald Green subtitle */
    font-weight: 300;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #27ae60; /* Emerald Green buttons */
    color: white;
    border: 2px solid #27ae60;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.btn-alt {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
    margin-left: 1rem;
}

.btn:hover {
    background-color: #e67e22; /* Switch to Sunset Orange on hover */
    border-color: #e67e22;
    color: white;
}

/* Sections */
section { padding: 4rem 15%; }

.about-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.stats {
    margin-top: 2rem;
    border-top: 1px solid #2c3e50;
    padding-top: 1rem;
    color: #bdc3c7;
}

/* Resume Table */
.resume-table-container {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 3rem;
}

th {
    text-align: left;
    padding: 1rem;
    background-color: #121212;
    color: #27ae60; /* Emerald Green headers */
    border-bottom: 2px solid #2c3e50;
}

td {
    padding: 1rem;
    border-bottom: 1px solid #2c3e50;
    color: #ecf0f1;
}

/* Gallery / Slider */
.slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    background-color: #000000;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    align-items: center;
}

.slide {
    min-width: 100%;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(39, 174, 96, 0.6); /* Emerald Green translucent */
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    transition: background 0.3s;
}
.slider-btn:hover { background: rgba(230, 126, 34, 0.9); } /* Sunset Orange on hover */
.prev { left: 0; border-radius: 0 4px 4px 0; }
.next { right: 0; border-radius: 4px 0 0 4px; }

/* Contact */
#contact {
    text-align: center;
    background-color: #1a1a1a;
    color: white;
    padding: 6rem 15%;
    border-top: 1px solid #2c3e50;
}

#contact h2 { color: white; margin-top: 0; }
.contact-block h3 { color: #27ae60; font-size: 1.2rem; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 1px; }
.agency-link, .email-link { 
    font-size: 1.8rem; 
    color: #e67e22; 
    font-weight: 700; 
    display: block; 
    margin: 1rem 0; 
    transition: transform 0.3s ease;
}
.agency-link:hover, .email-link:hover {
    transform: scale(1.05);
    color: #27ae60; /* Highlight in Emerald Green on hover */
}
.contact-block p {
    margin: 0.5rem 0;
    color: #bdc3c7;
}
.instagram-link { font-size: 1.2rem; color: #bdc3c7; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.instagram-link:hover { color: #27ae60; }

footer {
    text-align: center;
    padding: 3rem;
    color: #7f8c8d;
    font-size: 0.8rem;
    border-top: 1px solid #2c3e50;
}

@media (max-width: 768px) {
    .hero-content { flex-direction: column-reverse; text-align: center; }
    .hero-image img { width: 100%; height: auto; border: 6px solid #1a1a1a; }
    nav ul { display: none; }
    section { padding: 4rem 5%; }
    .email-link, .agency-link { font-size: 1.4rem; }
    h1 { font-size: 2.5rem; }
}
