* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B6F47;
    --secondary-color: #C9A961;
    --accent-color: #D4AF37;
    --dark-color: #2C2416;
    --light-color: #F5F1E8;
    --cream-color: #FAF8F3;
    --text-color: #333;
    --text-light: #666;
    --brown-light: #E8DDD0;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.85) 0%, rgba(201, 169, 97, 0.85) 50%, rgba(212, 175, 55, 0.85) 100%),
                url('bannerbibollini.jpg') center center / cover no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 80px 20px 40px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.2;
    z-index: 1;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    z-index: 10;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.lang-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lang-link.active {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.flag-icon {
    width: 24px;
    height: 18px;
    display: block;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.flag-icon.flag-tr {
    width: 24px;
    height: 16px;
}

.flag-icon.flag-gb {
    width: 24px;
    height: 14.4px;
}

.logo-img {
    max-height: 60px;
    width: auto;
    border-radius: 10px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.hero-content {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    margin-top: 10px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 80px 20px;
}

.about {
    background: var(--cream-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text-wrapper {
    display: flex;
    align-items: center;
}

.about-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.2);
    object-fit: cover;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.product-category {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(139, 111, 71, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.product-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.2);
}

.product-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.product-category h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.product-category p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-text {
    font-size: 1.1rem;
    text-align: left;
    color: var(--text-light);
    max-width: 100%;
    margin: 0;
    line-height: 1.8;
}

@media (min-width: 769px) {
    .section-text {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }
}

/* Brands Section */
.brands {
    background: white;
}

.brands-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.brand-item {
    background: var(--cream-color);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.15);
    border-color: var(--primary-color);
    background: white;
}

.brand-item:active {
    transform: translateY(-2px);
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.brand-category {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Location Section */
.location {
    background: var(--light-color);
}

.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    align-items: start;
}

.address-card {
    background: linear-gradient(135deg, #8B6F47 0%, #C9A961 100%);
    padding: 40px;
    border-radius: 16px;
    color: white;
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.2);
}

.address-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.address-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.address-text strong {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 10px;
}

.map-button {
    display: inline-block;
    padding: 14px 30px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.map-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact {
    background: var(--brown-light);
}

.contact-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-info {
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.1);
}

.visit-text {
    font-size: 1rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

.visit-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.instagram-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(225, 48, 108, 0.6);
}

.instagram-button svg {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 30px 20px;
    text-align: center;
    border-top: 3px solid var(--accent-color);
}

.footer p {
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-location {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        gap: 40px;
    }
    
    .about-image {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 60px 15px 30px;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-top: 8px;
    }

    .location-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
    }

    .navbar {
        padding: 15px 0;
    }

    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
    }

    .navbar-right {
        gap: 10px;
    }

    .language-switcher {
        gap: 6px;
    }

    .lang-link {
        width: 36px;
        height: 36px;
    }

    .flag-icon {
        width: 22px;
        height: 16px;
    }

    .flag-icon.flag-tr {
        width: 22px;
        height: 15px;
    }

    .flag-icon.flag-gb {
        width: 22px;
        height: 13px;
    }

    .logo-img {
        max-height: 45px;
    }

    .social-link {
        font-size: 0.85rem;
        padding: 10px 16px;
        gap: 6px;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .product-category {
        padding: 30px 20px;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        margin-top: 30px;
    }

    .brand-item {
        padding: 20px 15px;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .brand-category {
        font-size: 0.85rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .about-text-wrapper {
        order: 1;
    }

    .about-image-wrapper {
        order: 2;
    }

    .about-image {
        max-width: 100%;
        max-height: 500px;
    }

    section {
        padding: 60px 15px;
    }

    .address-card {
        padding: 30px 20px;
    }

    .address-card h3 {
        font-size: 1.5rem;
    }

    .address-text {
        font-size: 1rem;
    }

    .map-container iframe {
        height: 350px;
    }

    .contact-content {
        max-width: 100%;
        padding: 0 10px;
    }

    .contact-content p {
        font-size: 1rem;
    }

    .contact-info {
        margin: 25px 0;
        padding: 18px;
    }

    .visit-text {
        font-size: 0.95rem;
    }

    .instagram-button {
        font-size: 1rem;
        padding: 14px 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        padding: 50px 10px 25px;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
        margin-bottom: 6px;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-top: 6px;
    }

    section {
        padding: 40px 10px;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .section-title::after {
        width: 50px;
        height: 3px;
    }

    .section-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .navbar {
        padding: 12px 0;
    }

    .navbar .container {
        padding: 0 10px;
    }

    .logo-img {
        max-height: 40px;
    }

    .navbar-right {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .language-switcher {
        gap: 5px;
    }

    .lang-link {
        width: 32px;
        height: 32px;
    }

    .flag-icon {
        width: 20px;
        height: 15px;
    }

    .flag-icon.flag-tr {
        width: 20px;
        height: 13px;
    }

    .flag-icon.flag-gb {
        width: 20px;
        height: 12px;
    }

    .social-link {
        font-size: 0.8rem;
        padding: 10px 14px;
        gap: 5px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .about-content {
        gap: 25px;
        margin-bottom: 30px;
    }

    .about-image {
        max-height: 400px;
        border-radius: 12px;
    }

    .products-grid {
        gap: 15px;
        margin-top: 30px;
    }

    .product-category {
        padding: 25px 15px;
        border-radius: 12px;
    }

    .product-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .product-category h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .product-category p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
        margin-top: 25px;
    }

    .brand-item {
        padding: 18px 12px;
        border-radius: 10px;
    }

    .brand-name {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .brand-category {
        font-size: 0.8rem;
    }

    .brands-intro {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .address-card {
        padding: 25px 15px;
        border-radius: 12px;
    }

    .address-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .address-text {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .address-text strong {
        font-size: 1.1rem;
    }

    .map-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .map-container {
        border-radius: 8px;
    }

    .map-container iframe {
        height: 300px;
        border-radius: 8px;
    }

    .contact-content {
        padding: 0;
    }

    .contact-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .contact-info {
        margin: 20px 0;
        padding: 15px;
    }

    .visit-text {
        font-size: 0.9rem;
    }

    .instagram-button {
        font-size: 0.95rem;
        padding: 14px 25px;
        gap: 8px;
    }

    .instagram-button svg {
        width: 20px;
        height: 20px;
    }

    .footer {
        padding: 25px 15px;
    }

    .footer p {
        font-size: 0.9rem;
    }

    .footer-location {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .social-link {
        font-size: 0.75rem;
        padding: 8px 12px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .social-link:hover,
    .map-button:hover,
    .instagram-button:hover,
    .product-category:hover,
    .brand-item:hover {
        transform: none;
    }

    .social-link:active,
    .map-button:active,
    .instagram-button:active {
        transform: scale(0.98);
    }

    .product-category:active {
        transform: translateY(-2px);
    }

    .brand-item:active {
        transform: translateY(-2px);
    }
}

