@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

@font-face {
    font-family: 'Priestacy';
    src: url('assets/fonts/Priestacy.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed header */
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    background-color: #020202;
}

/* Consistent container width */
.header-container,
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Fixed Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #020202;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem 1rem 2rem;
    padding-right: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 1.0;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo:hover .logo-img {
    filter: brightness(1.15) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0.97);
    transition: filter 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(
        to bottom,
        #010101 0%,
        #020204 50%,
        #020202 100%
    );
    padding-top: 50px; // 8px is touching
    padding-bottom: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: stretch;
    min-height: 500px;
    padding: 4rem 0;
}

.hero-text h1 {
    font-family: 'Priestacy', cursive, serif;
    font-size: 3.5rem;
    font-weight: normal;
    line-height: 1.2;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #f5f5f5;
    position: relative;
}

.hero-text h1::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 324px;
    height: 1px;
    background: linear-gradient(to right, #f5f5f5 0%, transparent 100%);
}

.hero-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #e8e8e8;
    line-height: 1.6;
    font-weight: 300;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .header-container,
    .content-container {
        padding: 0 1rem;
    }
    
    .header-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        gap: 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    

}

/* Contact Section */
.contact-section {
    background: linear-gradient(to bottom, #111113 0%, #151517 30%, #151517 100%);
    padding: 4.8rem 0 4.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Priestacy', cursive, serif;
    font-size: 2.8rem;
    font-weight: normal;
    margin-bottom: 2rem;
    color: #f5f5f5;
    position: relative;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -0.4rem;
    left: 0;
    width: 270px;
    height: 1px;
    background: linear-gradient(to right, #f5f5f5 0%, transparent 100%);
}

.contact-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #e8e8e8;
}

.contact-details p {
    margin-bottom: 0.75rem;
    color: #e8e8e8;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e8e8e8;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #e8e8e8;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
}

.submit-button {
    background-color: #ffffff;
    color: #010103;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #f2f2f2;
}

/* Kopa Bukett Section */
.kopa-bukett-section {
    background: 
        radial-gradient(ellipse at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%),
        linear-gradient(to bottom, #0b0b0d 0%, #0f0f11 30%, #0f0f11 100%);
    padding: 5.5rem 0 4.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.kopa-bukett-section h2 {
    font-family: 'Priestacy', cursive, serif;
    font-size: 3rem;
    font-weight: normal;
    margin-bottom: 2.5rem;
    color: #f5f5f5;
    position: relative;
}

.kopa-bukett-section h2::after {
    content: '';
    position: absolute;
    bottom: -0.4rem;
    left: 0;
    width: 336px;
    height: 1px;
    background: linear-gradient(to right, #f5f5f5 0%, transparent 100%);
}

.kopa-bukett-section h3 {
    font-family: 'Priestacy', cursive, serif;
    font-size: 1.9rem;
    font-weight: normal;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: #f5f5f5;
}

.kopa-bukett-section p,
.kopa-bukett-section li {
    color: #e8e8e8;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 1.2rem;
}

.kopa-bukett-section ol,
.kopa-bukett-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.kopa-bukett-section ul {
    list-style-type: circle;
}

.kopa-bukett-section ul li::marker {
    color: rgba(255, 255, 255, 0.6);
}

.kopa-bukett-section .tagline {
    font-family: 'Priestacy', cursive, serif;
    margin-top: 2.5rem;
    font-size: 1.8rem;
    line-height: 1.4;
}

/* Fastighetsägare Section */
.fastighetsagare-section {
    background: 
        radial-gradient(ellipse at top left, rgba(0, 0, 0, 0.04) 0%, transparent 60%),
        linear-gradient(to bottom, #101012 0%, #141416 30%, #141416 100%);
    padding: 4.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.fastighetsagare-section h2 {
    font-family: 'Priestacy', cursive, serif;
    font-size: 2.7rem;
    font-weight: normal;
    margin-bottom: 2.2rem;
    color: #f5f5f5;
    position: relative;
}

.fastighetsagare-section h2::after {
    content: '';
    position: absolute;
    bottom: -0.4rem;
    left: 0;
    width: 198px;
    height: 1px;
    background: linear-gradient(to right, #f5f5f5 0%, transparent 100%);
}

.fastighetsagare-section h3 {
    font-family: 'Priestacy', cursive, serif;
    font-size: 1.75rem;
    font-weight: normal;
    margin-top: 2.2rem;
    margin-bottom: 1.1rem;
    color: #f5f5f5;
}

.fastighetsagare-section p,
.fastighetsagare-section li {
    color: #e8e8e8;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 1.1rem;
}

.fastighetsagare-section ol,
.fastighetsagare-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.fastighetsagare-section ul {
    list-style-type: circle;
}

.fastighetsagare-section ul li::marker {
    color: rgba(255, 255, 255, 0.6);
}

/* Florist Section */
.florist-section {
    background: 
        radial-gradient(ellipse at bottom, rgba(0, 0, 0, 0.05) 0%, transparent 50%),
        linear-gradient(to bottom, #0d0d0f 0%, #111113 30%, #111113 100%);
    padding: 4.2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.florist-section h2 {
    font-family: 'Priestacy', cursive, serif;
    font-size: 2.9rem;
    font-weight: normal;
    margin-bottom: 2.3rem;
    color: #f5f5f5;
    position: relative;
}

.florist-section h2::after {
    content: '';
    position: absolute;
    bottom: -0.4rem;
    left: 0;
    width: 120px;
    height: 1px;
    background: linear-gradient(to right, #f5f5f5 0%, transparent 100%);
}

.florist-section h3 {
    font-family: 'Priestacy', cursive, serif;
    font-size: 1.85rem;
    font-weight: normal;
    margin-top: 2.3rem;
    margin-bottom: 1.15rem;
    color: #f5f5f5;
}

.florist-section p,
.florist-section li {
    color: #e8e8e8;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 1.15rem;
}

.florist-content {
    display: flex;
    gap: 0;
    align-items: flex-start;
    margin-top: 2rem;
}

/* Force image sizing - override everything */
.florist-section .florist-image {
    width: 200px !important;
    max-width: 200px !important;
    min-width: 200px !important;
    height: auto !important;
    max-height: 300px !important;
    object-fit: contain !important;
    display: block !important;
    flex-shrink: 0 !important;
    transform: scale(1) !important;
    margin-right: 30px !important;
}

/* Nuclear option - force ALL images in florist section */
section#florist img,
.florist-section > * img {
    width: 200px !important;
    max-width: 200px !important;
}

.florist-text {
    flex: 1;
    margin-top: 60px;
}



.florist-section ol,
.florist-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.florist-section ul {
    list-style-type: circle;
}

.florist-section ul li::marker {
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .florist-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .florist-image {
        flex: none;
        max-width: 250px;
        align-self: center;
        margin-left: 0 !important;
    }
    
    .florist-text {
        margin-top: 0 !important;
        text-align: left;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Better mobile form styling */
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .submit-button {
        width: 100%;
        padding: 1rem 2rem;
    }
}