/*
Theme Name: GeneratePress Child - Atelje
Description: Custom child tema za repliku sajta Atelje.
Author: Tvoje Ime
Template: generatepress
Version: 1.0.0
*/

/* =========================================
   1. WOOCOMMERCE - STRANICA PROIZVODA
   ========================================= */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield; 
}
.wapf-field-input input, .wapf-field-input select {
    border: 1px solid #e0e0e0 !important;
    border-radius: 6px !important; 
    padding: 12px 16px !important;
    font-size: 16px !important;
    background-color: #f9f9f9 !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
    width: 100%;
}
.wapf-field-input input:focus, .wapf-field-input select:focus {
    border-color: #8c7e6c !important; 
    background-color: #ffffff !important;
    outline: none !important;
    box-shadow: 0 0 5px rgba(140, 126, 108, 0.2) !important;
}
.wapf-field-label {
    font-weight: 500;
    color: #444444;
    margin-bottom: 8px;
    display: block;
    font-size: 15px;
}
.summary p.price {
    font-size: 26px !important;
    color: #8c7e6c !important; 
    font-weight: 600;
    margin-bottom: 25px;
}
.woocommerce div.product form.cart .button {
    background-color: #222222 !important; 
    color: #ffffff !important;
    border-radius: 6px !important;
    padding: 14px 32px !important;
    font-size: 15px !important;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px; 
    border: none !important;
    transition: background-color 0.3s ease, transform 0.2s ease !important;
    width: 100%; 
    margin-top: 15px;
}
.woocommerce div.product form.cart .button:hover {
    background-color: #8c7e6c !important;
    transform: translateY(-2px) !important; 
}

/* =========================================
   2. POČETNA STRANICA - HERO SEKCIJA
   ========================================= */
.atelje-hero {
    position: relative;
    width: 100%;
    height: 80vh; 
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.atelje-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}
.atelje-hero-content {
    position: relative;
    z-index: 2; 
    max-width: 800px;
    padding: 20px;
}
.hero-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.hero-description {
    color: #f1f1f1;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.6;
}
.hero-btn {
    display: inline-block;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 15px 35px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.hero-btn:hover {
    background-color: #ffffff;
    color: #222222;
}

/* =========================================
   3. POČETNA STRANICA - KATEGORIJE (2x4 GRID)
   ========================================= */
.atelje-kategorije-sekcija {
    padding: 80px 20px;
    background-color: #ffffff;
}
.atelje-container {
    max-width: 1400px; 
    margin: 0 auto;
}
.sekcija-naslov {
    text-align: center;
    font-size: 32px;
    color: #222222;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}
.kategorije-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; 
}
.kategorija-item {
    position: relative;
    display: block;
    height: 350px; 
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.kategorija-slika {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease; 
}
.kategorija-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.8) 100%);
    transition: background 0.4s ease;
}
.kategorija-naslov {
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 20px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    z-index: 2;
}
.kategorija-item:hover .kategorija-slika {
    transform: scale(1.08); 
}
.kategorija-item:hover .kategorija-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.9) 100%);
}
@media (max-width: 1024px) {
    .kategorije-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .kategorije-grid {
        grid-template-columns: 1fr;
    }
    .kategorija-item {
        height: 280px;
    }
}

/* =========================================
   4. POČETNA STRANICA - O NAMA SEKCIJA
   ========================================= */
.atelje-o-nama-sekcija {
    padding: 120px 20px;
    background-color: #faf9f8; 
    border-top: 1px solid #eaeaea;
}
.o-nama-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 60px;
    align-items: center;
}
.o-nama-tekst {
    padding-right: 40px;
}
.o-nama-glavni-naslov {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.2;
    color: #222222;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.o-nama-podnaslov {
    font-size: 24px;
    font-weight: 400;
    color: #8c7e6c; 
    margin-bottom: 40px;
    font-style: italic;
}
.o-nama-sadrzaj p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}
.o-nama-sadrzaj p strong {
    color: #222222;
    font-size: 18px;
    font-weight: 600;
}
.o-nama-potpis {
    font-size: 20px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 40px;
    color: #222222 !important;
}
.o-nama-slika-kontejner {
    position: relative;
}
.o-nama-slika {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
@media (max-width: 992px) {
    .o-nama-grid {
        grid-template-columns: 1fr; 
        gap: 40px;
    }
    .o-nama-tekst {
        padding-right: 0;
        text-align: center;
    }
}
