@import url(fontawesome-all.min.css);
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300italic,600italic,300,600");
       /* 4. Ρυθμίσεις για τις παραγράφους (Ίσιες γραμμές + Γραμμούλα από κάτω) *//* 1. Βασικές ρυθμίσεις για όλη τη σελίδα (Minimal) */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }

        /* 2. Το "κουτί" που περιορίζει το πλάτος της σελίδας αριστερά */
        .container {
            max-width: 800px;
            margin: 0; 
            padding: 20px; 
        }

        /* 3. Το Header (Το πάνω μέρος με το Logo και τον Τίτλο) */
        .site-header {
            background-color: #fff; /* Σκούρο minimal φόντο για αντίθεση */
            margin: 0;
            padding: 20px 0;
            border-bottom: 1px solid #ddd;
        }
        
        .header-content {
            max-width: 800px;
            padding: 0 20px;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        /* Ρυθμίσεις για το Logo */
        .header-content img {
            height: 60px; 
            width: auto;  
            max-width: 100%;
        }

        /* Ρυθμίσεις για τον Τίτλο BlueNights Studio */
        .header-content h1 {
            margin: 0;
            font-size: 28px;
            font-weight: 700;
        }

        .ingredient1 {
            color: #2a65ab; /* Το μπλε σας */
            font-weight: bold;
        }
        .ingredient {
            color: #000; /* Λευκό για να γράφει στο μαύρο header */
            font-weight: bold;
        }
        .studio {
            color: #777777; /* Απαλό γκρι */
            font-size: 0.8em; 
            font-weight: 300;
        }

        p {
            text-align: justify; 
            hyphens: auto; 
            -webkit-hyphens: auto;
            border-bottom: 1px solid #ddd; /* Η γραμμούλα όπως στο banner */
            padding-bottom: 15px;          
            margin-bottom: 20px;           
        }

        /* 5. Minimal Μενού Πλοήγησης */
        .nav-menu {
            margin-top: 15px;
            padding-bottom: 10px;
        }
        .nav-menu a {
            color: #2a65ab;
            text-decoration: none;
            font-weight: 600;
            margin-right: 20px;
        }
        .nav-menu a:hover {
            text-decoration: underline;
        }

        /* Μικρό και λεπτό κείμενο για το footer */
        .text-small-light {
            font-size: 13px;
            font-weight: 300;
            color: #666;
            border-bottom: none; 
            padding-bottom: 0;
        }
		