:root {
    --black: #0a0a0a;
    --dark-grey: #1a1a1a;
    --gold: #FFD700;
    --gold-hover: #e6c200;
    --red: #CC0000;
    --white: #ffffff;
    --grey: #cccccc;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Announcement Bar */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: var(--gold);
    color: var(--black);
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-bar.hidden {
    display: none;
}

.bar-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bar-label {
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black);
}

.bar-phone {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 8px;
}

.bar-phone:hover {
    color: #333;
}

.bar-dismiss {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    color: var(--black);
    font-size: 1rem;
    cursor: pointer;
    padding: 4px 8px;
    opacity: 0.7;
    transition: opacity 0.2s;
    line-height: 1;
}

.bar-dismiss:hover {
    opacity: 1;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a:hover {
    color: var(--gold);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    font-weight: bold;
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 15px;
    font-size: 1.2rem;
}

.social-icons a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--gold);
    cursor: pointer;
}

/* Mobile Navigation Dropdown */
.mobile-nav {
    display: none;
    max-height: 0;
    overflow: hidden;
    background: var(--black);
    border-bottom: 2px solid var(--gold);
    transition: max-height 0.35s ease;
}

.mobile-nav.open {
    max-height: 350px;
}

.mobile-nav ul {
    padding: 8px 0;
}

.mobile-nav ul li {
    border-bottom: 1px solid rgba(255, 215, 0, 0.12);
}

.mobile-nav ul li a {
    display: block;
    padding: 14px 20px;
    color: var(--gold);
    font-weight: bold;
    font-size: 1rem;
}

.mobile-nav ul li a:hover {
    background: rgba(255, 215, 0, 0.08);
}

.mobile-nav-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

/* Trust Badges */
.trust-section {
    background: var(--dark-grey);
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.25);
}

.trust-badges {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-weight: bold;
    font-size: 0.95rem;
}

.trust-badge i {
    font-size: 1.4rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('assets/hero_bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9));
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    height: 150px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-info {
    margin-bottom: 30px;
    font-weight: bold;
    color: var(--gold);
}

.cta-button {
    display: inline-block;
    background-color: var(--red);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: var(--gold);
    color: var(--black);
    transform: scale(1.05);
}

.cta-button.gold {
    background-color: var(--gold);
    color: var(--black);
}

.cta-button.gold:hover {
    background-color: var(--gold-hover);
}

/* Offer Section */
.offer-section {
    padding: 80px 0;
    background-color: var(--dark-grey);
}

.offer-banner {
    background: var(--black);
    border: 3px solid var(--gold);
    padding: 50px;
    text-align: center;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    padding: 5px 20px;
    font-weight: bold;
    border-radius: 20px;
    font-size: 0.9rem;
}

.offer-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.price-box {
    margin-bottom: 20px;
}

.current-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold);
    display: block;
}

.old-price {
    text-decoration: line-through;
    color: var(--grey);
}

/* Form Section */
.form-section {
    padding: 80px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--dark-grey);
    padding: 40px;
    border: 2px solid var(--gold);
    border-radius: 10px;
}

.form-container h3 {
    text-align: center;
    margin-bottom: 10px;
}

.form-container p {
    text-align: center;
    margin-bottom: 30px;
    color: var(--grey);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: var(--black);
    border: 1px solid #333;
    color: var(--white);
    border-radius: 5px;
}

.form-group input:focus {
    border-color: var(--gold);
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--gold-hover);
}

.hidden {
    display: none;
}

.form-error {
    color: #ff4444;
    background: rgba(204, 0, 0, 0.1);
    border: 1px solid var(--red);
    border-radius: 5px;
    padding: 12px;
    margin-top: 15px;
    text-align: center;
    font-size: 0.9rem;
}

.thank-you-content {
    text-align: center;
    padding: 20px;
}

.thank-you-content i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

/* Prices Section */
.prices-section {
    padding: 80px 0;
    background: var(--black);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.price-card {
    background: var(--dark-grey);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--gold);
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.price-card.highlight {
    border: 2px solid var(--gold);
    background: rgba(255, 215, 0, 0.05);
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.price-badge {
    background: var(--gold);
    color: var(--black);
    padding: 2px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.boat-banner {
    margin-top: 50px;
    background: var(--red);
    padding: 20px;
    text-align: center;
    border-radius: 5px;
}

.boat-banner h3 {
    color: var(--white);
    margin: 0;
}

/* Prislista Section */
.prislista-section {
    padding: 80px 0;
    background: var(--dark-grey);
}

.prislista-wrapper {
    border: 3px solid var(--gold);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}

.prislista-wrapper img {
    width: 100%;
    display: block;
}

/* Why Choose Us */
.why-us {
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.why-card {
    text-align: center;
    padding: 30px;
    background: var(--dark-grey);
    border-radius: 10px;
}

.why-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.why-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Reviews */
.reviews {
    padding: 80px 0;
    background: var(--dark-grey);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.review-card {
    background: var(--black);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.stars {
    margin-bottom: 15px;
}

.author {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: var(--gold);
}

.fb-note {
    text-align: center;
    font-weight: bold;
    color: var(--gold);
}

.review-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1rem;
    transition: var(--transition);
}

.google-btn {
    background: var(--gold);
    color: var(--black);
}

.google-btn:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
}

.facebook-btn {
    background: var(--dark-grey);
    color: var(--white);
    border: 2px solid #1877F2;
}

.facebook-btn:hover {
    background: #1877F2;
    transform: translateY(-2px);
}

.review-placeholder {
    opacity: 0.7;
    font-style: italic;
}

/* Gallery */
.gallery {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-item .label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--black);
    padding: 5px 15px;
    font-weight: bold;
    border-radius: 5px;
}

/* Contact */
.contact {
    padding: 80px 0;
    background: var(--black);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.info-item i {
    color: var(--gold);
    font-size: 1.5rem;
}

.opening-hours {
    margin-top: 40px;
}

.opening-hours table {
    width: 100%;
    border-collapse: collapse;
}

.opening-hours td {
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.opening-hours td:last-child {
    text-align: right;
    font-weight: bold;
}

/* Footer */
footer {
    padding: 60px 0;
    background: var(--black);
    border-top: 1px solid #333;
    text-align: center;
}

.footer-logo {
    height: 80px;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.footer-social a:hover {
    color: var(--gold);
}

.copyright {
    color: var(--grey);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bar-content {
        flex-direction: column;
        gap: 2px;
        text-align: center;
    }
    .bar-phone {
        font-size: 1.1rem;
    }
    .nav-links, .header-right {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .mobile-nav {
        display: block;
    }
    .trust-badges {
        justify-content: center;
    }
    .trust-badge {
        flex: 0 0 45%;
        justify-content: center;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item img {
        height: 300px;
    }
}
