/*
Theme Name: Second Sun
Author: Petra Sitar
Description: WordPress tema za solarij Second Sun
Version: 1.0
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fffaf0;
}

.hero {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.55)), url('assets/images/7abc7743-debe-4535-9c9a-73a432f285c2.png');
    background-size: cover;
    background-position: center 30%;
    height: 90vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-content {
    max-width: 800px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content h1 {
    font-size: 4.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 6px;
    font-weight: 800;
    background: linear-gradient(135deg, #FFE6B0, #FFB347, #FF8C00, #FFD966);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content .tagline {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.hero-content .subtag {
    font-size: 1rem;
    margin-bottom: 2rem;
    font-style: italic;
    letter-spacing: 2px;
}

.btn-hero {
    display: inline-block;
    background: linear-gradient(135deg, #FFB347, #FF8C00);
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-hero:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #FF8C00, #FF7000);
}

.creative-slogan {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #fff5e6, #ffecd9);
    border-top: 3px solid #ffb347;
    border-bottom: 3px solid #ffb347;
}

.slogan-text {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #D4AF37, #FF8C00, #FFD700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: sloganGlow 3s ease infinite;
}

@keyframes sloganGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gallery-section {
    padding: 3rem 1rem;
    background: linear-gradient(180deg, #fffaf0 0%, #fff5e6 100%);
}

.gallery-title {
    text-align: center;
    font-size: 2rem;
    color: #e65c00;
    margin-bottom: 2rem;
    font-weight: 600;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-8px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 0.8rem;
    text-align: center;
    font-weight: 500;
    color: #ff7e05;
    background: white;
}

.placeholder-note {
    text-align: center;
    background: #ffe0b5;
    padding: 0.8rem;
    border-radius: 40px;
    margin: 1rem auto 0;
    max-width: 500px;
    font-size: 0.9rem;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 1rem;
    background: white;
}

.feature {
    text-align: center;
    max-width: 220px;
}

.feature h3 {
    color: #e65c00;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #555;
    font-size: 0.95rem;
}

.container {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.card {
    background: white;
    border-radius: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    padding: 1.8rem;
    margin-bottom: 2rem;
}

.card h2 {
    color: #e65c00;
    margin-bottom: 1rem;
    border-left: 5px solid #ff8c00;
    padding-left: 1rem;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.info-block {
    flex: 1;
    min-width: 200px;
    background: #fff7ed;
    padding: 1.2rem;
    border-radius: 20px;
}

.info-block h3 {
    color: #e65c00;
    margin-bottom: 0.8rem;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    padding: 0.4rem 0;
    border-bottom: 1px solid #ffe0b5;
}

.package-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e65c00;
}

.benefits-card {
    background: linear-gradient(135deg, #fff1e0, #ffe6d0);
    border: 2px solid #ffb347;
}

.happy-note {
    background: #ff8c00;
    color: white;
    display: inline-block;
    padding: 0.2rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.announcements-card {
    background: linear-gradient(135deg, #e8f4f8, #d4eaf0);
    border: 2px solid #ffb347;
}

.announcement-item {
    padding: 0.8rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 16px;
    border-left: 5px solid #ff8c00;
}

.announcement-date {
    font-size: 0.8rem;
    color: #ff8c00;
    font-weight: bold;
}

.announcement-title {
    font-weight: bold;
    color: #e65c00;
    margin: 0.3rem 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ffe0b5;
    border-radius: 16px;
    font-family: inherit;
    font-size: 1rem;
    background: #fff7ed;
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-form button {
    background: linear-gradient(135deg, #FFB347, #FF8C00);
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form button:hover {
    transform: scale(1.02);
    background: linear-gradient(135deg, #FF8C00, #FF7000);
}

.social-section {
    text-align: center;
    margin-bottom: 1rem;
}

.social-text {
    font-size: 0.9rem;
    color: #ffb347;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    display: inline-block;
    width: 44px;
    height: 44px;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.map-link {
    margin-top: 0.8rem;
    display: inline-block;
    color: #ff7e05;
}

.footer {
    background: #2c2c2c;
    color: #ddd;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.footer a {
    color: #ffb347;
    text-decoration: none;
}

@media (max-width: 700px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content .tagline { font-size: 1.2rem; }
    .slogan-text { font-size: 1.5rem; }
    .card { padding: 1.3rem; }
    .gallery-title { font-size: 1.5rem; }
}