:root {
    --primary-color: #333;
    --accent-color: #ff6b6b;
    --background-color: #fafafa;
    --text-color: #444;

    --spacing: 20px;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    transition: background-color 0.3s, color 0.3s;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing);
}

/* Header & Navigation */
header {
    background: #fff;
    padding: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s;
}



.logo {
    font-size: 2.5rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    transition: color 0.3s;
}



.nav-tabs {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    transition: border-color 0.3s;
}



.nav-tabs a {
    text-decoration: none;
    color: #888;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}



.nav-tabs a:hover, .nav-tabs a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}



/* Tab Content Visibility */
.tab-content {
    display: none;
    padding: 60px 0;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Slideshow */
.slideshow-container {
    width: 100%;
    position: relative;
    margin: auto;
    height: 80vh;
    overflow: hidden;
}

.mySlides {
    display: none;
    height: 100%;
}

.placeholder-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 10px;
}

.gradient-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.gradient-2 { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%); }
.gradient-3 { background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%); }

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.3);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    background-color: rgba(0,0,0,0.5);
}

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
    background-color: #717171;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

/* Instagram Feed */
#instagram-feed {
    margin-top: 100px;
    text-align: center;
}

#instagram-feed h3 {
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.insta-placeholder {
    aspect-ratio: 1 / 1;
    background-color: #ddd;
    background-image: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.insta-placeholder:hover {
    opacity: 1;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    aspect-ratio: 4 / 3;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #999;
    border: 1px solid #ddd;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.placeholder-item {
    background: #e0e0e0;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.05);
}

/* About Me */
.about-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
    height: 500px;
    background: #ddd;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

/* Footer */
footer {
    background: #111;
    color: #fff;
    padding: 80px 0 40px;
    margin-top: 100px;
    transition: background-color 0.3s;
}



.contact-info {
    text-align: center;
    margin-bottom: 60px;
}

.contact-info h3 {
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: var(--accent-color);
    transition: color 0.3s;
}



.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #555;
    transition: border-bottom 0.3s ease;
}

.contact-info a:hover {
    border-bottom: 1px solid #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 40px;
    text-align: center;
    font-size: 0.8rem;
    color: #777;
    transition: border-color 0.3s, color 0.3s;
}



.footer-bottom a:link {
    color: #777;
}

.footer-bottom a:visited {
    color: #777;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-tabs {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .slideshow-container {
        height: 50vh;
    }
    
    .placeholder-slide {
        font-size: 1.5rem;
    }
}
