﻿/*
@font-face {
    font-family: 'geogrotesque_rgregular';
    src: url('fonts/geogrotesque_rgregular.woff') format('woff2');
}

@font-face {
    font-family: 'geogrotesque_smbdsemibold';
    src: url('fonts/geogrotesque_smbdsemibold.woff') format('woff2');
}
*/

@font-face {
  font-family: 'geogrotesque_rgregular';
  src: url("fonts/geogtq-rg-webfont.eot");
  src: url("fonts/geogtq-rg-webfont-1.eot") format("embedded-opentype"), url("fonts/geogtq-rg-webfont.txt") format("woff2"), url("fonts/geogtq-rg-webfont.woff") format("woff"), url("fonts/geogtq-rg-webfont.ttf") format("truetype"), url("fonts/geogtq-rg-webfont.svg") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'geogrotesque_smbdsemibold';
  src: url("fonts/geogtq-sb_0-webfont.eot");
  src: url("fonts/geogtq-sb_0-webfont-1.eot") format("embedded-opentype"), url("fonts/geogtq-sb_0-webfont.txt") format("woff2"), url("fonts/geogtq-sb_0-webfont.woff") format("woff"), url("fonts/geogtq-sb_0-webfont.ttf") format("truetype"), url("fonts/geogtq-sb_0-webfont.svg") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'geogrotesque_mdmedium';
  src: url("fonts/geogtq-md-webfont.eot");
  src: url("fonts/geogtq-md-webfont-1.eot") format("embedded-opentype"), url("fonts/geogtq-md-webfont.txt") format("woff2"), url("fonts/geogtq-md-webfont.woff") format("woff"), url("fonts/geogtq-md-webfont.ttf") format("truetype"), url("fonts/geogtq-md-webfont.svg") format("svg");
  font-weight: normal;
  font-style: normal; }



* { margin:0; box-sizing:border-box; }


body {
    font-family: 'geogrotesque_rgregular', sans-serif;
      font-size:16px;
          color:#404040;
     background:#ffffff;
}

/*
header {
     margin-top: 0;
    padding-top: 0;
}
*/

p, li, a, span, div {
    font-family: 'geogrotesque_rgregular', sans-serif;
}

/*
p, li, a, span, div {
    font-family: 'geogrotesque_rgregular', sans-serif;
}
*/

.container {
        width:90%;
    max-width:1200px;
       margin:auto;
}

h1 {
    font-family:'geogrotesque_rgregular';
      font-size:36px;
  margin-bottom:20px;
}

h2 {
    font-family:'geogrotesque_rgregular';
      font-size:20px;
  margin-bottom:4px;
}

a { color:#C40452; text-decoration:none; }

header {
    border-bottom: 1px solid #404040;
          padding: 10px 0;
          
}

.logo {
    font-family:'geogrotesque_smbdsemibold';
      font-size:22px;
          color:#C40452;
}

.nav-container {
            display:flex;
    justify-content:space-between;
        align-items:center;
}

.menu {
       display:flex;
    list-style:none;
           gap:30px;
}

.menu li {
    position: relative;
}

/* Osnovno stanje */
.submenu {
    position: absolute;
    top: 40px;
    left: 0;
    background: #ffffff;
    border: 1px solid #404040;
    list-style: none;
    padding: 15px 20px;
    min-width: 220px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;

    z-index: 1000; /* da je vedno nad vsebino */
}


/* Ko hoveraš */
/*
.dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
*/

.submenu {
    position: absolute;
         top: 40px;
        left: 0;
    background: #ffffff;
    border: 1px solid #404040;
    list-style: none;
    padding: 15px 20px;
    min-width: 220px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;

    z-index: 1000;
}

.submenu li {
    margin-bottom: 14px;   /* prej 10px → +30% */
}

.submenu li:last-child {
    margin-bottom: 0;
}

.submenu a {
    display: block;
    line-height: 1.8;   /* večji vertikalni razmik */
}

.dropdown.open .submenu {
       opacity: 1;
    visibility: visible;
     transform: translateY(0);
}



/*
.submenu {
    display:none;
    position:absolute;
    top:30px;
    left:0;
    background:white;
    border:1px solid #404040;
    padding:15px;
    list-style:none;
}

.dropdown:hover .submenu { display:block; }
*/


.hero {
    padding:100px 0;
    border-bottom:2px solid #404040;
}

.hero-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.tech-box {
    height:250px;
    border:2px solid #404040;
}

.grid-3 {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    padding:80px 0;
}

.card {
    border:2px solid #404040;
    padding:30px;
}

.btn {
       display:inline-block;
    background:#C40452;
         color:white;
       padding:12px 24px;
    margin-top:20px;
    border-radius:5px;   /* <-- dodano */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); /* nežna senca */
    transition: all 0.2s ease;
}

.btn:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.cta-section {
    border-top:2px solid #404040;
    border-bottom:2px solid #404040;
    padding:80px 0;
    text-align:center;
}

.main-footer {
    background: #404040;
    color: #ffffff;
    padding: 60px 0 30px 0;
}

.main-footer a {
    color: #ffffff;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    color: #C40452; /* brand barva ostane */
    margin-bottom: 20px;
}

.main-footer h3 {
    font-family: 'geogrotesque_smbdsemibold';
    margin-bottom: 15px;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
}






footer {
    padding:50px 0;
}

.footer-grid {
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
}

.footer-menu {
    list-style:none;
}

.footer-menu li {
    margin-bottom:10px;
}

.burger {
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.burger span {
    width:25px;
    height:3px;
    background:#404040;
}

@media (max-width: 900px) {

    .hero-grid,
    .grid-3 {
        grid-template-columns:1fr;
    }

    .menu {
        display:none;
        flex-direction:column;
        position:absolute;
        top:80px;
        right:5%;
        background:white;
        border:1px solid #404040;
        padding:20px;
    }

    .menu.active { display:flex; }

    .burger { display:flex; }
}



/* TOP INFO BAR */
.top-bar {
    background: #404040;
         color: #ffffff;
     font-size: 12px;
       padding: 8px 0;
}

.top-bar-content {
            display: flex;
    justify-content: space-between;
        align-items: center;
}

.contact-info span {
    margin-right: 20px;
     font-weight: 500;
}

/* Language selector */
.lang-select {
       position: relative;
         cursor: pointer;
    user-select: none;
}

.lang-current {
          color: #ffffff;
    font-weight: 500;
}

.lang-options {
      position: absolute;
           top: 24px;
         right: 0;
    background: #ffffff;
    list-style: none;
       padding: 10px 0;
        border: 1px solid #404040;
       display: none;
     min-width: 120px;
       z-index: 2000;
}

.lang-options li {
      padding: 6px 16px;
    font-size: 12px;
        color: #404040;
}

.lang-options li:hover {
    background: #eeeeee;
}


.page-hero {
          padding: 30px 0 30px 0; 
    border-bottom: 0px solid #404040;
}

img {
    border-radius: 8px;
        max-width: 100%;
           height: auto;
          display: block;
}







.contact-form {
	max-width: 600px;
}

.form-row {
	margin-bottom: 20px;
}

.contact-form label {
	      display: block;
	margin-bottom: 6px;
	  font-family: 'geogrotesque_rgregular';
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	        width: 100%;
	      padding: 10px;
	       border: 1px solid #404040;
	border-radius: 5px;
	  font-family: 'geogrotesque_rgregular';
	    font-size: 16px;
}

.contact-form textarea {
	resize: vertical;
}

label::after {
	content: "";
}

label:has(+ input[required])::after,
label:has(+ textarea[required])::after {
	content: " *";
	  color: #C40452;
}







#formMessage{
	margin-top:20px;
	padding:12px 18px;
	border-radius:5px;
	display:none;
}

#formMessage.success{
	display:block;
	background:#e9f7ef;
	color:#1e7e34;
	border:1px solid #28a745;
}

#formMessage.error{
	display:block;
	background:#fdecea;
	color:#c0392b;
	border:1px solid #c0392b;
}