* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #2E3A4B;
    background-color: #FFFFFF;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
}

h1 {
    font-weight: 800;
    color: #003B5C;
}

h2 {
    font-weight: 600;
    color: #2E3A4B;
    margin-bottom: 1rem;
}

h3 {
    font-weight: 500;
    color: #003B5C;
    margin-bottom: 0.5rem;
}

p {
    font-weight: 400;
    margin-bottom: 1rem;
}

ul {
    list-style: none;
    padding-left: 0;
}

li {
    margin-bottom: 0.5rem;
}

.highlight {
    font-weight: bold;
    color: #F17F3D;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 1.5rem;
    color: #003B5C;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #2E3A4B;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #003B5C;
    transform: translateY(-2px);
}

/* Hamburger Menu */
#menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2E3A4B;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('hero sekcija.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #003B5C;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #F17F3D;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    transform: scale(1);
}

.cta-button:hover {
    background-color: #E07033;
    transform: scale(1.05) rotate(2deg);
}

/* Main Sections */
main {
    padding-top: 80px; /* Account for fixed header */
}

.section {
    text-align:center;
    font-size: large;
    padding: 4rem 2rem;
    background-color: #F7F7F7;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.section:nth-child(even) {
    background-color: #FFFFFF;
}

.section.animate {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.skill-category {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.skill-category:hover {
    transform: translateY(-5px);
}

/* Pros and Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.pros, .cons {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pros li::before {
    content: '✔';
    color: #9DBE64;
    margin-right: 0.5rem;
}

.cons li::before {
    content: '✖';
    color: #F17F3D;
    margin-right: 0.5rem;
}

/* Footer */
footer {
    background-color: #003B5C;
    color: white;
    text-align: center;
    padding: 2rem;
}

