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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fcfaf8;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #6f4e37; /* Coffee Brown */
}

.logo span { color: #d17a22; }

nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 20px; }
nav ul li a { text-decoration: none; color: #333; font-weight: 400; }

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    color: white;
    padding: 0 20px;
}

.hero h1 { font-size: 3rem; margin-bottom: 20px; }
.hero h1 span { color: #d17a22; }

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    margin: 10px;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary { background: #d17a22; color: white; }
.btn-secondary { background: white; color: #333; }
.btn-primary:hover { background: #b0651a; }

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 80px 10%;
    text-align: center;
}

.feature-card {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/*settings for footer container */
footer {
    text-align: center;
    padding: 30px;
    background-color: #f4f1ee; /*ligh coffee cream backround */
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    font-size: 20px;       /* size of the icon */
    color: #6F4E37;        /* coffe brown colour */
    margin: 0 15px;        /*spacing between apps*/                     
    text-decoration: none; /*remove underline*/
    transition: 0.3s;      /*smooth transistion*/
    display: inline-block;
}

.social-links a:hover {
    color: #3b2a1e;        /*darker brown on hover*/
    transform: scale(1.2);  /*zoom effect 20% larger*/
}


/* Styling for small, elegant social icons */
.social-icon-img {
    width: 33px;           /* Change this number (e.g., 20px, 25px) to get the size you want */
    height: 33px;          /* Keep width and height the same */
    margin: 0 10px;        /* Spacing between the small icons */
    transition: all 0.3s ease; /* Smooth hover effect */
    opacity: 0.7;          /* Slightly faded look */
    display: inline-block;
}

/* Hover effect for the small icons */
.social-icon-img:hover {
    transform: translateY(-5px) scale(1.1); /* Small lift and grow effect */
    opacity: 1;                             /* Full color on hover */
}


/*REGISTER*/
/* =========================================
   ΣΤΥΛ ΓΙΑ ΤΗ ΣΕΛΙΔΑ ΕΓΓΡΑΦΗΣ (register.html)
   ========================================= */

/* Η περιοχή που "αγκαλιάζει" τη φόρμα */
.form-section {
    min-height: 100vh; /* Να πιάνει όλο το ύψος της οθόνης */
    display: flex;
    justify-content: center;
    align-items: center;
    /* Ένα πολύ απαλό, ζεστό μπεζ/γκρι χρώμα φόντου που ταιριάζει με καφέ */
    background: linear-gradient(135deg, #fdfbf7 0%, #f3ede6 100%);
    padding: 100px 20px 40px 20px; /* Χώρος πάνω για το μενού */
}

/* Η λευκή κάρτα της φόρμας */
.form-container {
    background-color: #ffffff;
    padding: 40px 50px;
    border-radius: 20px;
    /* Μια υπέροχη, απαλή σκιά που δίνει την αίσθηση ότι η κάρτα "επιπλέει" */
    box-shadow: 0 15px 35px rgba(111, 78, 55, 0.08); 
    max-width: 450px;
    width: 100%;
    text-align: center;
}

.form-container h2 {
    color: #2c1e16; /* Σκούρο καφέ/μαύρο (espresso) */
    font-size: 28px;
    margin-bottom: 10px;
}

.form-container p {
    color: #8b7355; /* Απαλό καφέ */
    font-size: 15px;
    margin-bottom: 30px;
}

/* Στυλ για τα πεδία της φόρμας */
.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    font-weight: 600;
    color: #4a3b32;
    font-size: 14px;
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0d5c1;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #333;
    background-color: #faf8f5;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Πολύ σημαντικό για να μην βγαίνουν τα inputs έξω από το κουτί */
}

/* Τι γίνεται όταν ο χρήστης κάνει κλικ μέσα στο πεδίο (Focus) */
.input-group input:focus {
    outline: none;
    background-color: #ffffff;
    border-color: #d48a56; /* Ένα ζεστό πορτοκαλί/καραμελέ χρώμα */
    /* Ένα διακριτικό λαμπερό περίγραμμα (glow) γύρω από το πεδίο */
    box-shadow: 0 0 0 4px rgba(212, 138, 86, 0.15); 
}

.input-group input::placeholder {
    color: #bfaea3;
}

/* Το μεγάλο κουμπί εγγραφής */
.form-btn {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    background-color: #d48a56; /* Το κύριο χρώμα (Caramel) */
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Τι γίνεται όταν πάει το ποντίκι πάνω από το κουμπί */
.form-btn:hover {
    background-color: #c07743;
    transform: translateY(-2px); /* Σηκώνεται ελαφρώς προς τα πάνω */
    box-shadow: 0 8px 20px rgba(212, 138, 86, 0.3);
}

/* Το link για το Login στο κάτω μέρος */
.login-link {
    margin-top: 25px;
    font-size: 14px;
    color: #666;
}

.login-link a {
    color: #d48a56;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-link a:hover {
    color: #c07743;
    text-decoration: underline;
}

/* Responsive: Για να φαίνεται τέλεια και σε κινητά */
@media (max-width: 480px) {
    .form-container {
        padding: 30px 20px;
    }
    .form-container h2 {
        font-size: 24px;
    }
}

/* --- SPOTS CIRCLE BUTTON (FILLED VERSION) --- */

.spots-circle-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.spots-circle-btn {
    width: 110px;           /* Slightly bigger for better visibility */
    height: 110px;
    background-color: #d17a22; /* Full Caramel Color */
    color: white;           /* White text and icon */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(209, 122, 34, 0.3); /* Soft glow shadow */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: bounce 2s infinite;
}

.circle-icon {
    font-size: 26px;        /* Slightly larger icon */
    margin-bottom: 2px;
}

.circle-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
}

/* Hover Effect */
.spots-circle-btn:hover {
    background-color: #6f4e37; /* Changes to Coffee Brown on hover */
    transform: scale(1.15) rotate(5deg); /* Grows and tilts slightly */
    box-shadow: 0 12px 25px rgba(111, 78, 55, 0.4);
    animation: none; /* Stops bouncing when you touch it */
}

/* The Bouncing Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-12px);}
    60% {transform: translateY(-6px);}
}
/* --- REWARDS SECTION STYLING --- */

.rewards-section {
    padding: 60px 20px;
    background-color: #fff; /* Clean white background */
}

/* Centered container for the box */
.rewards-section .container {
    max-width: 900px;
    margin: 0 auto;
}

/* --- REWARDS BOX (WITH NEW RED BORDER!) --- */

.rewards-box {
    /* Existing colors (or whatever you chose) */
    background: linear-gradient(135deg, #ffffff 0%, #f4b907 100%); 
    color: rgb(225, 0, 0);
    padding: 40px 50px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    /* --- ΤΟ ΝΕΟ ΚΟΚΚΙΝΟ ΠΕΡΙΓΡΑΜΜΑ --- */
    
    border: 10px solid #eb1207; 
    
    /* Αναβαθμισμένη σκιά για να ταιριάζει με το κόκκινο */
    box-shadow: 0 10px 30px rgba(111, 182, 12, 0.2); 
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Ενημέρωση και στο hover */
.rewards-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 59, 48, 0.3);
}



.rewards-tag {
    background-color: #ffc107; /* Gold/yellow tag for emphasis */
    color: #333;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.rewards-content h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: rgb(9, 5, 5);
}

.rewards-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: rgba(100, 85, 85, 0.9);
    line-height: 1.5;
}

/* Το κουμπί "Μάθε πώς" μέσα στο rewards box */
.btn-rewards {
    padding: 12px 28px;
    background-color: #ff0000; /* Λευκό φόντο στο κουμπί */
    color: #ffffff;            /* Μαύρα γράμματα */
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;          /* Έντονα γράμματα */
    font-size: 14px;

    /* --- ΤΟ ΜΑΥΡΟ ΠΕΡΙΓΡΑΜΜΑ --- */
    /* 2px πάχος, solid (γεμάτη γραμμή), μαύρο χρώμα */
    border: 2px solid #000000; 

    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Τι γίνεται όταν ακουμπάς το κουμπί (Hover) */
.btn-rewards:hover {
    background-color: #fff0c5; /* Το κουμπί γίνεται μαύρο */
    color: #000000;            /* Τα γράμματα γίνονται λευκά */

    /* Κρατάμε το περίγραμμα, απλά αλλάζουμε το χρώμα σε λευκό (ή μαύρο) */
    border-color: #000000; 

    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.rewards-icon-container {
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 30px;
}


/* --- REWARDS ICON IMAGE (UPDATED) --- */

.rewards-icon-img {
    width: 70%;            /* Fills the container, but... */
    max-width: 130px;       /* ...NEVER grows larger than this size! (Try 120px or 140px) */
    height: auto;           /* Keeps the aspect ratio correct */
    display: block;         /* Best practice for centering and alignment */
    margin: 0 auto;         /* Centers the image within its container */
    
    /* Removed previous scale and rotate for a cleaner look */
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .rewards-box {
        flex-direction: column-reverse; /* Icons below text on mobile */
        text-align: center;
        padding: 30px;
    }
    .rewards-content {
        text-align: center;
    }
    .rewards-icon-container {
        margin-left: 0;
        margin-bottom: 20px;
        width: 100px;
    }
    .rewards-content h2 {
        font-size: 1.8rem;
    }
}
/* --- HOW IT WORKS SECTION --- */
.how-it-works {
    padding: 40px 20px 80px;
    background-color: #fcfaf8; /* Το ίδιο απαλό φόντο με το body */
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.step-card {
    position: relative;
    padding: 20px;
}

/* Ο κύκλος με τον αριθμό του βήματος */
.step-number {
    width: 50px;
    height: 50px;
    background-color: #6f4e37; /* Coffee Brown */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    margin: 0 auto 20px;
    border: 3px solid #ffc107; /* Gold border για να δένει με το reward box */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-card h3 {
    color: #2c1e16;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Μια μικρή λεπτομέρεια σύνδεσης μεταξύ των βημάτων (προαιρετικό) */
@media (min-width: 769px) {
    .step-card:not(:last-child)::after {
        content: "→";
        position: absolute;
        top: 45px;
        right: -25px;
        font-size: 24px;
        color: #d17a22;
        opacity: 0.5;
    }
}